Skip to content

Service Catalog

GET /catalog (Node.js Service)

Service catalog API — for MCP Server or any client to query available services.


Get All Services

GET /catalog

Returns all registered services (currently 22).

curl https://service.cyberpay.org/catalog

Search Services

GET /catalog/search?q={query}&category={category}

ParameterTypeDescription
qstringSearch keyword
categorystringOptional, filter by category
curl "https://service.cyberpay.org/catalog/search?q=card&category=payment"

Get Single Service

GET /catalog/{id}

curl https://service.cyberpay.org/catalog/virtual-card

Returns 404 if the service does not exist:

{ "error": "Not found" }