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

Prism Scraper API

GET /v1/prism/lookup turns any social or commerce URL into structured data in one call. Hand it a TikTok video, an Instagram reel, a YouTube link, a Reddit thread, a GitHub repo, or an Amazon product page — Prism detects the platform, calls the right endpoint, and returns SocialCrawl's unified JSON. No surcharge: you pay the underlying endpoint's price, nothing more.

TL;DR

The Prism API by SocialCrawl returns Prism data as structured JSON — 33 endpoints behind one x-api-key, from 0 credits per call. It shares one unified schema with 43 other platforms, so the same client code works everywhere.

Live demo

Try the Prism API in your browser

Type a real handle, run a real request, see the JSON SocialCrawl returns. No signup, no key — same response shape you get in production.

Try the Prism Lookup API

See real data before writing a single line

GET/v1/prism/lookup

Absolute http(s) URL of the post / profile / product to resolve.

1 optional parameters

CSV of optional flags to forward verbatim to the resolved endpoint (e.g. `trim`). Each member must be an optional param of that endpoint.

Endpoints

What data does the Prism API return?

Every endpoint returns structured JSON with a unified schema. Computed fields like engagement rate and content category come standard.

Last updated July 2026

Lookupstandard

Universal URL dispatcher: any social/commerce URL → the right detail endpoint's unified response.

Commentsstandard

Every comment on a post, replies nested, server-paginated to completion.

Brand Mentionsadvanced

Brand mention volume time-series, sentiment split, top sources, and recent mentions for one keyword.

Demand Signalsadvanced

Consumer-demand nowcast: app-review velocity, web mention slope, Reddit velocity, and commerce review levels, fused into a published demand index.

Campaignadvanced

Campaign tracker: pre/during/post volume lift, cross-platform engagement, and ranked top amplifiers for a hashtag or phrase.

Ai Visibilityadvanced

AI Share-of-Voice / GEO monitoring: prompt set x reruns to per-brand appearance-% per AI engine plus a cited-domain ranking.

Crisis Postmortemadvanced

Crisis post-mortem: a who-said-what-first timeline across web, Reddit, Hacker News, and social, with an origin, peak, propagation sequence, and a grounded narrative.

Crisis Radaradvanced

Stateless crisis breach check: a z-score on daily mention volume and negative share, with on-breach confirmation and a severity grade.

Devtool Pulseadvanced

Developer-brand health: a devtool's repo dossier + Hacker News reaction + Reddit chatter + dev-blog echo, in one call.

Leadsadvanced

Ranked feed of public conversations where people seek alternatives to or are switching from a competitor.

Earned Mediaadvanced

A brand's earned-media footprint — news + tech-press + fresh-web clips, deduped and ranked, with an outlet-coverage rollup.

Truthsocial Pulseadvanced

A Truth Social handle's pulse — profile, recent posts, per-post detail drill, and the news echo, in one call.

Launch Echoadvanced

How a launch landed — the Hacker News reaction (top threads + comments), the dev-blog echo, and an optional repo dossier.

Audience Overlapadvanced

How much two TikTok creators' commenter audiences overlap — Jaccard, shared-fan count, and a confidence label.

Reputationpremium

A brand's cross-source reputation — Trustpilot + app stores + Google Business + web sentiment, blended into one weighted score with themed pros/cons.

Employer Brandpremium

A company's employer brand — what people say about working there across Reddit, the web, YouTube, Naver, and the company's own LinkedIn voice.

Audience Questionspremium

The real questions a topic's audience asks — harvested from Reddit + YouTube threads and clustered by intent (who/what/why/how/vs).

Product Reviewspremium

A product's reviews across Amazon + Google Shopping + Trustpilot, folded into a cross-marketplace rating + themed pros/cons report.

Apps Lookuppremium

One app across Google Play + the App Store — resolved, title-matched, and compared into a cross-store rating + listing report.

Org Radarpremium

A GitHub org's footprint — its top repos each expanded into a full dossier (releases, issue load, top request/complaint), rolled up.

Creator Vetpremium

Vet a creator before partnering — engagement quality, commenter authenticity, posting cadence, and controversy signals, optionally across platforms.

Korea Gappremium

What the world is talking about that Korea isn't (and vice versa) — the global vs Korean (Naver) conversation gap for a brand/topic.

Share Of Voicepremium

Engagement-weighted Share of Voice across 2-5 brands, with web+social split, emotion overlay, and ESOV.

Review Integritypremium

Cross-source review integrity verdict (statistical, deterministic).

Answerspremium

Multi-engine AI consensus: one question → Perplexity + Grok + Tavily answers verbatim, merged citations, and an agreement matrix.

