Creatordex API

A REST endpoint and an MCP server. Same index, same creators — across TikTok and Instagram. Your agent, your call.

Get your API key

Sign in to generate a Free discovery key with 100 calls per month. Pro includes 1,000 calls and contact emails; Enterprise scales to custom volume.

Quick start

Search creators

curl -X GET "https://creatordex.ai/api/v1/search?q=beauty+creators+in+LA&limit=10" \
  -H "X-API-Key: YOUR_API_KEY"

Get creator profile

curl -X GET "https://creatordex.ai/api/v1/creators/jenz_losangeles" \
  -H "X-API-Key: YOUR_API_KEY"

Database stats

curl -X GET "https://creatordex.ai/api/v1/stats" \
  -H "X-API-Key: YOUR_API_KEY"

Endpoints

GET/api/v1/search

Search creators by natural language query.

q (required) — Search query, e.g. "fitness creators in NYC under 50k"

limit (optional) — Max results, 1-50. Default 15.

offset (optional) — Skip results for pagination.

GET/api/v1/creators/:handle

Get full profile for a specific creator.

handle (required) — Creator handle without the @ symbol

platform (optional) — tiktok or instagram. Required when the same handle exists on both.

GET/api/v1/creators/:handle/similar

Expand a shortlist with creators similar to a known match.

GET/api/v1/nichesuncapped

List the live niche taxonomy and creator counts.

GET/api/v1/statsuncapped

Get catalog size, platforms covered, and snapshot time.

GET/api/v1/usage

Check this key's monthly usage, limit, and remaining calls.

All endpoints use the X-API-Key header and return stable JSON error codes. Every creator includes a permanent creator_id and a profile-level last_refreshed_at timestamp. See the full reference for response schemas, pagination, quotas, CORS, and retry guidance.

What's included

API + MCP access is bundled with Pro — no separate per-call billing. Need higher volume? Enterprise scales further. Same index, same creators, same freshness.

Pro — $249/mo

1,000

API/MCP calls per month

Plus 1,000 profile opens a month, a 1,000-creator watchlist, push to Instantly / Apollo / Lemlist / Smartlead / HubSpot / Gmail, and daily saved-search alerts.

Enterprise — talk to us

Custom

API/MCP volume at scale

For teams and companies — higher call volume, multiple seats, and dedicated support. Get in touch.

Need higher volume or team access? Talk to us about an Enterprise plan.

MCP server

Use Creatordex as a tool in Claude Desktop, Cursor, Windsurf, Zed, or any MCP-aware agent. Same creator index as the REST API, same key, same cap — five tools: search_creators, get_creator, find_similar, list_niches, get_stats.

Add to your MCP config:

{
  "mcpServers": {
    "creatordex": {
      "command": "npx",
      "args": ["-y", "@creatordex/mcp"],
      "env": {
        "CREATORDEX_API_KEY": "YOUR_API_KEY"
      }
    }
  }
}

list_niches and get_stats are uncapped — agents can ground themselves at session start without burning quota. Every other call counts once against your monthly limit, whether made via MCP or REST.