Developer tutorial
How to scrape Snapchat profiles with Node.js (2026)
This tutorial shows how to scrape Snapchat profiles in Node.js using the SocialCrawl API. You get a public Snapchat profile's display name, subscriber count, bio, and avatar by username from one GET request, with no Snapchat developer account, proxies, or HTML parsing. The code below is runnable as-is, and the response underneath it is a real, unedited call.
Code tested July 2026
How it works
- 1Get a free API keyCreate a SocialCrawl account and copy your API key from the dashboard. Every new account starts with free credits.
- 2Set up Node.jsUse Node.js 18 or newer, which includes the fetch API with no extra packages.
- 3Call the Snapchat Profile endpointSend a GET request to /v1/snapchat/profile with your API key in the x-api-key header and the `handle` parameter.
- 4Read the responseParse the JSON. SocialCrawl returns a public Snapchat profile's display name, subscriber count, bio, and avatar by username in one normalized schema, so you write no HTML parsing or proxy code.
The code
A real, unedited response from the request above.
const params = new URLSearchParams({
"handle": "kyliejenner",
});
const response = await fetch(
`https://www.socialcrawl.dev/v1/snapchat/profile?${params}`,
{ headers: { "x-api-key": "YOUR_API_KEY" } },
);
const data = await response.json();
console.log(data);[ RESPONSE ]
{
"success": true,
"platform": "snapchat",
"endpoint": "/v1/snapchat/profile",
"data": {
"author": {
"id": "e9bcdb52-a5cc-4dea-88ac-8baa91a78345",
"username": "kyliejenner",
"display_name": "King Kylie 👑",
"avatar_url": "https://cf-st.sc-cdn.net/aps/bolt/aHR0cHM6Ly9jZi1zdC5zYy1jZG4ubmV0L2QvaEJwN3Z0ZFl5NFVOeFpnWk04dXBYP2JvPUVna3lBUVJJQWxBWllBRSUzRCZ1Yz0yNQ._RS0,90_FMjpeg",
"bio": null,
"verified": true,
"followers": 30657600,
"following": null,
"posts_count": null,
"likes_count": null,
"url": "kyliecosmetics.com",
"private": false,
"joined_at": "2019-05-22"
},
"computed": {
"engagement_rate": null,
"language": null,
"content_category": null,
"estimated_reach": null
}
},
"credits_used": 1,
"credits_remaining": 9999,
"request_id": "req_example000000",
"cached": false
}Prefer another language?
FAQ
Have a question? We got answers
Find answers to frequently asked questions about SocialCrawl's API, pricing, and capabilities.
Contact usDo I need a Snapchat developer account to scrape Snapchat profiles?
No. SocialCrawl handles authentication and proxies upstream, so you never register a Snapchat app, manage OAuth tokens, or run your own scrapers. One API key returns Snapchat data directly.
What does the Snapchat Profile endpoint return?
It returns a public Snapchat profile's display name, subscriber count, bio, and avatar by username. The response is normalized into SocialCrawl's unified schema, identical in shape across every platform.
How much does it cost to scrape Snapchat profiles?
Each call costs a small number of credits, and new accounts start with free credits. There are no monthly minimums, so you pay only for the calls you make.
Can I use this Node.js code in production?
Yes. The snippet on this page is the real request against the live API. For production, add error handling and follow the response cursor to paginate through large result sets.
Ask AI about SocialCrawl
