Developer Preview

SNOZCOIN API

Build powerful integrations with the creator economy. Access tips, content, rewards, and analytics programmatically.

Tipping API

Send and receive tips programmatically. Integrate tipping into your app or website.

Content Unlock

Create and manage unlockable content. Verify purchases on-chain.

Analytics

Access creator and platform analytics. Build custom dashboards and reports.

SNOZ Rewards

Query reward balances and tier status. Integrate loyalty features.

Quick Start

Get started with the SNOZCOIN API in minutes.

JavaScript
// Initialize the SNOZCOIN SDK
import { SnozClient } from '@snozcoin/sdk';

const client = new SnozClient({
  apiKey: 'your-api-key',
  network: 'mainnet' // or 'testnet'
});

// Get creator profile
const creator = await client.creators.get('SP1ABC...XYZ');
console.log(creator.name, creator.totalEarnings);

// Send a tip
const tip = await client.tips.send({
  to: 'SP1ABC...XYZ',
  amount: 5, // STX
  message: 'Great content!'
});

Authentication

All API requests require an API key. Include it in the request header.

HTTP Header
Authorization: Bearer YOUR_API_KEY
X-SNOZ-Version: 2024-03-01
Keep your API key secure

Never expose your API key in client-side code. Use environment variables and server-side requests.

API Keys

Manage your API keys and access tokens.

Your API Keys

Production Key snoz_live_****************************
Created: Mar 1, 2026 Active
Test Key snoz_test_****************************
Created: Feb 15, 2026 Test Mode

Connect your wallet to manage API keys

API Reference

Explore all available endpoints.

Creators

GET /v1/creators List all creators
GET /v1/creators/{address} Get creator by address
GET /v1/creators/{address}/content Get creator's content
GET /v1/creators/{address}/earnings Get earnings history

Tips

POST /v1/tips Send a tip
GET /v1/tips/{txId} Get tip by transaction ID
GET /v1/tips/recent Get recent tips

Content

POST /v1/content Create unlockable content
GET /v1/content/{id} Get content metadata
POST /v1/content/{id}/unlock Unlock content (purchase)
GET /v1/content/{id}/verify Verify unlock status

SNOZ Rewards

GET /v1/snoz/balance/{address} Get SNOZ balance
GET /v1/snoz/tier/{address} Get user tier level
GET /v1/snoz/leaderboard Get SNOZ leaderboard

Analytics

GET /v1/analytics/platform Platform-wide statistics
GET /v1/analytics/creator/{address} Creator analytics

Rate Limits

API rate limits vary by plan.

Plan Requests/min Requests/day Price
Free 60 1,000 $0
Developer 300 50,000 $29/mo
Pro 1,000 500,000 $99/mo
Enterprise Custom Unlimited Contact us

SDKs & Libraries

Official SDKs for popular languages.

Developer Preview: The API is in active development. Some endpoints may change before mainnet launch.