Instagram, Snapchat, TikTok, and YouTube
Social media data,
from one API.
Profiles, posts, reels, comment threads, followers and search results come back whole rather than truncated — including the pages that hand most tools a login wall.
- Billed per result, not per request
- Parsed, typed JSON
- 1,000 free credits to start
One call and one polling loop, whatever the platform.
{
"profile": {
"id": "528817151",
"username": "nasa",
"full_name": "NASA",
"biography": "Exploring the universe",
"is_verified": true,
"follower_count": 98243117,
"following_count": 78,
"media_count": 4192,
…
}
}
{
"stories": [
{
"id": "W7_EDlXWTBiXAEEn…",
"story_type": "public",
"title": "Artemis II rollout",
"index": 3,
"is_sponsored": false,
"author": {
"username": "nasa",
},
…
},
…
]
}
{
"videos": [
{
"id": "7212345678901234567",
"caption": "Starship static fire",
"taken_at": "2026-08-26T09:12:44Z",
"duration": 27,
"play_count": 4820113,
"like_count": 612940,
"comment_count": 8104,
"author": {
"username": "spacex",
"is_verified": true,
},
…
},
…
]
}
{
"comments": [
{
"id": "Ugx9kQpL2mN4…",
"text": "this is unreal 🚀",
"created_at": "2026-08-26T09:12:44Z",
"like_count": 418,
"reply_count": 12,
"language": "en",
"author": {
"username": "astro_pete",
"is_verified": false,
},
…
},
…
]
}
Coverage
Four platforms, one shape of code
The same field names on every platform, whether the result came off a feed, out of a comment thread or back from a search — so one set of models covers all of it.
Profiles and channels
Bios, follower and subscriber counts, verification, links and categories — read one at a time, or batched into a single run.
Posts, reels, videos and shorts
Captions, media, view, like and share counts, timestamps and the account behind each one, as many as the limit you send.
Comments and replies
Whole threads rather than the first page — deduplicated, with reply counts and the account that wrote each one.
Followers, following and subscriptions
The accounts around a profile, as rows you can page through to whatever limit you ask for.
Stories and highlights
The posts that disappear in a day, and the saved sets kept behind them, with their media still resolvable when they arrive.
Hashtags, sounds, places and search
What a tag, a sound, a place or a query is showing right now, in the same shape as any other feed.
Need another one?
Ask for a platformPricing
One credit is a hundredth of a cent
Credits are bought up front and spent per result delivered. A comment costs 5 credits and a profile costs 10. There is no plan to pick and nothing to cancel.
- 40,000 comments 5 credits each
- 40,000 feed posts or reels 5 credits each
- 20,000 profiles 10 credits each
200,000 credits for $20. Credits do not expire, and unused credits are never billed against a plan you did not buy.
Questions
Before you sign up
Still unsure? The docs are public and complete — read what the API does before deciding.
What makes this different from the other scraping APIs?
What am I actually charged for?
Is the API synchronous?
Can results be pushed to me instead of polled?
How many results can one run return?
Do I have to parse anything myself?
Is there a subscription or a minimum?
Make your first call in a minute
Sign up, issue a key, and run a real request from the playground before you write a line of code. No card needed.