# List Prometheus integrations

Returns a list of all your Prometheus integrations. This endpoint [supports pagination](https://betterstack.com/docs/uptime/api/pagination/).

[endpoint]
base_url = "https://uptime.betterstack.com"
path = "/api/v2/prometheus-integrations"
method = "GET"

[[query_param]]
name = "team_name"
description = "Filter integrations belonging to a specified team when using [global API token](https://betterstack.com/docs/uptime/api/getting-started-with-uptime-api/#get-a-global-api-token)."
required = false
type = "string"

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

[responses]
[[response]]
status = 200
description = '''Returns list of existing Prometheus integrations'''
body = '''{
  "data": [
    {
      "id": "37",
      "type": "prometheus_integration",
      "attributes": {
        "call": false,
        "sms": false,
        "email": true,
        "team_wait": 180,
        "recovery_period": null,
        "policy_id": null,
        "push": true,
        "name": "Prometheus Integration",
        "paused": false,
        "webhook_url": "https://uptime.betterstack.dev/api/v1/prometheus/webhook/[token]",
        "team_name": "Testing"
      }
    }
  ],
  "pagination": {
    "first": "https://uptime.betterstack.com/api/v2/prometheus-integrations?page=1",
    "last": "https://uptime.betterstack.com/api/v2/prometheus-integrations?page=1",
    "prev": null,
    "next": null
  }
}'''

[/responses]

#### Example cURL 

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

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