Explore documentation

Get a single Catalog record

Returns a single Catalog record by ID.

GET https://uptime.betterstack.com/api/v2/catalog/relations/{relation_id}/records/{record_id}

URL parameters

relation_id
required string
record_id
required string

Headers

Authorization
required string
200

Response body

{
  "data": {
    "id": "67",
    "type": "catalog_record",
    "attributes": {
      "attributes": [
        {
          "attribute": {
            "id": "56",
            "name": "Team"
          },
          "values": [
            {
              "type": "String",
              "value": "My Team"
            }
          ]
        },
        {
          "attribute": {
            "id": "57",
            "name": "Team Lead"
          },
          "values": [
            {
              "type": "Team",
              "item_id": "123"
            }
          ]
        }
      ]
    }
  }
}

Example cURL

Example
curl --request GET \
  --url https://uptime.betterstack.com/api/v2/catalog/relations/37/records/67 \
  --header "Authorization: Bearer $TOKEN"