Keyword performance changes
curl --request GET \
--url https://api.snowseo.com/v3/rank-tracking/keyword-changes \
--header 'Authorization: Bearer <token>'import requests
url = "https://api.snowseo.com/v3/rank-tracking/keyword-changes"
headers = {"Authorization": "Bearer <token>"}
response = requests.get(url, headers=headers)
print(response.text)const options = {method: 'GET', headers: {Authorization: 'Bearer <token>'}};
fetch('https://api.snowseo.com/v3/rank-tracking/keyword-changes', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));<?php
$curl = curl_init();
curl_setopt_array($curl, [
CURLOPT_URL => "https://api.snowseo.com/v3/rank-tracking/keyword-changes",
CURLOPT_RETURNTRANSFER => true,
CURLOPT_ENCODING => "",
CURLOPT_MAXREDIRS => 10,
CURLOPT_TIMEOUT => 30,
CURLOPT_HTTP_VERSION => CURL_HTTP_VERSION_1_1,
CURLOPT_CUSTOMREQUEST => "GET",
CURLOPT_HTTPHEADER => [
"Authorization: Bearer <token>"
],
]);
$response = curl_exec($curl);
$err = curl_error($curl);
curl_close($curl);
if ($err) {
echo "cURL Error #:" . $err;
} else {
echo $response;
}package main
import (
"fmt"
"net/http"
"io"
)
func main() {
url := "https://api.snowseo.com/v3/rank-tracking/keyword-changes"
req, _ := http.NewRequest("GET", url, nil)
req.Header.Add("Authorization", "Bearer <token>")
res, _ := http.DefaultClient.Do(req)
defer res.Body.Close()
body, _ := io.ReadAll(res.Body)
fmt.Println(string(body))
}HttpResponse<String> response = Unirest.get("https://api.snowseo.com/v3/rank-tracking/keyword-changes")
.header("Authorization", "Bearer <token>")
.asString();require 'uri'
require 'net/http'
url = URI("https://api.snowseo.com/v3/rank-tracking/keyword-changes")
http = Net::HTTP.new(url.host, url.port)
http.use_ssl = true
request = Net::HTTP::Get.new(url)
request["Authorization"] = 'Bearer <token>'
response = http.request(request)
puts response.read_body{
"rising": [
{
"keyword": "<string>",
"clicks": 123,
"impressions": 123,
"position": 123,
"clicksChange": 123,
"impressionsChange": 123,
"positionChange": 123,
"previousPosition": 123,
"previousClicks": 123,
"previousImpressions": 123,
"pages": 123,
"rankedPages": [
{
"page": "<string>",
"clicks": 123,
"impressions": 123,
"ctr": 123,
"position": 123,
"clicksChange": 123,
"impressionsChange": 123,
"ctrChange": 123,
"positionChange": 123
}
]
}
],
"falling": [
{
"keyword": "<string>",
"clicks": 123,
"impressions": 123,
"position": 123,
"clicksChange": 123,
"impressionsChange": 123,
"positionChange": 123,
"previousPosition": 123,
"previousClicks": 123,
"previousImpressions": 123,
"pages": 123,
"rankedPages": [
{
"page": "<string>",
"clicks": 123,
"impressions": 123,
"ctr": 123,
"position": 123,
"clicksChange": 123,
"impressionsChange": 123,
"ctrChange": 123,
"positionChange": 123
}
]
}
],
"new": [
{
"keyword": "<string>",
"clicks": 123,
"impressions": 123,
"position": 123,
"clicksChange": 123,
"impressionsChange": 123,
"positionChange": 123,
"previousPosition": 123,
"previousClicks": 123,
"previousImpressions": 123,
"pages": 123,
"rankedPages": [
{
"page": "<string>",
"clicks": 123,
"impressions": 123,
"ctr": 123,
"position": 123,
"clicksChange": 123,
"impressionsChange": 123,
"ctrChange": 123,
"positionChange": 123
}
]
}
],
"lost": [
{
"keyword": "<string>",
"clicks": 123,
"impressions": 123,
"position": 123,
"clicksChange": 123,
"impressionsChange": 123,
"positionChange": 123,
"previousPosition": 123,
"previousClicks": 123,
"previousImpressions": 123,
"pages": 123,
"rankedPages": [
{
"page": "<string>",
"clicks": 123,
"impressions": 123,
"ctr": 123,
"position": 123,
"clicksChange": 123,
"impressionsChange": 123,
"ctrChange": 123,
"positionChange": 123
}
]
}
],
"categories": [
{
"key": "<string>",
"label": "<string>",
"count": 123
}
]
}{
"success": true,
"error": "<string>"
}{
"success": true,
"error": "<string>"
}Rank Tracking
Keyword Changes
See which tracked keywords moved up or down in search rankings.
GET
/
v3
/
rank-tracking
/
keyword-changes
Keyword performance changes
curl --request GET \
--url https://api.snowseo.com/v3/rank-tracking/keyword-changes \
--header 'Authorization: Bearer <token>'import requests
url = "https://api.snowseo.com/v3/rank-tracking/keyword-changes"
headers = {"Authorization": "Bearer <token>"}
response = requests.get(url, headers=headers)
print(response.text)const options = {method: 'GET', headers: {Authorization: 'Bearer <token>'}};
fetch('https://api.snowseo.com/v3/rank-tracking/keyword-changes', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));<?php
$curl = curl_init();
curl_setopt_array($curl, [
CURLOPT_URL => "https://api.snowseo.com/v3/rank-tracking/keyword-changes",
CURLOPT_RETURNTRANSFER => true,
CURLOPT_ENCODING => "",
CURLOPT_MAXREDIRS => 10,
CURLOPT_TIMEOUT => 30,
CURLOPT_HTTP_VERSION => CURL_HTTP_VERSION_1_1,
CURLOPT_CUSTOMREQUEST => "GET",
CURLOPT_HTTPHEADER => [
"Authorization: Bearer <token>"
],
]);
$response = curl_exec($curl);
$err = curl_error($curl);
curl_close($curl);
if ($err) {
echo "cURL Error #:" . $err;
} else {
echo $response;
}package main
import (
"fmt"
"net/http"
"io"
)
func main() {
url := "https://api.snowseo.com/v3/rank-tracking/keyword-changes"
req, _ := http.NewRequest("GET", url, nil)
req.Header.Add("Authorization", "Bearer <token>")
res, _ := http.DefaultClient.Do(req)
defer res.Body.Close()
body, _ := io.ReadAll(res.Body)
fmt.Println(string(body))
}HttpResponse<String> response = Unirest.get("https://api.snowseo.com/v3/rank-tracking/keyword-changes")
.header("Authorization", "Bearer <token>")
.asString();require 'uri'
require 'net/http'
url = URI("https://api.snowseo.com/v3/rank-tracking/keyword-changes")
http = Net::HTTP.new(url.host, url.port)
http.use_ssl = true
request = Net::HTTP::Get.new(url)
request["Authorization"] = 'Bearer <token>'
response = http.request(request)
puts response.read_body{
"rising": [
{
"keyword": "<string>",
"clicks": 123,
"impressions": 123,
"position": 123,
"clicksChange": 123,
"impressionsChange": 123,
"positionChange": 123,
"previousPosition": 123,
"previousClicks": 123,
"previousImpressions": 123,
"pages": 123,
"rankedPages": [
{
"page": "<string>",
"clicks": 123,
"impressions": 123,
"ctr": 123,
"position": 123,
"clicksChange": 123,
"impressionsChange": 123,
"ctrChange": 123,
"positionChange": 123
}
]
}
],
"falling": [
{
"keyword": "<string>",
"clicks": 123,
"impressions": 123,
"position": 123,
"clicksChange": 123,
"impressionsChange": 123,
"positionChange": 123,
"previousPosition": 123,
"previousClicks": 123,
"previousImpressions": 123,
"pages": 123,
"rankedPages": [
{
"page": "<string>",
"clicks": 123,
"impressions": 123,
"ctr": 123,
"position": 123,
"clicksChange": 123,
"impressionsChange": 123,
"ctrChange": 123,
"positionChange": 123
}
]
}
],
"new": [
{
"keyword": "<string>",
"clicks": 123,
"impressions": 123,
"position": 123,
"clicksChange": 123,
"impressionsChange": 123,
"positionChange": 123,
"previousPosition": 123,
"previousClicks": 123,
"previousImpressions": 123,
"pages": 123,
"rankedPages": [
{
"page": "<string>",
"clicks": 123,
"impressions": 123,
"ctr": 123,
"position": 123,
"clicksChange": 123,
"impressionsChange": 123,
"ctrChange": 123,
"positionChange": 123
}
]
}
],
"lost": [
{
"keyword": "<string>",
"clicks": 123,
"impressions": 123,
"position": 123,
"clicksChange": 123,
"impressionsChange": 123,
"positionChange": 123,
"previousPosition": 123,
"previousClicks": 123,
"previousImpressions": 123,
"pages": 123,
"rankedPages": [
{
"page": "<string>",
"clicks": 123,
"impressions": 123,
"ctr": 123,
"position": 123,
"clicksChange": 123,
"impressionsChange": 123,
"ctrChange": 123,
"positionChange": 123
}
]
}
],
"categories": [
{
"key": "<string>",
"label": "<string>",
"count": 123
}
]
}{
"success": true,
"error": "<string>"
}{
"success": true,
"error": "<string>"
}Find out which of your tracked keywords improved or dropped in position. Great for daily or weekly monitoring to catch ranking shifts early.
Key fields
| Field | What It Tells You |
|---|---|
rising | Keywords that moved closer to position #1 |
falling | Keywords that dropped in position |
new | Keywords that just started ranking |
lost | Keywords that fell off the rankings entirely |
categories | Groupings of keyword changes by topic |
A positive
positionChange means the keyword moved closer to position #1 (good). A negative positionChange means it dropped.Authorizations
Bearer authentication header of the form Bearer <token>, where <token> is your auth token.
Query Parameters
Team ID
Start date (YYYY-MM-DD, UTC)
End date (YYYY-MM-DD, UTC)
Max results per category
Device filter
Search type filter
Country filter
Keyword universe: all (GSC + tracked), ranked (GSC only), tracked (tracked only). Defaults to all.
Available options:
all, ranked, tracked Was this page helpful?
⌘I

