Profile
1 credit/v1/snapchat/profileGet Snapchat user profile.
handle
Fetch public Snapchat data as structured JSON with one SocialCrawl API key. Same Post, Comment, and Author schema as every other platform. Reads are priced in credits.
1 active endpoint
1 live read endpoint for public Snapchat profile data. Data API only.
/v1/snapchat/profileGet Snapchat user profile.
handle
Returns a Snapchat account's public profile: display name, Bitmoji avatar URL, subscriber count, and bio.
Use it to confirm a Snapchat account exists and read its public details.
1 credit
handle · Snapchat username
$ curl https://www.socialcrawl.dev/v1/snapchat/profile?handle=djkhaled305 \
-H "x-api-key: sc_YOUR_API_KEY"// Running this live needs your own API key. Hit "Try it" to see an example responseSnapchat is a normal SocialCrawl social surface. You call GET /v1/snapchat/… with an API key, spend credits on live misses, and get a single JSON envelope back. No second SDK.
Send your key in the x-api-key header. The same key works across the SocialCrawl catalog.
Routes are GET. Pass handles, urls, queries, and cursors as query strings. We validate formats before charging.
Live misses debit the route tier. Cache hits cost 0. Empty or hard failures refund.
Every response is the same shape: success, data, credits_used, credits_remaining, request_id, cached.
Most callers resolve a public Snapchat handle to a profile card.
GET /v1/snapchat/profilePublic handle string
Start from the username without the @.
GET /v1/snapchat/profileAuthor-shaped public profile
One standard credit read on live miss.
GET /v1/snapchat/profileSame envelope with credits_used 0 on hit
Recurring lookups stay cheap.
GET /v1/snapchat/profileShared Author fields for downstream jobs
Same schema as other platforms.
GET /v1/snapchat/profile
?handle=djkhaled305
Host: www.socialcrawl.dev
x-api-key: sc_your_api_key_here{
"success": true,
"data": { "/* Author | Post | PostList | CommentList | … */": true },
"credits_used": 1,
"credits_remaining": 9999,
"request_id": "req_…",
"cached": false
}Field names match the rest of SocialCrawl where archetypes align.
id, username, display_name, avatar_url, bio, followers, url, ext
items[].post with id, url, content, engagement, author, published_at, ext
items[] with author, content.text, engagement, published_at when comments ship
search hits, media metadata, or transcripts depending on route
Same request lifecycle as every other /v1 platform endpoint.
Next.js catch-all routes into the Hono social API. We mint a request_id, authenticate the key, then enforce rate limit and concurrency.
Registry lookup finds the route. Required params run first. Invalid input returns 400 with no charge. Valid calls debit before upstream work.
A deterministic cache key is built from platform + resource + params. Hit: credits_used = 0. Miss: upstream fetch with retries and circuit breaker.
Upstream JSON is mapped to Author / Post / PostList / CommentList (or route archetype), validated, wrapped in the success envelope, and logged for billing audit.
Billing rules that matter in production
Snapchat is public-read data on SocialCrawl. We normalize it into the shared schema so your code does not learn a second OAuth flow.
Public Snapchat surfaces exposed by the registry. Read-only for research, monitoring, and product jobs.
Social-read upstreams behind one gateway. Prism composites combine legs when a fat route is registered.
Unified JSON envelope: success, data, credits_used, request_id, cached. Shared Author / Post / Comment leaves where archetypes align.
No write endpoints and no private inbox. Disabled routes stay out of the active count. Prefer registry docs for the live inventory.
The jobs this API is most often used for.
Snapchat monitoring and content intelligence
Callers concentrate on profile, content lists, search, and deepen paths on Snapchat. Structured Snapchat JSON on the shared schema with one SocialCrawl API key.
Detail reads are typically a few seconds on live miss. Search and fat composites are slower paths.
Common ways teams put this data to work, and the stack each one tends to run.
Poll profiles and feeds on Snapchat. Alert when engagement velocity jumps.
Search and expand posts for brand, product, and competitor language on Snapchat.
Wire resolve to list to detail into pipelines. Cache hits keep recurring runs cheap.
Live misses spend credits by tier. Cache hits are free. Empty or hard failures refund.
curl "https://www.socialcrawl.dev/v1/snapchat/profile?handle=djkhaled305" \
-H "x-api-key: sc_your_api_key_here"curl "https://www.socialcrawl.dev/v1/snapchat/profile?handle=djkhaled305" \
-H "x-api-key: sc_your_api_key_here"Same key as the rest of the catalog
Every endpoint returns structured JSON in a unified envelope. Computed fields such as engagement rate and content category are included only where the endpoint supports them and the required source inputs are present.
Same Snapchat data, two very different paths. Auth, rate limits, schema, and cost, side by side.
| Feature | SocialCrawl | DIY scraping |
|---|---|---|
| Authentication | One x-api-key header | None: you manage proxies and request fingerprints yourself |
| Setup / approval | Sign up and call immediately | Build a scraper, proxy pool, and parsing layer first |
| Rate limits | Credit-based, pay per request | Whatever your proxies survive before blocks |
| Response schema | Unified JSON shared across 51 platforms | Raw HTML you parse and re-parse after layout changes |
| Pricing | 1 credit per profile; 100 free credits on signup | Proxy, server, and engineering costs scale with volume |
| Data coverage | Public profile fields: name, Bitmoji, subscribers, bio | Anything you can extract, at your own legal and technical risk |
| Maintenance | Schema stays stable when Snapchat changes its markup | Every Snapchat redesign breaks your selectors |
Authentication
Setup / approval
Rate limits
Response schema
Pricing
Data coverage
Maintenance
Find answers to frequently asked questions about SocialCrawl's API, pricing, and capabilities.
Contact usAsk AI about SocialCrawl