LLM Top Pages

See which specific pages (not just domains) are most cited by AI platforms for your keywords. More granular than top sources — see exactly which URLs AI trusts.

When to use this

Top Sources tells you Yelp is cited a lot, but Top Pages tells you exactly which Yelp page. This helps you understand what content format and structure AI platforms prefer to cite.

POST/v1/ai/top-pages
Cost: 5 credits ($0.025)
Rate Limit: Varies by plan
Response: ~3-8 seconds

Parameters

ParameterTypeRequiredDescription
keywordstringYesKeyword to analyze
locationstringNoLocation (e.g. "Austin, TX"). Default: United States
platformsstring[]No["chat_gpt", "google"]. Default: both
limitintegerNoNumber of top pages to return (1-50, default: 10)

Example Request

curl -X POST https://api.localseodata.com/v1/ai/top-pages \
  -H "Authorization: Bearer sk_live_your_key" \
  -H "Content-Type: application/json" \
  -d '{"keyword": "plumber Austin", "location": "Austin, Texas", "limit": 10}'

Example Response

JSON
{
  "status": "success",
  "credits_used": 5,
  "data": {
    "keyword": "plumber Austin",
    "top_pages": [
      {
        "url": "https://yelp.com/search?find_desc=plumber&find_loc=Austin+TX",
        "domain": "yelp.com",
        "title": "Best Plumbers in Austin, TX - Yelp",
        "mentions": 32,
        "ai_search_volume": 1200
      },
      {
        "url": "https://homeadvisor.com/c.Plumbing.Austin.TX.html",
        "domain": "homeadvisor.com",
        "title": "Top Austin Plumbers",
        "mentions": 18,
        "ai_search_volume": 1200
      }
    ]
  }
}

Response Fields

FieldTypeDescription
urlstringFull URL of the cited page
domainstringDomain of the cited page
titlestringPage title
mentionsintegerHow many times this page is cited in AI responses
ai_search_volumeintegerTotal AI search volume for this keyword

Notes

  • Study the top-cited pages to understand what content structure AI platforms prefer.
  • If your page isn't here, analyze what the top pages have that yours doesn't.
  • More granular than /v1/ai/top-sources — use both together for a complete picture.