Skip to main content
The CreatorAudit API serves everything in the dashboard over REST, so you can pull analytics into your own tools, pipelines, and agents. This section gets you consuming it; for the full endpoint catalog and an interactive playground, see the API reference.

Prerequisites

  • A CreatorAudit account. Sign up if you don’t have one.
  • An API key, which you’ll create below.

1. Create an API key

Open the API keys page in the dashboard, create a key, and copy it — it’s shown only once. A key is scoped to your organization; keep it secret and server-side.

2. Authenticate

Send the key as a bearer token on every request, and confirm it with whoami:
curl https://api.creatoraudit.com/v2/whoami \
  -H "Authorization: Bearer YOUR_API_KEY"
whoami echoes the organization your key belongs to.

3. Read some data

curl "https://api.creatoraudit.com/v2/accounts?limit=20" \
  -H "Authorization: Bearer YOUR_API_KEY"
Responses are JSON envelopes — { data, pagination } for collections and { data } for a single resource.

Then

Code examples

Runnable cURL, Python, and TypeScript clients.

Conventions

Auth, pagination, filtering, errors, rate limits, and versioning.

API reference

Every endpoint with a live playground.

Build with agents

Turn the API into tools an AI agent can call.