100 free credits — no credit card required.Start building
Logo
Developer tutorial

How to scrape Snapchat profiles with Python (2026)

This tutorial shows how to scrape Snapchat profiles in Python 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.

How it works

  1. 1
    Get a free API keyCreate a SocialCrawl account and copy your API key from the dashboard. Every new account starts with free credits.
  2. 2
    Set up PythonInstall the requests library with `pip install requests`.
  3. 3
    Call 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.
  4. 4
    Read 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.

import requests

response = requests.get(
    "https://www.socialcrawl.dev/v1/snapchat/profile",
    headers={"x-api-key": "YOUR_API_KEY"},
    params={"handle": "kyliejenner"},
)
data = response.json()
print(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
}
API reference for this endpoint

Prefer another language?

FAQ

Have a question? We got answers

Find answers to frequently asked questions about SocialCrawl's API, pricing, and capabilities.

Contact us
Do 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 Python 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