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

Utility Endpoints API

Scrape Utility Endpoints data with one API call. Machine-readable catalog of every active SocialCrawl endpoint: path, method, platform, credit cost, required and optional parameters, response archetype, and a link to the per-endpoint usage guide. Generated from the endpoint registry at request time, so it never drifts from what is callable. Free to call.

Last updated August 2026Maintained by the SocialCrawl team

Returns a catalogue of every endpoint you can call: path, method, platform, credit cost, required and optional parameters, and a link to its usage guide.

Use it to discover what is available or filter by platform. For one endpoint's full instructions, call the endpoint guide. Free to call.

Searching 46 platforms in parallel

·TikTok logoTikTok·Instagram logoInstagram·YouTube logoYouTube·Facebook logoFacebook·X logoX·LinkedIn logoLinkedIn·Reddit logoReddit·Threads logoThreads·Pinterest logoPinterest·Twitch logoTwitch·Truth Social logoTruth Social·Snapchat logoSnapchat·Kick logoKick·Bluesky logoBluesky·Kwai logoKwai·Rumble logoRumble·Spotify logoSpotify·TikTok Shop logoTikTok Shop·Amazon Shop logoAmazon Shop·Google Shopping logoGoogle Shopping·Trustpilot logoTrustpilot·TripAdvisor logoTripAdvisor·Linktree logoLinktree·Komi logoKomi·Pillar logoPillar·lnk.bio logolnk.bio·Facebook Ads logoFacebook Ads·Google Ads logoGoogle Ads·LinkedIn Ads logoLinkedIn Ads·Google Search logoGoogle Search·Google News logoGoogle News·Google Finance logoGoogle Finance·Polymarket logoPolymarket·Tavily logoTavily·Hacker News logoHacker News·GitHub logoGitHub·Perplexity logoPerplexity·Naver logoNaver·Utility·Universal Search logoUniversal Search
·TikTok logoTikTok·Instagram logoInstagram·YouTube logoYouTube·Facebook logoFacebook·X logoX·LinkedIn logoLinkedIn·Reddit logoReddit·Threads logoThreads·Pinterest logoPinterest·Twitch logoTwitch·Truth Social logoTruth Social·Snapchat logoSnapchat·Kick logoKick·Bluesky logoBluesky·Kwai logoKwai·Rumble logoRumble·Spotify logoSpotify·TikTok Shop logoTikTok Shop·Amazon Shop logoAmazon Shop·Google Shopping logoGoogle Shopping·Trustpilot logoTrustpilot·TripAdvisor logoTripAdvisor·Linktree logoLinktree·Komi logoKomi·Pillar logoPillar·lnk.bio logolnk.bio·Facebook Ads logoFacebook Ads·Google Ads logoGoogle Ads·LinkedIn Ads logoLinkedIn Ads·Google Search logoGoogle Search·Google News logoGoogle News·Google Finance logoGoogle Finance·Polymarket logoPolymarket·Tavily logoTavily·Hacker News logoHacker News·GitHub logoGitHub·Perplexity logoPerplexity·Naver logoNaver·Utility·Universal Search logoUniversal Search
·TikTok logoTikTok·Instagram logoInstagram·YouTube logoYouTube·Facebook logoFacebook·X logoX·LinkedIn logoLinkedIn·Reddit logoReddit·Threads logoThreads·Pinterest logoPinterest·Twitch logoTwitch·Truth Social logoTruth Social·Snapchat logoSnapchat·Kick logoKick·Bluesky logoBluesky·Kwai logoKwai·Rumble logoRumble·Spotify logoSpotify·TikTok Shop logoTikTok Shop·Amazon Shop logoAmazon Shop·Google Shopping logoGoogle Shopping·Trustpilot logoTrustpilot·TripAdvisor logoTripAdvisor·Linktree logoLinktree·Komi logoKomi·Pillar logoPillar·lnk.bio logolnk.bio·Facebook Ads logoFacebook Ads·Google Ads logoGoogle Ads·LinkedIn Ads logoLinkedIn Ads·Google Search logoGoogle Search·Google News logoGoogle News·Google Finance logoGoogle Finance·Polymarket logoPolymarket·Tavily logoTavily·Hacker News logoHacker News·GitHub logoGitHub·Perplexity logoPerplexity·Naver logoNaver·Utility·Universal Search logoUniversal Search
·TikTok logoTikTok·Instagram logoInstagram·YouTube logoYouTube·Facebook logoFacebook·X logoX·LinkedIn logoLinkedIn·Reddit logoReddit·Threads logoThreads·Pinterest logoPinterest·Twitch logoTwitch·Truth Social logoTruth Social·Snapchat logoSnapchat·Kick logoKick·Bluesky logoBluesky·Kwai logoKwai·Rumble logoRumble·Spotify logoSpotify·TikTok Shop logoTikTok Shop·Amazon Shop logoAmazon Shop·Google Shopping logoGoogle Shopping·Trustpilot logoTrustpilot·TripAdvisor logoTripAdvisor·Linktree logoLinktree·Komi logoKomi·Pillar logoPillar·lnk.bio logolnk.bio·Facebook Ads logoFacebook Ads·Google Ads logoGoogle Ads·LinkedIn Ads logoLinkedIn Ads·Google Search logoGoogle Search·Google News logoGoogle News·Google Finance logoGoogle Finance·Polymarket logoPolymarket·Tavily logoTavily·Hacker News logoHacker News·GitHub logoGitHub·Perplexity logoPerplexity·Naver logoNaver·Utility·Universal Search logoUniversal Search
Utility API