Video Inteladvanced

One video URL → detail + stats + transcript + top comments + commenter sample, across YouTube/TikTok/Rumble/Instagram.

Voiceadvanced

One person's public posts across X, Threads, Bluesky, and Truth Social, time-merged.

App Reviewsadvanced

Cross-store app review intelligence (Google Play + App Store) — translated, clustered, sentiment-scored.

Creator Cardadvanced

One handle, unified author cards across TikTok, Instagram, YouTube, X (and more).

Handle Auditadvanced

Should you pull this handle? One call scores a handle across platforms, ranks the best ones, and projects the data volume + credit cost to pull it.

Post Statsstandard

Up to 100 mixed-platform post URLs → current engagement per URL, failed URLs refunded.

Comment Lookupstandard

Re-check up to 25 known comments in one call — per-item results, failed items refunded.

Profilesstandard

Up to 50 (platform, handle) pairs → one canonical Author per row, failed handles refunded.

Developer First

How do you scrape social media data in seconds?

The fastest social media scraping API for developers. Scrape profiles, posts, comments, and analytics from 44 platforms covering 10B+ monthly active users.

One schema, every platform

Query 44 platforms with identical response structures. Write your integration once.

Computed fields, not just scraped

Every response includes engagement_rate, estimated_reach, content_category, and language — ready to use.

See your data before you code

Visual Data Explorer — paste any URL, get rich result cards, sortable tables, CSV export.

import requests

response = requests.get(
    'https://www.socialcrawl.dev/v1/tiktok/profile',
    params={'handle': 'charlidamelio'},
    headers={'x-api-key': 'sc_YOUR_API_KEY'}
)
data = response.json()
[ .JSON ]
{
  "success": true,
  "platform": "tiktok",
  "data": {
    "author": {
      "username": "charlidamelio",
      "followers": 152400000
    },
    "engagement": {
      "likes": 12400000000,
      "engagement_rate": 0.087
    },
    "metadata": {
      "language": "en",
      "content_category": "lifestyle"
    }
  }
}
+ 44 platforms
One API, 44 platforms

How does SocialCrawl handle 44 different platforms?

Social media scraping is hard. Schema normalization, authentication, rate limits, pagination — we handle it all before your data arrives.

One schema, every platform

Write once, query them all.

44 platforms return 44 different JSON shapes. We normalize every response into one consistent structure.

Ready-to-use metrics

Metrics ready before you ask.

Engagement rate, estimated reach, content category, language — calculated on every response automatically.

Consistent pagination

One cursor, every platform.

Every platform paginates differently. We give you one consistent cursor-based system.

Always fresh

Live data, never cached.

Every request hits the actual platform. No stale data, no cache lag.

Things you'll never build

Auth, proxies, and rate limits — handled.

Platform authentication, IP rotation, rate limit management — abstracted away. Just send a GET request.

Start for free
Comparison

How does SocialCrawl compare to Calling each endpoint by hand for Prism data?

Same Prism data, two very different paths. Auth, rate limits, schema, and cost — side by side.

Platform detection

SocialCrawl
Sniffs the platform and endpoint from the URL automatically
Calling each endpoint by hand
You map every URL pattern to the right endpoint yourself

Calls to learn

SocialCrawl
One request shape for any of 15 supported URL types
Calling each endpoint by hand
A different request to learn and wire up per platform

Pricing

SocialCrawl
Pass-through — the underlying endpoint's price, no markup
Calling each endpoint by hand
Same per-endpoint cost, plus the routing logic you maintain

Response shape

SocialCrawl
Unified JSON with a resolved{} routing block and legs[] transparency
Calling each endpoint by hand
Each platform hands back its own raw payload to normalize

Maintenance

SocialCrawl
Routing stays current as endpoints and URL shapes change
Calling each endpoint by hand
Your URL parsing breaks when a platform changes its links
Quick answers

How much does Prism scraping cost?

SocialCrawl uses credit-based pricing: you pay per API call, and most Prism endpoints cost just a few credits. Every account starts with 100 free credits — no subscriptions, no compute units, no credit card required.

See pricing

Is Prism scraping legal?

SocialCrawl returns publicly available Prism data. Courts have generally upheld scraping public data — most notably in hiQ v. LinkedIn — but compliance depends on your use case and jurisdiction. You are responsible for following applicable laws and platform terms.

FAQ

Have a question? We got answers

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

Contact us

Ask AI about SocialCrawl

Ready to start scraping Prism data?

Get your API key and access all 33 Prism endpoints in under 60 seconds.

Start for free