SocialCrawl

Utility

Free endpoints that describe the API itself: the endpoint catalog, a per-endpoint usage guide, a one-call quickstart, and the AI-agent context payload

The utility platform is the API describing itself. Four endpoints answer "what can I call", "how do I call this one", "how do I make my first request", and "give my agent everything it needs to know". All four are free, cost 0 credits, and never consume credits.

Base URL: /v1/utility/...

Every response here is generated from the running registry at request time, so it cannot drift from what is actually callable. That is the reason to prefer these over a cached copy of the documentation.

What is in here, and when you need it

You needCall this
Everything needed for a first successful requestGET /v1/utility/quickstart
The list of what you can call, filteredGET /v1/utility/endpoints
Exactly how to call one endpointGET /v1/utility/endpoint
A context payload to bootstrap an AI agentGET /v1/utility/llms

Quickstart

1. Onboard in one call

quickstart returns authentication, the base URL, the response envelope, the credit billing model, the error taxonomy, rate limits, pagination rules, and a copy-paste first request.

cURL
curl "https://www.socialcrawl.dev/v1/utility/quickstart?platform=tiktok" \
  -H "x-api-key: YOUR_API_KEY"

Pass platform to tailor the first-call example and links to one platform.

2. Find and read the endpoint you want

cURL
# Everything callable, filterable by platform, keyword, or method
curl "https://www.socialcrawl.dev/v1/utility/endpoints?platform=tiktok&search=comment" \
  -H "x-api-key: YOUR_API_KEY"

# How to call one of them, by id or by path
curl "https://www.socialcrawl.dev/v1/utility/endpoint?url=/v1/tiktok/profile" \
  -H "x-api-key: YOUR_API_KEY"

Discover the surface

EndpointCreditsWhat it returnsKey parameters
GET /v1/utility/quickstart0Everything needed for a first successful call: auth, base URL, envelope, billing, errors, rate limits, pagination, a first requestplatform
GET /v1/utility/endpoints0A machine-readable catalog of every active endpoint: path, method, credit cost, parameters, and a link to its usage guideplatform, search, method
GET /v1/utility/endpoint0One endpoint end to end: every parameter with type and example, the exact credit cost, cache behaviour, the pagination recipe, a copy-paste request, and related endpointsid or url, plus method

endpoint takes either id (tiktok/profile) or url (/v1/tiktok/profile), and one of them is required. Pass method to disambiguate a resource registered under more than one HTTP method: /v1/web/monitors/{monitor_id} is GET, PATCH and DELETE. Omit it and the first registered method wins.

On endpoints, search is a case-insensitive substring filter over endpoint paths and summaries.

Bootstrap an agent

EndpointCreditsWhat it returnsKey parameters
GET /v1/utility/llms0The SocialCrawl context corpus, as markdown or as a structured objectplatform, format (markdown or json)

An agent holding nothing but a key can learn the surface in one call rather than scraping documentation pages. format defaults to markdown. platform narrows the corpus to one platform when the full context is more than the agent needs.

cURL
curl "https://www.socialcrawl.dev/v1/utility/llms?platform=youtube&format=json" \
  -H "x-api-key: YOUR_API_KEY"

All endpoints

4 endpoints available.

EndpointPathCredit Tier
How to use any endpoint/v1/utility/endpointstandard (0cr)
List every available endpoint/v1/utility/endpointsstandard (0cr)
AI-agent context payload/v1/utility/llmsstandard (0cr)
Get started in one call/v1/utility/quickstartstandard (0cr)

Platform notes

  • All four endpoints are free. They cost 0 credits and never consume credits, so polling them is safe.
  • endpoint requires id or url. Sending neither is a 400.
  • All endpoints use GET with query parameters, authenticate with the x-api-key header, and return the unified SocialCrawl envelope.

Next steps