AI Visibility Score

Check how visible your domain is across AI platforms for your target keywords. Get mention counts, impression estimates, and ranking among competing domains.

When to use this

You want a score that tells you how visible your website is in AI-generated answers. Think of it like a Google ranking, but for ChatGPT and Google AI. Track it monthly to see if your AI visibility is growing or shrinking.

POST/v1/ai/visibility
Cost: 10 credits ($0.05)
Rate Limit: Varies by plan
Response: ~5-10 seconds

Parameters

ParameterTypeRequiredDescription
domainstringYesYour domain to check
keywordsstring[]YesKeywords to check (max 10)
locationstringNoLocation (e.g. "Austin, TX"). Default: United States
platformsstring[]No["chat_gpt", "google"]. Default: both

Example Request

curl -X POST https://api.localseodata.com/v1/ai/visibility \
  -H "Authorization: Bearer sk_live_your_key" \
  -H "Content-Type: application/json" \
  -d '{
    "domain": "abcplumbing.com",
    "keywords": ["plumber austin", "emergency plumber austin"],
    "location": "Austin, Texas",
    "platforms": ["chat_gpt", "google"]
  }'

Example Response

JSON
{
  "status": "success",
  "credits_used": 10,
  "data": {
    "domain": "abcplumbing.com",
    "total_mentions": 8,
    "total_impressions": 3400,
    "ai_search_volume": 12500,
    "platform_breakdown": {
      "chat_gpt": { "mentions": 5, "ai_search_volume": 7200, "impressions": 2200 },
      "google": { "mentions": 3, "ai_search_volume": 5300, "impressions": 1200 }
    },
    "top_sources": [
      { "domain": "yelp.com", "mentions": 12, "impressions": 8500 },
      { "domain": "homeadvisor.com", "mentions": 8, "impressions": 4200 }
    ]
  }
}

Response Fields

FieldTypeDescription
total_mentionsintegerTotal times your domain is mentioned across all platforms
total_impressionsintegerTotal AI impressions
ai_search_volumeintegerCombined AI search volume across platforms
platform_breakdownobjectPer-platform metrics (mentions, ai_search_volume, impressions)
top_sourcesarrayTop domains cited alongside your domain

Notes

  • This is the AI equivalent of checking your Google rankings — but for ChatGPT and Google AI.
  • Run monthly to track your AI visibility over time.
  • top_sources shows which domains AI considers authoritative alongside yours.