Free · no signup · natural language
Ask in plain English. Get API data.
Type one question about TikTok, YouTube, Instagram, or other supported platforms. We route it to the right Social Fetch endpoint and return the live lookup — same production API, zero docs spelunking.
Protected by Cloudflare Turnstile · free demo limited to 1-credit lookups
How it works
Skip the docs. Ask once.
POST /v1/ask is a natural-language router on top of our public API. You ask; we resolve the operation, run the lookup, and hand back the result.
No endpoint hunting
Describe what you want — follower counts, channel stats, profile lookups — and we pick the right Social Fetch API call for you.
One shot, not a chat
Each submit runs a single routed lookup and returns structured API data. Great for a quick sanity check before you wire up code.
Same data as production
The response comes from the real public API underneath. You see which operation ran, with params and the full payload.
What to ask
Good questions look like this
Be specific about the platform and creator when you can. The router works best with clear intent — counts, profiles, and straightforward lookups.
“How many TikTok followers does MrBeast have?”
Profile metrics without digging through docs.
“How many YouTube subscribers does MrBeast have?”
Channel stats from a plain-English question.
“Get the Instagram profile for @instagram”
Handle-based lookups when you know the creator.
For builders & automations
The same router, from your code.
This page is a browser demo with fair-use limits. When you need natural-language routing in a product, agent, or internal tool, call POST /v1/ask with your API key and chain it into your own workflows.
const result = await fetch("https://api.socialfetch.dev/v1/ask",{ method: "POST", headers: { "x-api-key": "…" },body: JSON.stringify({ query: "…" })});
FAQ
Questions you probably have
Is this a chatbot?
No. Each submit runs one routed API lookup and returns structured data. There is no back-and-forth conversation — ask one clear question, get one answer.
What can I ask on the free demo?
Lookups that would cost 1 credit on the production API. That covers most profile and channel stats, simple searches, and similar lightweight calls. Heavier operations (for example media downloads or AI fallbacks) require an account and API key.
How does routing work?
We interpret your question, pick the matching public API operation, run it with the resolved parameters, and return both the routed call details and the live lookup payload.
Why should I mention the platform?
Names like MrBeast exist on multiple networks. Saying TikTok, YouTube, or Instagram helps the router pick the right endpoint on the first try.
Can I use this from code?
Yes — sign up, grab an API key, and call POST /v1/ask the same way this page does. The free browser tool has rate limits; production usage is billed per the routed lookup.