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/overview

Query parameters

ParameterTypeDescription
keywordrequiredstringThe keyword to fetch the SERP for.
countrystring2-letter ISO country code. Defaults to `us`.
languagestring2-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
ParameterTypeDescription
positionintegerOrganic rank position (1-based).
titlestringResult title as shown on the SERP.
urlstringThe ranking page URL.
domainstringThe result's domain.
metrics.domain_ratingintegerDomain authority, 0-100.
metrics.page_authorityintegerPage-level authority, 0-100.
metrics.referring_domainsintegerUnique domains linking to the page.
serp_featuresstring[]SERP features present, e.g. `featured_snippet`, `people_also_ask`, `videos`.