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/organicCost: 1 credit ($0.005)
Rate Limit: Varies by plan
Response: ~2-5 seconds
Parameters
| Parameter | Type | Required | Description |
|---|---|---|---|
| keyword | string | Yes | Search keyword |
| location | string | Yes | City and state |
| device | string | No | "desktop" or "mobile". Default: "desktop" |
| num_results | integer | No | Number 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
| Field | Type | Description |
|---|---|---|
| organic | array | Organic search results with position, title, URL, snippet |
| ads | array | Paid search ads |
| people_also_ask | string[] | PAA questions |
| ai_overview | string | Google AI Overview text if present |
| local_services_ads | array | LSA listings if present |
Notes
- Includes all SERP features visible on the page.
- Use with local-pack endpoint for complete local search picture.