SocialCrawl

Snapchat

Read a public Snapchat account's display name, Bitmoji avatar, subscriber count, and bio, plus Spotlight comments

Two public reads on Snapchat: the account card, and the comment thread on a Spotlight snap you already hold a URL for. Both are 1 credit.

Base URL: /v1/snapchat/...

Snapchat publishes no public feed of posts or stories, so there is no snapchat/post to crawl. The account card and Spotlight comments are the whole surface.

Quickstart

1. Fetch a profile

cURL
curl "https://www.socialcrawl.dev/v1/snapchat/profile?handle=djkhaled305" \
  -H "x-api-key: YOUR_API_KEY"

2. Fetch their content

cURL
curl "https://www.socialcrawl.dev/v1/snapchat/spotlight/comments?url=https://www.snapchat.com/@lilah4823/spotlight/W7_EDlXWTBiXAEEniNoMPwAAYY2pvZnd0ZXVmAZ8fgG8pAZ8ff-_IAAAAAQ" \
  -H "x-api-key: YOUR_API_KEY"

3. Read computed fields

When an endpoint supports a computed field and the required source inputs are present, the unified response includes that optional field. Depending on the endpoint, optional fields can include engagement_rate, language, content_category, and estimated_reach. See Computed fields for formulas, clamping rules, and null semantics.

Accounts and Spotlight

EndpointCreditsWhat it returnsKey parameters
GET /v1/snapchat/profile1Display name, Bitmoji avatar URL, subscriber count, and biohandle
GET /v1/snapchat/spotlight/comments1The comment thread on one Spotlight snapurl, cursor

profile is the identity lookup: confirm an account exists and read its subscriber count. That makes it a useful leg in handle vetting rather than a content source. If you are checking a name across several networks, POST /v1/prism/profiles takes up to 50 platform and handle pairs in one call, and Snapchat is one of its supported platforms, which beats calling each platform's profile endpoint in a loop.

spotlight/comments is the content read. Pass a Spotlight URL and page with cursor.

All endpoints

2 endpoints available.

EndpointPathCredit Tier
Get Snapchat user profile/v1/snapchat/profilestandard (1cr)
List comments on a Snapchat Spotlight/v1/snapchat/spotlight/commentsstandard (1cr)

Platform notes

There is no Spotlight detail endpoint. The upstream returns an empty body for the snap itself, so only its comments are readable.

The handle is the Snapchat username, without an @.

A handle with no public account returns 404 and is refunded automatically.

Next steps

On this page