Explore documentation

Get a single Catalog attribute

Returns a single Catalog attribute by ID.

GET https://uptime.betterstack.com/api/v2/catalog/relations/{relation_id}/attributes/{attribute_id}

URL parameters

relation_id
required string
attribute_id
required string

Headers

Authorization
required string
200

Response body

{
  "data": {
    "id": "56",
    "type": "catalog_attribute",
    "attributes": {
      "name": "Team",
      "primary": true,
      "position": 0
    }
  }
}

Example cURL

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