GET
/
v1
/
catalogs
/
{id}
Retrieves a catalog
curl --request GET \
  --url https://api.rootly.com/v1/catalogs/{id} \
  --header 'Authorization: Bearer <token>'
{
  "data": {
    "id": "2116a518-6d1e-453e-91b7-a882367228ee",
    "type": "catalogs",
    "attributes": {
      "name": "Services",
      "slug": "services",
      "icon": "globe-alt",
      "description": null,
      "position": 1,
      "deleted_at": null,
      "updated_at": "2025-09-18T20:52:59.069-07:00",
      "created_at": "2025-09-18T20:52:59.069-07:00"
    },
    "relationships": {
      "fields": {
        "data": []
      },
      "entities": {
        "data": []
      }
    }
  }
}

Authorizations

Authorization
string
header
required

Bearer authentication header of the form Bearer <token>, where <token> is your auth token.

Path Parameters

id
required

Resource UUID

Response

catalog found by slug

data
object
required