# Get catalog relation

Returns a single Catalog relation by ID.

[endpoint]
base_url = "https://uptime.betterstack.com"
path = "/api/v2/catalog/relations/{relation_id}"
method = "GET"

[[path_param]]
name = "relation_id"
description = "The ID of the Catalog relation you want to get."
required = true
type = "string"

[[header]]
name = "Authorization"
description = "Bearer `$TOKEN`"
required = true
type = "string"
[/endpoint]

[responses]
[[response]]
status = 200
description = '''Returns a single Catalog relation'''
body = '''{
  "data": {
    "id": "37",
    "type": "catalog_relation",
    "attributes": {
      "name": "Team",
      "description": "Catalog of organization teams"
    }
  }
}'''

[/responses]

#### Example cURL 

```shell
[label Example]
curl --request GET \
  --url https://uptime.betterstack.com/api/v2/catalog/relations/37 \
  --header "Authorization: Bearer $TOKEN"
```

[info]
#### Looking for the details of a specific parameter?
Explore [the list of all Catalog relation API parameters](https://betterstack.com/docs/uptime/api/catalog-relation-response-params/)
[/info]
