Skip to main content
Snipp provides official SDK packages so you can skip raw HTTP calls and get straight to building. Each wrapper covers every API endpoint with idiomatic patterns for its language.

Available SDKs

Node.js

@snipp-gg/snipp — zero dependencies, uses native fetch.GitHub

Python

snipp — built on requests.GitHub

Rust

snipp-rust — async, built on reqwest.GitHub

ShadowPlay

snipp-shadowplay — auto-upload NVIDIA ShadowPlay clips.GitHub

Installation

npm install @snipp-gg/snipp

Quick comparison

import { SnippClient } from "@snipp-gg/snipp";

const snipp = new SnippClient({ apiKey: process.env.SNIPP_API_KEY });
const me = await snipp.getUser("@me");
console.log(me.user.username);