Skip to main content
GET
/
v1
/
dataforseo
/
catalog
/
operations
cURL
curl --request GET \
  --url https://api.surnex.io/v1/dataforseo/catalog/operations \
  --header 'Authorization: Bearer <token>'
{
  "generated_at": "2026-02-24T00:00:00Z",
  "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": "keywords_data",
      "operation_path": "/keywords_data/google_ads/search_volume/live",
      "path_template": "/keywords_data/{provider}/search_volume/live",
      "method": "POST",
      "mode": "live",
      "description": "Live Google Ads search volume",
      "discovery_source": "static"
    }
  ],
  "groups": {
    "method": {
      "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": "keywords_data",
          "operation_path": "/keywords_data/google_ads/search_volume/live",
          "path_template": "/keywords_data/{provider}/search_volume/live",
          "method": "POST",
          "mode": "live",
          "description": "Live Google Ads search volume",
          "discovery_source": "static"
        }
      ]
    }
  },
  "total_operations": 2,
  "services": [
    "keywords_data",
    "serp"
  ],
  "limit": 100,
  "offset": 0,
  "returned": 2,
  "has_more": false,
  "next_offset": null,
  "summary": {
    "total": 2,
    "services": [
      "keywords_data",
      "serp"
    ],
    "by_discovery_source": {
      "static": 2,
      "discovered": 0
    },
    "by_method": {
      "GET": 0,
      "POST": 2
    },
    "by_mode": {
      "live": 2,
      "task_post": 0,
      "task_get": 0,
      "tasks_ready": 0,
      "tasks_fixed": 0
    }
  },
  "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_available": true,
    "cache_hit": false,
    "provider_calls": 3
  }
}

Authorizations

Authorization
string
header
required

Authorization: Bearer sk_...

Query Parameters

service
string
Minimum string length: 1
discover
discovery_source
enum<string>
Available options:
static,
discovered,
mixed
category
string

Service category used for grouping and filtering

Minimum string length: 1
method
enum<string>

HTTPMethod

Available options:
GET,
POST
mode
enum<string>

DataForSeoOperationMode

Available options:
live,
task_post,
task_get,
tasks_ready,
tasks_fixed
group_by
enum<string>

Optional grouping key for response sections. When set, operations are additionally bucketed into groups without removing paginated operations. Service keys are alphabetical; method keys are GET|POST; mode keys are live|task_post|task_get|tasks_ready|tasks_fixed; discovery source keys are static|discovered.

Available options:
service,
method,
mode,
discovery_source
Required string length: 1 - 128
refresh_discovery
sort
enum<string>
default:service
Available options:
service,
operation_path,
method,
mode,
discovery_source
order
enum<string>
default:asc
Available options:
asc,
desc
limit
integer
default:100
Required range: x <= 250
offset
integer | null
default:0
Required range: x >= 0

Response

Flattened catalog of DataForSEO operations with deterministic grouping keys when group_by is used (service, method, mode, or discovery_source).

generated_at
string
required
discovery_context
object
required
operations
object[]
required
total_operations
integer
required
Required range: x >= 0
services
string[]
required
limit
integer
required
offset
integer
required
Required range: x >= 0
returned
integer
required
Required range: x >= 0
has_more
boolean
required
next_offset
integer | null
required
Required range: x >= 0
summary
object
required
supports_custom_paths
boolean
required
supports_any_dataforseo_path
boolean
required
groups
object

Grouped operation buckets keyed by the selected group_by value. Omitted when group_by is not requested.