GET
/api/v6/catalog/servicesService catalog
Live platform services and whether this account has access to each one.
Scope and limits
Scope
Any valid API key
Usage limit
60 requests per minute
Catalog of the live platform services, with an enabled flag telling whether this account has access to each one. Useful to build menus or validations in your own interface without hardcoding the list.
Responses
200
Service catalog.
{
"success": true,
"data": {
"items": [
{
"code": "sms",
"name": "SMS",
"description": "Mensajería de texto",
"icon": "chat",
"enabled": true
}
]
},
"meta": {
"requestId": "b9b1704baffab21150213c02fd853975",
"timestamp": "2026-06-02T19:43:59+00:00",
"responseTimeMs": 4.1
}
}401
Invalid or missing credentials.
403
The organization cannot run the request.
429
Request limit exceeded.
Possible errors
Codes this endpoint can return in error.code. The full detail lives in the catalog.
401
See the full catalogAUTH_REQUIREDNo Bearer token was sent, and every call requires one.401AUTH_INVALID_KEYThe API key is not recognized: wrong format, revoked or expired.403ACCOUNT_NOT_ACTIVEYour organization is suspended or closed.403ACCOUNT_BLOCKEDA full block is active: every call is rejected.429RATE_TPS_EXCEEDEDYou exceeded your organization quota for this endpoint.