Skip to main content
POST
/
v3
/
rank-tracking
/
keywords
Add one or more tracked keywords
curl --request POST \
  --url https://api.snowseo.com/v3/rank-tracking/keywords \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --data '
{
  "teamId": "<string>",
  "keyword": "<string>",
  "countryId": "<string>",
  "languageId": "<string>",
  "items": [
    {
      "keyword": "<string>",
      "countryId": "<string>",
      "languageId": "<string>"
    }
  ]
}
'
{
  "success": true,
  "requested": 123,
  "alreadyTracked": 123,
  "reactivated": 123,
  "created": 123
}
Start tracking a new keyword for your team.

Authorizations

Authorization
string
header
required

Bearer authentication header of the form Bearer <token>, where <token> is your auth token.

Body

application/json
teamId
string

Team ID

keyword
string

Keyword to track

countryId
string | null

Country ID (ISO2) or null for worldwide

languageId
string | null

Language ID or null for default

items
object[]

Batch of keywords to track

Response

Default Response

success
boolean
requested
number
alreadyTracked
number
reactivated
number
created
number