Skip to main content

Snapchat

Base URL: https://drain.lat/api/v1/snapchat
Fetch a public Snapchat profile.
GET /api/v1/snapchat/profile/:username
username
string
required
The Snapchat username to look up.
curl "https://drain.lat/api/v1/snapchat/profile/djkhaled" \
  -H "x-api-key: YOUR_API_KEY"
username
string
Snapchat username.
displayName
string
Display name.
bio
string
Profile bio.
avatarUrl
string
Avatar image URL.
subscribers
number
Subscriber count.
isVerified
boolean
Whether the account is verified.
profileUrl
string
Link to the Snapchat profile.
Response
{
  "username": "djkhaled",
  "displayName": "DJ Khaled",
  "bio": "Another one.",
  "avatarUrl": "https://cf-st.sc-cdn.net/...",
  "subscribers": 4200000,
  "isVerified": true,
  "profileUrl": "https://www.snapchat.com/@djkhaled",
  "scrapedAt": "2026-05-05T12:00:00.000Z"
}
Only works for public Snapchat profiles. Private accounts return limited data or an error.