Query Social Data with a Natural Language API: Ask in Plain English
Type a question about TikTok, YouTube, or Instagram — we route it, run the lookup, and return real API data. Learn how our Natural Language API works and why AI agents need intent-driven routing.
For years the deal with APIs was simple: here is the catalog, here are the params, good luck.
That made sense when humans were the only integrators. You read the reference, you wired the route, you moved on.
It makes less sense now. Your teammate asks in Slack for MrBeast's TikTok followers. Your AI agent has a tool slot and a user question, not an afternoon to grep OpenAPI specs. You want to try a lookup before you commit to a path in code. In all of those cases, the data was never the hard part — finding the right door was.
We have been wondering aloud: what if the API just understood the question?
Not a chatbot. Not a support bot. A real HTTP call that takes plain English on the way in and returns the same structured JSON our typed endpoints always have on the way out.
We shipped exactly that. Welcome to the Natural Language API for Social Fetch.
Here is the call:
// Just ask for the data you want. Make sure to include the platform :)
const result = await client.ask({
query: "How many TikTok followers does MrBeast have?",
});
if (result.ok) {
// Live TikTok profile JSON — we picked the route for you
console.log(result.value.data.lookup);
}No path template. No handle vs channelId debate up front. You ask; we route, run the lookup, and hand back the same structured data the typed endpoint would have returned.
Why AI Agents Need Natural Language APIs
LLMs are getting good at reading docs. They are also getting good at not needing to.
Tool use works best when the model can say what it wants in human language and get a reliable result back — not when every AI agent run starts with "first, locate operationId tiktok.profile.get in the spec." By letting AI agents use a Natural Language API, you reduce the token overhead, minimize routing errors, and speed up execution.
Natural language at the boundary does not replace good API design. We still believe in typed routes, stable schemas, and boring envelopes. We are not throwing away the reference docs.
But there is room for a second front door: one question, one lookup, live data back. Ask in English when you are exploring. Pin the typed endpoint when you are shipping a predictable cron job.
That is the bet we made with POST /v1/ask.
How Our Natural Language API Works Under the Hood
You might be wondering how we turn "get the Instagram profile for @instagram" into a structured API response.
- Intent Recognition: When you send a question, our intent router analyzes the text to determine which platform (TikTok, YouTube, Instagram, etc.) and what data type (Profile, Video, Search, Comments) you are looking for.
- Parameter Extraction: It automatically figures out the identifiers. You don't need to know our path templates or whether the identifier is a handle, a channel ID, or a URL. We extract that part for you.
- Execution & Normalization: We execute the underlying typed endpoint and return the exact same structured JSON.
Each call is one shot. No thread, no memory, no back-and-forth on our side. You get the lookup payload you would have gotten from the typed route, plus a clear record of which operation we chose. Useful for debugging, for agents, and for discovering the correct endpoint to use in production.
Test the Social Media API Router Live
We put a free browser demo on the site for exactly this moment: you have a question, you want to see if the router gets it, you do not want to sign up first.
Open /tools/ask, type a question, submit. You will see the routed lookup and the live response — the same production API our customers use, not a toy dataset.
The demo is capped to simple one-credit lookups so the page stays fair for everyone. When you are ready for volume, grab a key and call the same thing from your backend.
Some questions we have been typing ourselves while testing:
- How many TikTok followers does MrBeast have?
- How many YouTube subscribers does MrBeast have?
- Get the Instagram profile for @instagram
If you already have an API key, the playground under Ask is the same idea with your credentials.
Best Use Cases for Intent-Driven API Queries
We are not saying natural language replaces your integration layer. For cron jobs, billing pipelines, and anything with a fixed schema contract, call the typed route. We mean that.
We are saying there is a new useful mode: intent in, JSON out, without a documentation detour first. Here is who this is for:
- AI Agents & LLM Tools: Agents trying to enrich user context on the fly without needing complex OpenAPI spec injection. Just give the agent the
askendpoint. - Internal Slack Bots: Quickly build tools for your marketing or sales team to query social data without needing to build custom
/commandsfor every platform. - Rapid Prototyping: Exploring the data available across platforms before committing to reading the docs and wiring up specific routes.
A few things to expect:
- Vague questions ("how many followers does MrBeast have?") may fail or pick the wrong network. Be specific.
- One question, one lookup. Comparing TikTok and YouTube for the same creator is two calls, not one.
- Off-topic questions get rejected before a lookup runs. You are not charged for those.
- Routing is free in v1; you pay for the underlying lookup, same as always. See Pricing.
This is early, live, and we are watching how people use it. That is part of why we wanted a free tool and a blog post instead of burying it in a changelog line.
If you want the wires
Request shape, response fields, error codes, and billing: API reference for POST /v1/ask. The docs are where the spec lives; this post is the invitation.
Try it free
No signup. Type a question, see the routed lookup and live data.
API reference
POST /v1/ask — for when you are wiring it in.
We built Social Fetch to make social data boring and dependable. This is the slightly less boring front door — and we think that is worth showing off.
Go ask something.