Full SERP Analysis

Get complete Google search results — organic results, ads, People Also Ask, AI Overview, and Local Services Ads — for any keyword and location.

POST/v1/serp/organic
Cost: 1 credit ($0.005)
Rate Limit: Varies by plan
Response: ~2-5 seconds

Parameters

ParameterTypeRequiredDescription
keywordstringYesSearch keyword
locationstringYesCity and state
devicestringNo"desktop" or "mobile". Default: "desktop"
num_resultsintegerNoNumber of organic results. Default: 10

Example Request

curl -X POST https://api.localseodata.com/v1/serp/organic \
  -H "Authorization: Bearer sk_live_your_key" \
  -H "Content-Type: application/json" \
  -d '{"keyword": "dentist", "location": "Austin, TX"}'

Example Response

JSON
{
  "status": "success",
  "credits_used": 1,
  "organic": [
    { "position": 1, "title": "Best Dentists in Austin", "url": "https://..." }
  ],
  "ads": [],
  "people_also_ask": ["How much does a dentist visit cost?"],
  "ai_overview": "Austin has over 500 dental practices...",
  "local_services_ads": []
}

Response Fields

FieldTypeDescription
organicarrayOrganic search results with position, title, URL, snippet
adsarrayPaid search ads
people_also_askstring[]PAA questions
ai_overviewstringGoogle AI Overview text if present
local_services_adsarrayLSA listings if present

Notes

  • Includes all SERP features visible on the page.
  • Use with local-pack endpoint for complete local search picture.