Skip to content
AuditMii
Public API — early access

Engineer the future of AEO

The Auditmii developer API lets engineering teams pull AEO audit results, AI visibility scores, and readiness metrics into internal dashboards, CI checks, and content workflows. Authenticate with a workspace API key, call project endpoints for scores and fixes, and keep generative-search monitoring beside the systems you already operate — without rebuilding crawl or scoring logic yourself. Early-access keys are scoped to a workspace, can be rotated from settings, and work with the same project identifiers you see in the Auditmii dashboard.

Getting started

Follow these steps to authenticate your environment and start querying the AEO command center.

1

Generate API keys

Navigate to Settings > API Management. Click "Generate new secret key". Store this securely — it won't be shown again.

Go to API settings
2

Authenticate your requests

Send the key as a bearer token on every request. Keys are scoped to your workspace and can be revoked at any time.

3

Query visibility scores

Use the endpoint below to retrieve audits, visibility scores, fixes, and content directly into your own tools.

Need help?

Reach out and our team will help you get set up with the API.

Contact developer support
curl -X GET "https://api.auditmii.com/api/projects/{project_id}/visibility/scores" \
  -H "Authorization: Bearer $AUDITMII_API_KEY"
Expected response
{
  "status": "success",
  "project_id": "prj_8f2c...",
  "overall_score": 84,
  "engines": {
    "chatgpt": 88,
    "claude": 81,
    "gemini": 79,
    "perplexity": 87
  },
  "updated_at": "2026-07-18T09:12:00Z"
}
Real-time analysis

Query live AI results with minimal latency as soon as a scan completes.

Secure sandboxing

Each key is tied to a workspace and can be revoked instantly from settings.

Full API documentation

Explore authenticated endpoints, request schemas, and interactive examples in our OpenAPI docs.

Open API docs