SERP overview
Returns the current top organic search results for a keyword, each annotated with domain authority metrics, plus the SERP features present, the People Also Ask questions and the related searches.
GET
/serp/overviewQuery parameters
| Parameter | Type | Description |
|---|---|---|
keywordrequired | string | The keyword to fetch the SERP for. |
country | string | 2-letter ISO country code. Defaults to `us`. |
language | string | 2-letter ISO language code. Defaults to `en`. |
Example request
cURL
curl "https://api.oneclickseo.ai/v1/serp/overview?keyword=best%20crm&country=us" \
-H "Authorization: Bearer YOUR_API_KEY"Response
200SERP overview
Response
{
"data": {
"keyword": "best crm",
"results": [
{
"position": 1,
"title": "12 Best CRM Software (2026)",
"url": "https://example.com/best-crm",
"domain": "example.com",
"description": "Our team tested 30 CRMs...",
"metrics": {
"domain_rating": 84,
"page_authority": 52,
"referring_domains": 1290
}
}
],
"serp_features": ["featured_snippet", "people_also_ask", "videos"],
"people_also_ask": [
{ "question": "Which CRM is best for small business?", "answer": "..." }
],
"related_searches": ["free crm", "crm for startups"]
},
"meta": { "request_id": "req_8f2c1a", "credits_charged": 1 }
}Result fields
| Parameter | Type | Description |
|---|---|---|
position | integer | Organic rank position (1-based). |
title | string | Result title as shown on the SERP. |
url | string | The ranking page URL. |
domain | string | The result's domain. |
metrics.domain_rating | integer | Domain authority, 0-100. |
metrics.page_authority | integer | Page-level authority, 0-100. |
metrics.referring_domains | integer | Unique domains linking to the page. |
serp_features | string[] | SERP features present, e.g. `featured_snippet`, `people_also_ask`, `videos`. |