curl --request GET \
--url https://api.rankspot.ai/v1/keywords \
--header 'Authorization: Bearer <token>'import requests
url = "https://api.rankspot.ai/v1/keywords"
headers = {"Authorization": "Bearer <token>"}
response = requests.get(url, headers=headers)
print(response.text)const options = {method: 'GET', headers: {Authorization: 'Bearer <token>'}};
fetch('https://api.rankspot.ai/v1/keywords', 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.rankspot.ai/v1/keywords",
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.rankspot.ai/v1/keywords"
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.rankspot.ai/v1/keywords")
.header("Authorization", "Bearer <token>")
.asString();require 'uri'
require 'net/http'
url = URI("https://api.rankspot.ai/v1/keywords")
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{
"data": {
"total": 100,
"offset": 0,
"limit": 100,
"count": 10,
"items": [
{
"id": "clx...",
"keyword": "start blog",
"competition": "MEDIUM",
"competitionIndex": 60,
"searchVolume": 27100,
"opportunityIndex": 10,
"aiScore": 74,
"compositeScore": 68,
"actionIds": [
"clx..."
],
"articleIds": [
"clx..."
],
"createdAt": "2026-09-03T13:49:20.226Z",
"updatedAt": "2026-09-03T13:49:20.226Z",
"competitorId": "clx..."
}
]
}
}List keywords
Returns a paginated list of keywords. Defaults to the worklist: keywords with no article planned and none written (type=new), the same default the searches list uses. State is derived from the actions and articles linked to the keyword, so it moves on its own. Pass type=planned, type=processed, type=all for every non-archived keyword, or type=archived. Filter by keyword substring or competitorId. Sort by any scored field.
curl --request GET \
--url https://api.rankspot.ai/v1/keywords \
--header 'Authorization: Bearer <token>'import requests
url = "https://api.rankspot.ai/v1/keywords"
headers = {"Authorization": "Bearer <token>"}
response = requests.get(url, headers=headers)
print(response.text)const options = {method: 'GET', headers: {Authorization: 'Bearer <token>'}};
fetch('https://api.rankspot.ai/v1/keywords', 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.rankspot.ai/v1/keywords",
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.rankspot.ai/v1/keywords"
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.rankspot.ai/v1/keywords")
.header("Authorization", "Bearer <token>")
.asString();require 'uri'
require 'net/http'
url = URI("https://api.rankspot.ai/v1/keywords")
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{
"data": {
"total": 100,
"offset": 0,
"limit": 100,
"count": 10,
"items": [
{
"id": "clx...",
"keyword": "start blog",
"competition": "MEDIUM",
"competitionIndex": 60,
"searchVolume": 27100,
"opportunityIndex": 10,
"aiScore": 74,
"compositeScore": 68,
"actionIds": [
"clx..."
],
"articleIds": [
"clx..."
],
"createdAt": "2026-09-03T13:49:20.226Z",
"updatedAt": "2026-09-03T13:49:20.226Z",
"competitorId": "clx..."
}
]
}
}Authorizations
Bearer authentication header of the form Bearer <token>, where <token> is your auth token.
Query Parameters
x >= 01 <= x <= 100Filter by keyword substring
Filter by competitor ID
opportunityIndex, competitionIndex, searchVolume, compositeScore, aiScore asc, desc new: the worklist, no article planned and none written (default) | planned: has a write_article action but no article yet | processed: has a linked article | all: every non-archived keyword | archived: archived keywords
all, planned, processed, new, archived Response
Hide child attributes
Hide child attributes
100
0
100
10
Hide child attributes
Hide child attributes
"clx..."
"start blog"
"MEDIUM"
60
27100
10
74
68
["clx..."]
["clx..."]
"2026-09-03T13:49:20.226Z"
"2026-09-03T13:49:20.226Z"
"clx..."
