cURL
curl --request GET \
--url https://api.surnex.io/v1/dataforseo/catalog/bootstrap \
--header 'Authorization: Bearer <token>'import requests
url = "https://api.surnex.io/v1/dataforseo/catalog/bootstrap"
headers = {"Authorization": "Bearer <token>"}
response = requests.get(url, headers=headers)
print(response.text)const options = {method: 'GET', headers: {Authorization: 'Bearer <token>'}};
fetch('https://api.surnex.io/v1/dataforseo/catalog/bootstrap', 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.surnex.io/v1/dataforseo/catalog/bootstrap",
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.surnex.io/v1/dataforseo/catalog/bootstrap"
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.surnex.io/v1/dataforseo/catalog/bootstrap")
.header("Authorization", "Bearer <token>")
.asString();require 'uri'
require 'net/http'
url = URI("https://api.surnex.io/v1/dataforseo/catalog/bootstrap")
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{
"generated_at": "2026-02-24T00:00:00Z",
"discovery_context": {
"requested_discovery": true,
"force_refresh_requested": false,
"source": "provider",
"discovered_at": "2026-02-24T00:00:00Z",
"cache_key": "dataforseo:catalog:discovered:v1",
"cache_ttl_seconds": 900,
"cache_available": true,
"cache_hit": false,
"provider_calls": 4
},
"services": [
{
"service": "serp",
"category": "serp",
"title": "SERP API",
"description": "Search engine results across web and vertical engines",
"discovery_source": "mixed",
"operation_count": 12,
"discovered_operations": 3,
"static_operations": 9,
"sample_operations": [
"/serp/google/organic/live",
"/serp/google/organic/task_post",
"/serp/google/images/live"
]
},
{
"service": "keywords_data",
"category": "keyword_research",
"title": "Keywords Data",
"description": "Keyword research and metrics",
"discovery_source": "static",
"operation_count": 7,
"discovered_operations": 0,
"static_operations": 7,
"sample_operations": [
"/keywords_data/google_ads/search_volume/live",
"/keywords_data/google_trends/explore/live"
]
}
],
"totals": {
"total_services": 2,
"total_operations": 19,
"by_discovery_source": {
"static": 1,
"discovered": 0,
"mixed": 1
},
"by_operation_discovery_source": {
"static": 16,
"discovered": 3
}
},
"supports_custom_paths": true,
"supports_any_dataforseo_path": true
}{
"error": {
"code": "VALIDATION_ERROR",
"message": "Invalid request",
"request_id": "req_123",
"details": {
"issues": [
{
"path": [
"discovery_source"
],
"message": "Invalid discovery_source",
"code": "invalid_value"
}
]
}
}
}{
"error": {
"code": "UNAUTHORIZED",
"message": "Unauthorized",
"request_id": "req_123",
"details": {
"reason": "missing_or_invalid_api_key"
}
}
}{
"error": {
"code": "PROVIDER_ERROR",
"message": "Failed to discover DataForSEO operations",
"request_id": "req_123",
"details": {
"provider_error": {
"code": "BAD_REQUEST",
"message": "Discovery endpoint failed"
}
}
}
}v1
Get v1dataforseocatalogbootstrap
GET
/
v1
/
dataforseo
/
catalog
/
bootstrap
cURL
curl --request GET \
--url https://api.surnex.io/v1/dataforseo/catalog/bootstrap \
--header 'Authorization: Bearer <token>'import requests
url = "https://api.surnex.io/v1/dataforseo/catalog/bootstrap"
headers = {"Authorization": "Bearer <token>"}
response = requests.get(url, headers=headers)
print(response.text)const options = {method: 'GET', headers: {Authorization: 'Bearer <token>'}};
fetch('https://api.surnex.io/v1/dataforseo/catalog/bootstrap', 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.surnex.io/v1/dataforseo/catalog/bootstrap",
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.surnex.io/v1/dataforseo/catalog/bootstrap"
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.surnex.io/v1/dataforseo/catalog/bootstrap")
.header("Authorization", "Bearer <token>")
.asString();require 'uri'
require 'net/http'
url = URI("https://api.surnex.io/v1/dataforseo/catalog/bootstrap")
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{
"generated_at": "2026-02-24T00:00:00Z",
"discovery_context": {
"requested_discovery": true,
"force_refresh_requested": false,
"source": "provider",
"discovered_at": "2026-02-24T00:00:00Z",
"cache_key": "dataforseo:catalog:discovered:v1",
"cache_ttl_seconds": 900,
"cache_available": true,
"cache_hit": false,
"provider_calls": 4
},
"services": [
{
"service": "serp",
"category": "serp",
"title": "SERP API",
"description": "Search engine results across web and vertical engines",
"discovery_source": "mixed",
"operation_count": 12,
"discovered_operations": 3,
"static_operations": 9,
"sample_operations": [
"/serp/google/organic/live",
"/serp/google/organic/task_post",
"/serp/google/images/live"
]
},
{
"service": "keywords_data",
"category": "keyword_research",
"title": "Keywords Data",
"description": "Keyword research and metrics",
"discovery_source": "static",
"operation_count": 7,
"discovered_operations": 0,
"static_operations": 7,
"sample_operations": [
"/keywords_data/google_ads/search_volume/live",
"/keywords_data/google_trends/explore/live"
]
}
],
"totals": {
"total_services": 2,
"total_operations": 19,
"by_discovery_source": {
"static": 1,
"discovered": 0,
"mixed": 1
},
"by_operation_discovery_source": {
"static": 16,
"discovered": 3
}
},
"supports_custom_paths": true,
"supports_any_dataforseo_path": true
}{
"error": {
"code": "VALIDATION_ERROR",
"message": "Invalid request",
"request_id": "req_123",
"details": {
"issues": [
{
"path": [
"discovery_source"
],
"message": "Invalid discovery_source",
"code": "invalid_value"
}
]
}
}
}{
"error": {
"code": "UNAUTHORIZED",
"message": "Unauthorized",
"request_id": "req_123",
"details": {
"reason": "missing_or_invalid_api_key"
}
}
}{
"error": {
"code": "PROVIDER_ERROR",
"message": "Failed to discover DataForSEO operations",
"request_id": "req_123",
"details": {
"provider_error": {
"code": "BAD_REQUEST",
"message": "Discovery endpoint failed"
}
}
}
}Authorizations
bearerAuthapiKeyAuth
Authorization: Bearer sk_...
Query Parameters
Available options:
static, discovered, mixed Required string length:
1 - 128Service category used for grouping and filtering
Minimum string length:
1⌘I