cURL
curl --request GET \
--url https://api.surnex.io/v1/dataforseo/catalog/services/{service} \
--header 'Authorization: Bearer <token>'import requests
url = "https://api.surnex.io/v1/dataforseo/catalog/services/{service}"
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/services/{service}', 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/services/{service}",
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/services/{service}"
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/services/{service}")
.header("Authorization", "Bearer <token>")
.asString();require 'uri'
require 'net/http'
url = URI("https://api.surnex.io/v1/dataforseo/catalog/services/{service}")
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",
"service": {
"service": "serp",
"category": "serp",
"title": "SERP API",
"description": "Search engine results across web and vertical engines",
"discovery_source": "mixed",
"examples": [
"google",
"bing"
],
"operations": [
{
"service": "serp",
"operation_path": "/serp/google/organic/live",
"path_template": "/serp/{se}/{type}/live",
"method": "POST",
"mode": "live",
"description": "Live organic SERP results",
"discovery_source": "static"
},
{
"service": "serp",
"operation_path": "/serp/unknown/visibility/live",
"path_template": "/serp/unknown/visibility/live",
"method": "POST",
"mode": "live",
"description": "Discovered DataForSEO endpoint for serp",
"discovery_source": "discovered"
}
]
},
"summary": {
"total_operations": 2,
"by_discovery_source": {
"static": 1,
"discovered": 1
},
"by_method": {
"GET": 0,
"POST": 2
},
"by_mode": {
"live": 2,
"task_post": 0,
"task_get": 0,
"tasks_ready": 0,
"tasks_fixed": 0
}
},
"groups": {
"method": {
"GET": [
{
"service": "serp",
"operation_path": "/serp/{group}/task_get",
"path_template": "/serp/{provider}/{group}/task_get",
"method": "GET",
"mode": "task_get",
"description": "Task get sample",
"discovery_source": "static"
}
],
"POST": [
{
"service": "serp",
"operation_path": "/serp/google/organic/live",
"path_template": "/serp/{se}/{type}/live",
"method": "POST",
"mode": "live",
"description": "Live organic SERP results",
"discovery_source": "static"
}
]
},
"mode": {
"live": [
{
"service": "serp",
"operation_path": "/serp/google/organic/live",
"path_template": "/serp/{se}/{type}/live",
"method": "POST",
"mode": "live",
"description": "Live organic SERP results",
"discovery_source": "static"
}
],
"task_get": [
{
"service": "serp",
"operation_path": "/serp/{group}/task_get",
"path_template": "/serp/{provider}/{group}/task_get",
"method": "GET",
"mode": "task_get",
"description": "Task get sample",
"discovery_source": "static"
}
]
}
},
"limit": 100,
"offset": 0,
"returned": 2,
"has_more": false,
"next_offset": null,
"supports_custom_paths": true,
"supports_any_dataforseo_path": true,
"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_hit": false,
"cache_available": true,
"provider_calls": 1
}
}{
"error": {
"code": "VALIDATION_ERROR",
"message": "Invalid request",
"request_id": "req_123",
"details": {
"issues": [
{
"path": [
"service"
],
"message": "invalid service name",
"code": "invalid_string"
}
]
}
}
}{
"error": {
"code": "UNAUTHORIZED",
"message": "Unauthorized",
"request_id": "req_123",
"details": {
"reason": "missing_or_invalid_api_key"
}
}
}{
"error": {
"code": "NOT_FOUND",
"message": "Service not found",
"request_id": "req_123",
"details": {
"service": "unknown"
}
}
}{
"error": {
"code": "PROVIDER_ERROR",
"message": "Failed to discover DataForSEO operations",
"request_id": "req_123",
"details": {
"service": "serp",
"provider_error": {
"code": "BAD_REQUEST",
"message": "Discovery endpoint failed"
}
}
}
}v1
Get v1dataforseocatalogservices
GET
/
v1
/
dataforseo
/
catalog
/
services
/
{service}
cURL
curl --request GET \
--url https://api.surnex.io/v1/dataforseo/catalog/services/{service} \
--header 'Authorization: Bearer <token>'import requests
url = "https://api.surnex.io/v1/dataforseo/catalog/services/{service}"
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/services/{service}', 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/services/{service}",
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/services/{service}"
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/services/{service}")
.header("Authorization", "Bearer <token>")
.asString();require 'uri'
require 'net/http'
url = URI("https://api.surnex.io/v1/dataforseo/catalog/services/{service}")
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",
"service": {
"service": "serp",
"category": "serp",
"title": "SERP API",
"description": "Search engine results across web and vertical engines",
"discovery_source": "mixed",
"examples": [
"google",
"bing"
],
"operations": [
{
"service": "serp",
"operation_path": "/serp/google/organic/live",
"path_template": "/serp/{se}/{type}/live",
"method": "POST",
"mode": "live",
"description": "Live organic SERP results",
"discovery_source": "static"
},
{
"service": "serp",
"operation_path": "/serp/unknown/visibility/live",
"path_template": "/serp/unknown/visibility/live",
"method": "POST",
"mode": "live",
"description": "Discovered DataForSEO endpoint for serp",
"discovery_source": "discovered"
}
]
},
"summary": {
"total_operations": 2,
"by_discovery_source": {
"static": 1,
"discovered": 1
},
"by_method": {
"GET": 0,
"POST": 2
},
"by_mode": {
"live": 2,
"task_post": 0,
"task_get": 0,
"tasks_ready": 0,
"tasks_fixed": 0
}
},
"groups": {
"method": {
"GET": [
{
"service": "serp",
"operation_path": "/serp/{group}/task_get",
"path_template": "/serp/{provider}/{group}/task_get",
"method": "GET",
"mode": "task_get",
"description": "Task get sample",
"discovery_source": "static"
}
],
"POST": [
{
"service": "serp",
"operation_path": "/serp/google/organic/live",
"path_template": "/serp/{se}/{type}/live",
"method": "POST",
"mode": "live",
"description": "Live organic SERP results",
"discovery_source": "static"
}
]
},
"mode": {
"live": [
{
"service": "serp",
"operation_path": "/serp/google/organic/live",
"path_template": "/serp/{se}/{type}/live",
"method": "POST",
"mode": "live",
"description": "Live organic SERP results",
"discovery_source": "static"
}
],
"task_get": [
{
"service": "serp",
"operation_path": "/serp/{group}/task_get",
"path_template": "/serp/{provider}/{group}/task_get",
"method": "GET",
"mode": "task_get",
"description": "Task get sample",
"discovery_source": "static"
}
]
}
},
"limit": 100,
"offset": 0,
"returned": 2,
"has_more": false,
"next_offset": null,
"supports_custom_paths": true,
"supports_any_dataforseo_path": true,
"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_hit": false,
"cache_available": true,
"provider_calls": 1
}
}{
"error": {
"code": "VALIDATION_ERROR",
"message": "Invalid request",
"request_id": "req_123",
"details": {
"issues": [
{
"path": [
"service"
],
"message": "invalid service name",
"code": "invalid_string"
}
]
}
}
}{
"error": {
"code": "UNAUTHORIZED",
"message": "Unauthorized",
"request_id": "req_123",
"details": {
"reason": "missing_or_invalid_api_key"
}
}
}{
"error": {
"code": "NOT_FOUND",
"message": "Service not found",
"request_id": "req_123",
"details": {
"service": "unknown"
}
}
}{
"error": {
"code": "PROVIDER_ERROR",
"message": "Failed to discover DataForSEO operations",
"request_id": "req_123",
"details": {
"service": "serp",
"provider_error": {
"code": "BAD_REQUEST",
"message": "Discovery endpoint failed"
}
}
}
}Authorizations
bearerAuthapiKeyAuth
Authorization: Bearer sk_...
Path Parameters
Minimum string length:
1Query Parameters
Available options:
static, discovered, mixed Required string length:
1 - 128Service category used for grouping and filtering
Minimum string length:
1HTTPMethod
Available options:
GET, POST DataForSeoOperationMode
Available options:
live, task_post, task_get, tasks_ready, tasks_fixed Optional grouping key for response sections. When set, operations are additionally bucketed into groups without removing paginated operations. Method keys are emitted in API-defined order, mode keys are emitted in API-defined order, discovery source keys are emitted as static, discovered.
Available options:
method, mode, discovery_source Available options:
operation_path, method, mode, discovery_source Available options:
asc, desc Required range:
x <= 250Required range:
x >= 0Response
Service-scoped DataForSEO operation catalog with deterministic grouping keys when group_by is used (method, mode, or discovery_source).
Show child attributes
Show child attributes
Show child attributes
Show child attributes
Show child attributes
Show child attributes
Show child attributes
Show child attributes
Required range:
x >= 0Required range:
x >= 0Required range:
x >= 0Grouped operation buckets keyed by the selected group_by value. Omitted when group_by is not requested.
Show child attributes
Show child attributes
⌘I