Skip to main content

Documentation Index

Fetch the complete documentation index at: https://docs.snipp.gg/llms.txt

Use this file to discover all available pages before exploring further.

Snipp provides official SDK packages so you can skip raw HTTP calls and focus on 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);