v1
latestOpenAPI 3.0.32026-07-17465.6 KBservices
Get service routes
Get all routes/endpoints for a specific service.
get/.services/{serviceName}
Path parameters
serviceNamestring required
Example:petstore
Service name. Use .root for root-level services (services with empty name). Can include slashes for nested services (e.g., stripe/v2).
Response
Successful response
Example response
{
"endpoints": [
{
"id": "getPetById",
"method": "GET",
"path": "/pet/{petId}",
"contentType": "application/json"
}
]
}