
Snapchat Profile Scraper
Pricing
$5.00/month + usage

Snapchat Profile Scraper
Snapchat Profile Scraper โ Extract public Snapchat profile data in seconds! โก๐ฑ Gather usernames, Bitmoji, score, and more โ fast, reliable, and fully proxy-ready. Perfect for marketers, analysts, and developers. ๐๐
0.0 (0)
Pricing
$5.00/month + usage
0
2
2
Last modified
3 days ago
๐ Overview
The Snapchat Profile Scraper is an Apify actor designed to extract detailed information from Snapchat user profiles. By providing one or more Snapchat profile URLs, this actor fetches and parses publicly available data, including:
- Profile name and username
- Number of followers
- Associated website links
- Spotlight video link
- Engagement metrics (views, comments, shares)
This actor is ideal for social media analytics, influencer research, and competitive analysis.
โ๏ธ Input Schema
The actor accepts the following input fields:
{"startUrls": ["https://www.snapchat.com/@username"],"proxyConfiguration": {"useApifyProxy": false,}}
Fields:
startUrls
: An array of Snapchat profile URLs to scrape.proxyConfiguration
: Optional settings for proxy usage.
๐ ๏ธ How It Works
-
Input Parsing: The actor reads the provided
startUrls
and optionalproxyConfiguration
. -
Fetching Data: For each URL:
- Fetches the HTML content using the specified proxies (if any).
- Parses the HTML to extract relevant profile information.
-
Data Output: The extracted data is saved to the default dataset in the following format:
{"name": "User Name","username": "@username","followers": "1234","website": ["https://www.website.com"],"videolink": "https://www.snapchat.com/spotlight/video","viewcount": "5678","comments": "90","share": "12","fetched_url": "https://www.snapchat.com/@username","http_status": 200}
๐งช Example Usage
To run the actor, provide a JSON input like:
{"startUrls": ["https://www.snapchat.com/@username"]}
Optionally, include a proxyConfiguration
to route requests through Apify's proxy service or your own proxies.
๐ฆ Requirements
- Python 3.8+
- Apify SDK
requests
,parsel
libraries
๐ Proxy Configuration
To use Apify's proxy service, set "useApifyProxy": true
. For custom proxies, provide the necessary details in the proxyConfiguration
object.
๐ Output Dataset
The actor outputs a dataset with the following fields:
name
: Profile nameusername
: Snapchat usernamefollowers
: Number of followerswebsite
: Associated website linksvideolink
: Spotlight video linkviewcount
: Number of viewscomments
: Number of commentsshare
: Number of sharesfetched_url
: The URL that was actually fetchedhttp_status
: HTTP status code of the request
๐ ๏ธ Development & Customization
To customize or extend the actor:
- Clone the repository.
- Modify
main.py
to adjust the scraping logic or data extraction methods. - Update
actor.json
to reflect any changes in input schema or metadata. - Rebuild and deploy the actor on Apify.