What can you do with the Endpoints API?

The Endpoints endpoint gives you structured Utility data with computed fields in a single request. No scraping infrastructure to build or maintain.

Example Request

curl -H "x-api-key: YOUR_API_KEY" \
  "https://www.socialcrawl.dev/v1/utility/endpoints"
import requests

response = requests.get(
    "https://www.socialcrawl.dev/v1/utility/endpoints",
    headers={"x-api-key": "YOUR_API_KEY"},
)

data = response.json()
const response = await fetch(
  "https://www.socialcrawl.dev/v1/utility/endpoints",
  {
    headers: { "x-api-key": "YOUR_API_KEY" },
  },
);

const data = await response.json();

Parameters

ParameterRequiredDescription
platformNoFilter the catalog to a single platform slug (e.g. tiktok)
searchNoCase-insensitive substring filter over endpoint paths and summaries
methodNoFilter by HTTP method (GET | POST)
Example Response

What does the Utility Endpoints API return?

This synthetic fixture shows the documented response shape and fields. Values are illustrative; this is not a live API response.

Example response
{
  "success": true,
  "platform": "utility",
  "endpoint": "/v1/utility/endpoints",
  "data": {
    "kind": "endpoint_catalog",
    "stats": {
      "platforms": 46,
      "endpoints": 372,
      "social_platforms": 27
    },
    "filters": {
      "platform": null,
      "search": null,
      "method": null
    },
    "total": 372,
    "endpoints": [
      {
        "id": "web/scrape",
        "path": "/v1/web/scrape",
        "method": "GET",
        "platform": "web",
        "resource": "scrape",
        "summary": "Scrape a web page",
        "credits": 1,
        "credits_label": "1-5 (metered)",
        "archetype": "WebPage",
        "required_params": [
          "url"
        ],
        "one_of": [],
        "optional_params": [
          "formats",
          "only_main_content",
          "wait_for",
          "mobile",
          "timeout",
          "max_age",
          "location_country",
          "screenshot_full_page",
          "include_tags",
          "exclude_tags",
          "proxy",
          "pdf_parse",
          "block_ads",
          "remove_base64_images"
        ],
        "paginated": false,
        "how_to_use": "/v1/utility/endpoint?id=web/scrape",
        "docs_url": "https://www.socialcrawl.dev/platforms/web/scrape"
      },
      {
        "id": "web/search",
        "path": "/v1/web/search",
        "method": "GET",
        "platform": "web",
        "resource": "search",
        "summary": "Search the web",
        "credits": 2,
        "credits_label": "2-120 (metered)",
        "archetype": "WebPageList",
        "required_params": [
          "query"
        ],
        "one_of": [],
        "optional_params": [
          "sources",
          "categories",
          "limit",
          "country",
          "location",
          "time_range",
          "sort_by_date",
          "include_domains",
          "exclude_domains",
          "include_content"
        ],
        "paginated": false,
        "how_to_use": "/v1/utility/endpoint?id=web/search",
        "docs_url": "https://www.socialcrawl.dev/platforms/web/search"
      },
      {
        "id": "web/map",
        "path": "/v1/web/map",
        "method": "GET",
        "platform": "web",
        "resource": "map",
        "summary": "Map URLs on a site",
        "credits": 1,
        "credits_label": "1 (override; tier standard)",
        "archetype": "WebPageList",
        "required_params": [
          "url"
        ],
        "one_of": [],
        "optional_params": [
          "search",
          "limit",
          "sitemap",
          "include_subdomains",
          "ignore_query_parameters",
          "fresh"
        ],
        "paginated": false,
        "how_to_use": "/v1/utility/endpoint?id=web/map",
        "docs_url": "https://www.socialcrawl.dev/platforms/web/map"
      }
    ]
  },
  "credits_used": 0,
  "request_id": "req_example000000",
  "cached": false
}

