Creatordex API

Search thousands of TikTok creators programmatically. Build creator discovery into your app, agent, or workflow.

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 — TikTok handle without the @ symbol

GET/api/v1/stats

Get database statistics (total creators, platform, last updated).

Pricing

Free

100

calls per month

All endpoints included. No credit card required.

Pay as you go

$0.02

per search call after free tier

$0.01/profile lookup · $0.05/contact reveal · Volume discounts available.

MCP Server

Use Creatordex as a tool in Claude, GPT, or any AI agent via the Model Context Protocol.

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

Coming soon to npm. 5 tools: search_creators, get_creator, find_similar, list_niches, get_stats.