Authorizations
Bearer authentication header of the form Bearer <token>, where <token> is your auth token.
Path Parameters
Resource UUID
Response
catalog found by slug
Retrieves a specific catalog by id
curl --request GET \
--url https://api.rootly.com/v1/catalogs/{id} \
--header 'Authorization: Bearer <token>'{
"data": {
"id": "abce3c47-e92f-41a0-9d9e-a1085d8050d4",
"type": "catalogs",
"attributes": {
"name": "Services",
"slug": "services",
"icon": "globe-alt",
"description": null,
"position": 1,
"deleted_at": null,
"updated_at": "2025-10-31T18:53:45.138-07:00",
"created_at": "2025-10-31T18:53:45.138-07:00"
},
"relationships": {
"fields": {
"data": []
},
"entities": {
"data": []
}
}
}
}Bearer authentication header of the form Bearer <token>, where <token> is your auth token.
Resource UUID
catalog found by slug
Show child attributes
Was this page helpful?
curl --request GET \
--url https://api.rootly.com/v1/catalogs/{id} \
--header 'Authorization: Bearer <token>'{
"data": {
"id": "abce3c47-e92f-41a0-9d9e-a1085d8050d4",
"type": "catalogs",
"attributes": {
"name": "Services",
"slug": "services",
"icon": "globe-alt",
"description": null,
"position": 1,
"deleted_at": null,
"updated_at": "2025-10-31T18:53:45.138-07:00",
"created_at": "2025-10-31T18:53:45.138-07:00"
},
"relationships": {
"fields": {
"data": []
},
"entities": {
"data": []
}
}
}
}