Synthetic fixture for the documented response shape. Values are illustrative, not a production capture.

API Details

How does the Utility Endpoints API work?

Send a GET request with your API key and get back clean, structured JSON in our unified schema. Supported computed fields are populated when the source provides the required inputs.

Method

GET

Response

JSON

Why SocialCrawl

Why use SocialCrawl for Utility Endpoints data?

We handle the complexity of Utility data extraction so you can focus on building. Unified schema, AI enrichment, and zero platform logic in your code.

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 46 platforms covering 10B+ monthly active users.

One schema, every platform

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

Computed fields, not just scraped

When an endpoint supports these metrics and the source provides the required inputs, the normalized record 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"
    }
  }
}
+ 46 platforms
FAQ

Have a question? We got answers

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

Contact us
What does GET /v1/utility/endpoints return?
A machine-readable catalog of every active SocialCrawl endpoint. Each entry carries the path, HTTP method, platform, credit cost, required and optional parameters, response archetype, and a how_to_use link to the per-endpoint usage guide, so one call maps the full 372-endpoint surface.
How much does the endpoint catalog cost?
Nothing: the call is free at 0 credits, like the other developer-experience endpoints (endpoint, quickstart, and llms). You still authenticate with your x-api-key, but browsing the catalog never spends credits, so tools and agents can call it as often as they like.
Can I filter the endpoint catalog?
Yes. Pass platform to scope the list to one platform slug (for example platform=tiktok), search for a case-insensitive substring match over paths and summaries, and method to keep only GET or POST endpoints. The three filters combine, which keeps agent context windows small.
How does the catalog stay accurate?
It is generated from the running endpoint registry on each request, the same registry the API router uses. New endpoints appear as soon as they ship, retired ones drop out, and the advertised credit costs match billing, so the catalog cannot drift from what is callable.
How do AI agents use the endpoint catalog?
As the discovery step of self-onboarding. An agent calls /v1/utility/endpoints to learn what exists, picks an entry, and follows its how_to_use link to /v1/utility/endpoint for exact parameters and a copy-paste request, without scraping documentation pages. The whole loop is free.

Ask AI about SocialCrawl

Ready to scrape Utility Endpoints data?

Get your API key and start pulling Utility data in under 60 seconds.

Start for free

🤖 AI agent or LLM? Read this page as markdown