Skip to main content
API
Available on Full Domination
1 min read

API overview

REST endpoints, bearer auth, and rate limits for the Full Domination tier.

Last updated May 8, 2026

Base URL

https://api.aidomination.app/v1

Authentication

All requests require a bearer token in the Authorization header:

Authorization: Bearer ad_live_xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx

See API keys for how to create one.

Rate limits

Tier Requests / minute Requests / day
Domination 120 50,000

Every response includes X-RateLimit-Limit, X-RateLimit-Remaining, and X-RateLimit-Reset headers.

Endpoints

Method Path Description
GET /companies List companies in your workspace.
GET /companies/{id} Get a single company.
GET /audits List recent audits. Filter by ?companyId=.
GET /audits/{id} Get a full audit report.
GET /audits/{id}/scores Just the six dimension scores.
GET /content List content items. Filter by ?status= or ?type=.
GET /content/{id} Get a single content item.
GET /mentions Brand-mention monitoring results.
GET /visibility/prompts Prompt-rank table for a company.

Write endpoints (POST, PATCH, DELETE) are on the roadmap — see /roadmap.

Errors

All errors return JSON:

{
  "error": {
    "code": "rate_limited",
    "message": "Too many requests. Retry after 32s.",
    "retryAfterSec": 32
  }
}

Versioning

The current version is v1. Breaking changes ship under v2 and v1 is supported for at least 12 months after.

Was this article helpful?

Related docs

API overview · AI Domination