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-pagesCost: 5 credits ($0.025)
Rate Limit: Varies by plan
Response: ~3-8 seconds
Parameters
| Parameter | Type | Required | Description |
|---|---|---|---|
| keyword | string | Yes | Keyword to analyze |
| location | string | No | Location (e.g. "Austin, TX"). Default: United States |
| platforms | string[] | No | ["chat_gpt", "google"]. Default: both |
| limit | integer | No | Number 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
| Field | Type | Description |
|---|---|---|
| url | string | Full URL of the cited page |
| domain | string | Domain of the cited page |
| title | string | Page title |
| mentions | integer | How many times this page is cited in AI responses |
| ai_search_volume | integer | Total 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.