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

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.

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/stats

Get database stats: total creators, platforms covered, top niches.

What's included

API + MCP access is bundled with Pro and Agency — no separate per-call billing. 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.

Agency — $599/mo

10,000

API/MCP calls per month

Plus unlimited profile opens and watchlist, 5 team seats included, and dedicated support.

Need more than 10,000/mo? Email support@creatordex.ai for a volume 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.