S
SNICK API
OpenAPI 3.0
🎨 Studio
Developer Documentation & REST API Gateway

Build Lock-Screen Smart Cards & Wallet Infrastructure

Integrate Snick's REST API into your web applications, CRMs, and backend services to programmatically generate digital cards, issue Apple/Google Wallet passes, send lock-screen push updates, and process 1-tap checkouts.

Active Sandbox Key:snick_test_sk_9f...
POST

/v1/cards/create

Create Card Canvas

Programmatically create and initialize a new Snick Card canvas with custom theme, brand assets, and action CTAs.

import { SnickCardClient } from '@snickcard/sdk';

const client = new SnickCardClient({
  apiKey: 'snick_test_sk_9f83a12d7c904e12b34a5678',
});

const newCard = await client.cards.create({
  entityName: 'Apex Trading & Signals',
  category: 'Whop Creator & Web3 Trading',
  headline: 'Daily Nasdaq-100 Futures Breakouts & Exclusive Whop Community',
  theme: 'royal-gold',
  primaryColor: '#EAB308',
});

console.log('Created Card Handle:', newCard.handle);

Interactive Test Playground

Live Mock Sandbox

Quickstart Solution Recipes (3)

Production Architecture Patterns
Enterprise DSNP

Healthcare / DSNP Integration Recipe

Humana FHIR API -> Wallet Pass

Transform Humana & Dual Special Needs Plan (D-SNP) member records into 1-click Apple/Google Wallet pass assets with real-time benefit updates.

Workflow Steps:
1.Authenticate with CMS FHIR API endpoint via OAuth2.
2.Call POST /api/v1/wallet/pass with member ID and benefit tier.
3.Dispatch lock-screen push updates upon OTC allowance renewals.
Creator Monetization

Whop Creator Auto-Onboarding Recipe

Whop Membership Purchase -> Snick Card Instant Provision

Automate instant digital card generation upon Whop store checkout webhook, binding discord access and daily signal feeds to customer pass.

Workflow Steps:
1.Listen to Whop webhook `membership.went_valid`.
2.Invoke POST /api/v1/cards/create with creator branding & theme.
3.Deliver 1-tap Apple Wallet pass link via email & SMS.
Local Services

Real Estate CRM Property Pass Recipe

KVCore / Follow Up Boss -> Digital Listing Pass

Generate dynamic digital open house property passes for luxury realtors, pushing price drop alerts directly to homebuyer lock-screens.

Workflow Steps:
1.Sync MLS property specs with Snick Card Engine.
2.Generate QR code property pass for open house sign-in sheets.
3.Send push notification when listing price drops or goes under contract.