Ask a natural-language question and get a routed public API lookup.
Endpoint
/v1/ask
Body
Natural-language question to route to a public API lookup.
const response = await fetch( "https://api.socialfetch.dev/v1/ask", { method: "POST", headers: { "Content-Type": "application/json", "x-api-key": "YOUR_API_KEY" }, body: JSON.stringify({ query: "How many TikTok followers does MrBeast have?" }) } ); const data = await response.json(); console.log(data);