GET
/
v1
/
catalog_entities
/
{id}
Retrieves a Catalog Entity
curl --request GET \
  --url https://api.rootly.com/v1/catalog_entities/{id} \
  --header 'Authorization: Bearer <token>'
{
  "data": {
    "id": "b44ec380-65f8-49fd-90e8-841f1b4cd6e1",
    "type": "catalog_entities",
    "attributes": {
      "catalog_id": "4ac9b572-9013-49fa-82dd-7c2bc2d63313",
      "name": "Test",
      "slug": "test",
      "position": 1,
      "deleted_at": null,
      "updated_at": "2025-08-11T16:34:54.623-07:00",
      "created_at": "2025-08-11T16:34:54.623-07:00"
    },
    "relationships": {
      "catalog": {
        "data": {
          "id": "4ac9b572-9013-49fa-82dd-7c2bc2d63313",
          "type": "catalogs"
        }
      },
      "properties": {
        "data": []
      }
    }
  }
}

Authorizations

Authorization
string
header
required

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

Path Parameters

id
string
required

Query Parameters

include
enum<string>

comma separated if needed. eg: catalog,properties

Available options:
catalog,
properties

Response

200
application/vnd.api+json

catalog_entity found

The response is of type object.