Appearance
User Profile
GET /v1/snapchat/profile
Retrieves a Snapchat user's public profile by handle, including identity, stories, and spotlight content. Returns userProfile with username, title, snapcodeImageUrl, subscriberCount, bio, and profilePictureUrl. Also includes highlightStoryMetadata with individual story snaps (mediaUrl, mediaType, thumbnailUrl) and spotlightStoryMetadata with video details and engagement stats (viewCount, shareCount, commentCount).
Authentication
All requests require the x-api-key header. Get your key at scrapecreators.com.
Query Parameters
| Name | Type | Required | Description | Example |
|---|---|---|---|---|
handle | string | yes | Snapchat username | zane |
Example Request
curl
bash
curl 'https://api.scrapecreators.com/v1/snapchat/profile?handle=zane' \
-H 'x-api-key: $SCRAPECREATORS_API_KEY'Node / TypeScript
js
const params = new URLSearchParams({ handle: 'zane' });
const res = await fetch(`https://api.scrapecreators.com/v1/snapchat/profile?${params}`, {
headers: { 'x-api-key': process.env.SCRAPECREATORS_API_KEY }
});
const data = await res.json();
console.log(data);Python
python
import os, requests
r = requests.get(
'https://api.scrapecreators.com/v1/snapchat/profile',
headers={'x-api-key': os.environ['SCRAPECREATORS_API_KEY']},
params={'handle': 'zane'},
)
r.raise_for_status()
print(r.json())CLI
bash
scrapecreators snapchat profile --helpExample Response
json
{
"success": true,
"userProfile": {
"username": "zane",
"title": "Zane",
"snapcodeImageUrl": "https://app.snapchat.com/web/deeplink/snapcode?username=zane&type=SVG&bitmoji=enable",
"badge": 1,
"categoryStringId": "",
"subcategoryStringId": "",
"subscriberCount": "1535700",
"bio": "Time to get buck wild baby",
"websiteUrl": "",
"profilePictureUrl": "https://cf-st.sc-cdn.net/aps/bolt/aHR0cHM6Ly9jZi1zdC5zYy1jZG4ubmV0L2QvSG5jNU4zNFh5MWNacFlPR0Y2T3pxP2JvPUVnMGFBQm9BTWdFRVNBSlFHV0FCJnVjPTI1._RS0,90_FMjpeg",
"address": "",
"bitmoji3d": null,
"hasCuratedHighlights": true,
"hasSpotlightHighlights": true,
"mutableName": "",
"publisherType": "",
"squareHeroImageUrl": "https://cf-st.sc-cdn.net/aps/bolt/aHR0cHM6Ly9jZi1zdC5zYy1jZG4ubmV0L2QvZnl5TndBTlZVU1IzckVGWWpuQlZnP2JvPUVnMGFBQm9BTWdFRVNBSlFHV0FCJnVjPTI1._RS0,1080_FMjpeg",
"primaryColor": "",
"hasStory": false,
"relatedAccountsInfo": [
{
"publicProfileInfo": {
"username": "imnotscottysire",
"title": "Scotty Sire",
"snapcodeImageUrl": "",
"badge": 1,
"categoryStringId": "",
"subcategoryStringId": "",
"subscriberCount": "0",
"bio": "",
"websiteUrl": "",
"profilePictureUrl": "https://cf-st.sc-cdn.net/aps/bolt/aHR0cHM6Ly9jZi1zdC5zYy1jZG4ubmV0L2QvZUhZSzNoRVRGcEhLeHFaVEtKOEQwP2JvPUVna3lBUVJJQWxBWllBRSUzRCZ1Yz0yNQ._RS0,640_FMjpeg",
"address": "",
"bitmoji3d": null,
"hasCuratedHighlights": false,
"hasSpotlightHighlights": false,
"mutableName": "",
"publisherType": "",
"squareHeroImageUrl": "",
"primaryColor": "",
"hasStory": true,
"relatedAccountsInfo": [],
"creationTimestampMs": null,
"lastUpdateTimestampMs": null,
"businessProfileId": "ebc366e6-3058-4c94-8e85-35a4e50c6737"
},
"subscribeLink": {
"oneLinkBaseUrl": "https://click.snapchat.com/aVHG",
"pidKeys": [
"af_pid"
],
"pidFallbackValue": "consumer_web",
"campaignKeys": [
"af_c"
],
"campaignFallbackValue": "add_user",
"googleClickIdParam": "af_sub1",
"deepLinkUrl": "https://www.snapchat.com/add/imnotscottysire?sc_referrer=web",
"iosAppStoreUrl": "https://apps.apple.com/app/apple-store/id447188370?pt=614006&ct=add_user&mt=8",
"desktopPageUrl": "https://snapchat.com/download?purpose=web_stories&sp=add_user"
}
}
],
"creationTimestampMs": {
"value": "1584846804362"
},
"lastUpdateTimestampMs": {
"value": "1741518441231"
},
"businessProfileId": "e123b268-312b-41d6-8088-b51c12c6f2c6"
},
"story": null,
"curatedHighlights": [
{
"storyType": 3,
"snapList": [
{
"snapIndex": 0,
"snapId": {
"val
... (truncated)Credits
Most ScrapeCreators endpoints consume 1 credit per successful response. Some heavier endpoints (transcripts, AI-driven enrichment, ad detail lookups) may cost more. Check GET /v1/credit-balance for your remaining balance.
Errors
| Status | Meaning | Action |
|---|---|---|
| 200 | Success. | Use the JSON payload. |
| 400 | Invalid or missing parameter. | Verify required parameters and value format. |
| 401 | Missing or invalid x-api-key. | Pass a valid API key in the header. |
| 402 | Out of credits. | Top up at scrapecreators.com or wait for plan reset. |
| 404 | Resource not found or private. | Confirm the handle, URL, or id and that the resource is public. |
| 429 | Rate limited. | Backoff and retry with exponential delay. |
| 500 | Server error or upstream platform failure. | Retry with backoff; report persistent errors to support. |