Retrieves a specific catalog by id
curl --request GET \
--url https://api.rootly.com/v1/catalogs/{id} \
--header 'Authorization: Bearer <token>'
{
"data": {
"id": "6bb39da7-6dbd-4ced-920a-ef0e5ff9cf4f",
"type": "catalogs",
"attributes": {
"name": "Services",
"slug": "services",
"icon": "globe-alt",
"description": null,
"position": 1,
"deleted_at": null,
"updated_at": "2025-07-20T00:36:39.344-07:00",
"created_at": "2025-07-20T00:36:39.344-07:00"
},
"relationships": {
"fields": {
"data": []
},
"entities": {
"data": []
}
}
}
}
Bearer authentication header of the form Bearer <token>
, where <token>
is your auth token.
catalog found
The response is of type object
.
Was this page helpful?
curl --request GET \
--url https://api.rootly.com/v1/catalogs/{id} \
--header 'Authorization: Bearer <token>'
{
"data": {
"id": "6bb39da7-6dbd-4ced-920a-ef0e5ff9cf4f",
"type": "catalogs",
"attributes": {
"name": "Services",
"slug": "services",
"icon": "globe-alt",
"description": null,
"position": 1,
"deleted_at": null,
"updated_at": "2025-07-20T00:36:39.344-07:00",
"created_at": "2025-07-20T00:36:39.344-07:00"
},
"relationships": {
"fields": {
"data": []
},
"entities": {
"data": []
}
}
}
}