Snapchat Followers Scraper avatar

Snapchat Followers Scraper

Pricing

$19.99/month + usage

Go to Apify Store
Snapchat Followers Scraper

Snapchat Followers Scraper

A powerful website email and phone number finder designed to extract verified contact details from any website in seconds. This tool crawls multiple pages including contact

Pricing

$19.99/month + usage

Rating

0.0

(0)

Developer

ScraperX

ScraperX

Maintained by Community

Actor stats

0

Bookmarked

8

Total users

0

Monthly active users

8 days ago

Last modified

Share

Snapchat Followers Scraper โ€” Get Subscriber Counts, Bios & Profile Data in Bulk

Look up any public Snapchat profile by username or URL and get its subscriber (follower) count along with the display name, title, bio, website link, category, profile picture, Snapcode image, hero image, brand colour and account timestamps.

Paste one username or a thousand. No Snapchat account, no login, no API key.


What you get

๐Ÿ‘ค Profile identity๐Ÿ“ˆ Audience & category๐Ÿ–ผ๏ธ Media & branding
UsernameSubscriber countProfile picture URL
Display name and titleCategory and subcategorySnapcode image URL
BioPublisher typeSquare hero image URL
Website URLPrimary brand colour
Address (when published)Account creation time
Last update timeScrape timestamp

Key features

  • Subscriber counts in bulk. The single number most people want from Snapchat โ€” for as many accounts as you can list, in one run.
  • Usernames or URLs. Paste mohsenalnssar or https://www.snapchat.com/add/mohsenalnssar โ€” both work, mixed freely in the same list.
  • Multi-strategy extraction. The Actor reads Snapchat's embedded profile data, and falls back to targeted pattern extraction across the page's scripts when the primary structure is not present โ€” so profiles keep resolving even as Snapchat changes its markup.
  • Automatic proxy escalation. Runs direct by default; if Snapchat blocks requests it falls back to datacenter and then residential proxies without any configuration from you.
  • Polite pacing. A randomised 1โ€“2 second delay between profiles keeps long runs stable instead of tripping rate limits.
  • Never loses a row. A profile that cannot be read is written to the dataset with success: false and the error message, so your export always matches your input list.
  • Branding assets included. Snapcode image, hero image and primary colour make this useful for creator databases and media kits, not just counts.

Use cases

  • Influencer discovery & vetting โ€” check subscriber counts across a shortlist before you reach out or negotiate.
  • Creator database building โ€” assemble a searchable table of Snapchat creators with bios, categories and websites.
  • Competitor monitoring โ€” track rival brands' Snapchat audience size over time with a scheduled run.
  • Campaign reporting โ€” snapshot subscriber counts before and after a campaign to measure lift.
  • Brand research โ€” see which categories and publisher types dominate a niche.
  • Media-kit automation โ€” pull profile pictures, Snapcodes and hero images programmatically.
  • Lead generation โ€” the websiteUrl field connects a Snapchat creator to their business.
  • Market research โ€” quantify audience sizes across a segment for benchmarking.

How it works

  1. You provide usernames or profile URLs, one per line.
  2. Each profile page is fetched, starting on a direct connection.
  3. Profile data is extracted from Snapchat's embedded structured data, with a script-scanning fallback for profiles served differently.
  4. If Snapchat blocks the request, the Actor escalates to datacenter and then residential proxies automatically.
  5. A short randomised delay is applied between profiles.
  6. Each profile is pushed to the dataset as soon as it is scraped โ€” including failures, with their error message.

Quick start

  1. Open the Actor and add usernames or profile URLs to Snapchat Profile URLs or Usernames โ€” one per line.
  2. Leave the proxy settings at their default for a first run.
  3. Click Start, then export the Output tab as CSV, Excel or JSON.

Minimal input

{
"startUrls": ["mohsenalnssar"]
}

Input configuration

