Skip to main content
POST
/
seo
/
keyword-ideas
Keyword expansion
curl --request POST \
  --url https://ai.wisepilot.app/api/v1/seo/keyword-ideas \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --data '
{
  "website_id": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
  "seed_keywords": [
    "<string>"
  ],
  "country": "us",
  "limit": 50
}
'
{
  "success": true,
  "data": {
    "keywords": [
      {
        "keyword": "<string>",
        "volume": 123,
        "difficulty": 123,
        "cpc": 123
      }
    ]
  }
}

Authorizations

Authorization
string
header
required

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

Body

application/json
website_id
string<uuid>
required
seed_keywords
string[]
required
Required array length: 1 - 10 elements
country
string
default:us
limit
integer
default:50
Required range: x <= 200

Response

Keyword ideas

success
boolean
required
data
object