v50

latestOpenAPI 3.1.0Apache-2.0raw.githubusercontent.com2026-08-01147180956.9 KB
Catalog

Preview Catalog Operations

Preview the operations of a catalog entry's spec (capped, offset-paginated).

tag and q filter the spec's operations server-side before windowing, so the UI's search box covers every operation in the spec and pages the filtered set via offset/limit ("Load more").

get/catalog/{api_id}/operations

Path parameters

api_idstring required

Query parameters

offsetinteger
limitinteger
tagstring nullable
qstring nullable

Response

Successful Response

offsetinteger required

Offset of the returned window.

security_schemesobject required

Slimmed components.securitySchemes projection.

totalinteger required

Total operations in the spec (pre-page).

truncatedboolean required

Whether more operations follow this window.

Example response

{
  "data": [],
  "info": {
    "description": "Payments.",
    "title": "Stripe",
    "version": "2024-01-01"
  },
  "offset": 0,
  "security_schemes": {},
  "total": 42,
  "truncated": true
}