Skip to main content
GET
/
seo
/
serp-analysis
SERP features analysis
curl --request GET \
  --url https://ai.wisepilot.app/api/v1/seo/serp-analysis \
  --header 'Authorization: Bearer <token>'
{
  "success": true,
  "data": {
    "keyword": "<string>",
    "features": [
      "<string>"
    ],
    "topResults": [
      {
        "position": 123,
        "url": "<string>",
        "title": "<string>"
      }
    ]
  }
}

Authorizations

Authorization
string
header
required

API key prefixed with cr_ (e.g. cr_a1b2c3...)

Query Parameters

website_id
string<uuid>

Website ID. Auto-resolved if key has single website scope.

keyword
string
required

Keyword to analyze

country
string
default:us

Response

SERP analysis

success
boolean
required
data
object