Skip to main content
POST
/
rank-tracking
/
keywords
Add Tracked Keyword
curl --request POST \
  --url https://v3-api-beta.snowseo.com/snowseo/v2/rank-tracking/keywords \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --data '
{
  "teamId": "<string>",
  "keyword": "<string>",
  "countryId": "<string>"
}
'
Start tracking a new keyword for your team.

Request

teamId
string
required
Your team ID.
keyword
string
required
The keyword to start tracking.
countryId
string
Target country code (e.g., 2840 for US).

Response

{
  "success": true,
  "id": "kw_abc12345"
}