Skip to main content
POST
/
api
/
v1
/
ai-access
/
check
Check AI accessibility for a domain
curl --request POST \
  --url https://api.athenahq.ai/api/v1/ai-access/check \
  --header 'Content-Type: application/json' \
  --header 'x-api-key: <api-key>' \
  --data '
{
  "domain": "example.com"
}
'
{
  "result": {
    "domain": "<string>",
    "status": "accessible",
    "checkedAt": "2023-11-07T05:31:56Z",
    "http": {
      "chatgpt": {
        "conversational": true,
        "training": true
      },
      "claude": {
        "conversational": true,
        "training": true
      },
      "perplexity": {
        "conversational": true,
        "training": true
      },
      "gemini": {
        "conversational": true,
        "training": true
      },
      "copilot": {
        "conversational": true,
        "training": true
      },
      "grok": {
        "conversational": true,
        "training": true
      },
      "deepseek": {
        "conversational": true,
        "training": true
      },
      "rufus": {
        "conversational": true,
        "training": true
      }
    },
    "robots": {
      "chatgpt": {
        "conversational": true,
        "training": true
      },
      "claude": {
        "conversational": true,
        "training": true
      },
      "perplexity": {
        "conversational": true,
        "training": true
      },
      "gemini": {
        "conversational": true,
        "training": true
      },
      "copilot": {
        "conversational": true,
        "training": true
      },
      "grok": {
        "conversational": true,
        "training": true
      },
      "deepseek": {
        "conversational": true,
        "training": true
      },
      "rufus": {
        "conversational": true,
        "training": true
      }
    },
    "hasSitemap": true,
    "error": "<string>"
  },
  "diagnostics": {
    "userAgentChecks": {},
    "robotsCheck": {
      "url": "<string>",
      "status": 123,
      "finalUrl": "<string>",
      "headers": {},
      "errorCode": "<string>",
      "errorMessage": "<string>",
      "durationMs": 123,
      "checkedAt": "2023-11-07T05:31:56Z",
      "source": "direct"
    }
  },
  "log": "<string>"
}

Documentation Index

Fetch the complete documentation index at: https://docs.athenahq.ai/llms.txt

Use this file to discover all available pages before exploring further.

Authorizations

x-api-key
string
header
required

API key for authentication. You can create one here.

Body

application/json
domain
string
required

The domain to probe (with or without protocol).

Example:

"example.com"

Response

Successful AI access check.

Successful AI access check response.

result
object
required

Aggregated AI accessibility result. Mirrors the AIAccessibilityResult shape rendered in the AthenaHQ web app's AI accessibility dialog.

diagnostics
object
required

Per-request diagnostic fingerprint. Useful for filing host or CDN tickets.

log
string
required

Plain-text diagnostic log shaped for a host/CDN ticket. Identical to the string the AthenaHQ web app's Copy log button produces.