FieldTypeDefaultDescription
startUrlsarrayโ€” (required)Snapchat profile URLs (https://www.snapchat.com/add/username) or plain usernames. Mix both freely.
proxyConfigurationobjectno proxyBy default no proxy is used. If Snapchat blocks requests, the Actor automatically falls back to datacenter, then residential proxies. Configure groups or country here if you need to.

Output data

One row per profile.

FieldTypeDescription
usernamestringSnapchat username.
titlestringProfile title as displayed.
namestringDisplay name.
biostringProfile bio text.
subscriberCountstring / numberNumber of subscribers (followers).
websiteUrlstringWebsite linked from the profile.
addressstringAddress, when the account publishes one.
categoryStringIdstringSnapchat category.
subcategoryStringIdstringSnapchat subcategory.
publisherTypestringType of publisher account.
profilePictureUrlstringProfile picture image URL.
snapcodeImageUrlstringSnapcode image URL.
squareHeroImageUrlstringSquare hero image URL.
primaryColorstringPrimary brand colour of the profile.
creationTimestringWhen the account was created.
lastUpdateTimestringWhen the profile was last updated.
scrapedAtstringUTC timestamp of extraction.
successbooleanPresent as false on failed rows.
errorstringFailure reason on failed rows.

Fields appear only when Snapchat publishes them for that profile โ€” accounts vary in how much they fill in.

Example output

{
"username": "exampleofficial",
"title": "Example Official",
"name": "Example",
"bio": "Daily behind-the-scenes from the Example team ๐Ÿ‘ป",
"subscriberCount": "1284000",
"websiteUrl": "https://example.com",
"categoryStringId": "entertainment",
"subcategoryStringId": "creator",
"publisherType": "CREATOR",
"profilePictureUrl": "https://cf-st.sc-cdn.net/โ€ฆ",
"snapcodeImageUrl": "https://app.snapchat.com/web/deeplink/snapcode?username=exampleofficial",
"squareHeroImageUrl": "https://cf-st.sc-cdn.net/โ€ฆ",
"primaryColor": "#FFFC00",
"creationTime": "2019-04-12T08:31:00Z",
"lastUpdateTime": "2026-07-28T14:02:11Z",
"scrapedAt": "2026-08-10T10:44:03Z"
}
{
"username": "nonexistent_profile",
"success": false,
"error": "Profile could not be fetched",
"scrapedAt": "2026-08-10T10:44:07Z"
}

Illustrative values โ€” a live run returns current Snapchat data.


Usage examples

Bulk influencer check

{
"startUrls": [
"creator_one",
"creator_two",
"https://www.snapchat.com/add/creator_three"
]
}

Export to CSV and sort by subscriberCount.

Growth tracking over time

Save your creator list as a Task and attach a weekly Schedule. Compare subscriberCount per username between runs to chart growth.

Category research

Run across a large list, then group your export by categoryStringId and subcategoryStringId to see how a niche is distributed.

Find creators with a business site

Filter the export for rows where websiteUrl is not empty โ€” those creators have something to sell, which usually means they are open to partnerships.


Run it from your own code

Python

from apify_client import ApifyClient
client = ApifyClient("<YOUR_APIFY_API_TOKEN>")
run = client.actor("scraperx/snapchat-followers-scraper").call(run_input={
"startUrls": ["creator_one", "creator_two"],
})
for p in client.dataset(run["defaultDatasetId"]).iterate_items():
print(p["username"], "|", p.get("subscriberCount"), "|", p.get("websiteUrl"))

JavaScript

import { ApifyClient } from 'apify-client';
const client = new ApifyClient({ token: '<YOUR_APIFY_API_TOKEN>' });
const run = await client.actor('scraperx/snapchat-followers-scraper').call({
startUrls: ['creator_one', 'creator_two'],
});
const { items } = await client.dataset(run.defaultDatasetId).listItems();
console.log(items);

cURL

curl -X POST "https://api.apify.com/v2/acts/scraperx~snapchat-followers-scraper/runs?token=<YOUR_APIFY_API_TOKEN>" \
-H "Content-Type: application/json" \
-d '{"startUrls":["creator_one"]}'

Integrations

Push profiles into Google Sheets, Airtable, Slack, Make, Zapier, Google Drive or your CRM via webhooks, and use Schedules to keep an influencer database current.


Pricing

Pricing for this Actor is shown on its Pricing tab on the Actor page, and Apify displays the applicable cost before you run it. Free Apify accounts include monthly platform credit that is enough to trial it.

Note that if the run escalates to Apify Residential proxies, that traffic is billed separately by the platform according to your plan.


Limits & good to know

  • Public profiles only. Private accounts and profiles Snapchat does not render publicly cannot be read.
  • Not every field is published. Many profiles omit bio, website, address or category; those fields simply do not appear rather than being guessed.
  • subscriberCount is what Snapchat displays publicly, which is not published for every account type.
  • Failures are real rows. Check for success: false and re-run just those usernames if needed.
  • Image URLs point at Snapchat's CDN and can expire โ€” download assets promptly if you need the files.
  • The Actor paces itself with a 1โ€“2 second delay per profile, so very long lists take proportionally longer. Raise the run timeout for large batches.
  • This Actor returns profile-level data. It does not extract stories, snaps or spotlight content.
  • Default run options are 4 GB memory and a 1-hour timeout.

FAQ

Do I need a Snapchat account or API key? No. The Actor reads public profile pages without authentication.

Can I use plain usernames instead of URLs? Yes โ€” both formats work, and you can mix them in one list.

Does it return the follower count? Yes, as subscriberCount โ€” Snapchat's public subscriber number for that profile.

Why is a field missing for some profiles? Because that account does not publish it. Snapchat profiles vary a lot in how much they fill in.

Do I need to configure proxies? No. The Actor starts direct and escalates automatically to datacenter and then residential if Snapchat blocks it.

Can it scrape stories or snaps? No. This Actor covers profile-level data: identity, audience size, category, links and branding assets.

How do I track growth over time? Save your list as a Task, schedule it weekly, and compare subscriberCount per username across runs.

Which export formats are supported? JSON, CSV, Excel (XLSX), XML and RSS. CSV works well here โ€” the rows are flat.


This Actor collects only publicly visible Snapchat profile information โ€” the same details any visitor sees on a public profile page. It does not log in, add accounts, or access private content, stories or messages. Usernames, bios and profile images are personal data: make sure your use complies with Snapchat's terms, copyright, and GDPR or comparable data-protection rules.

Support

Need extra fields, story-level data, or a custom Snapchat workflow? Open an issue on the Issues tab of this Actor.