# List Splunk integrations

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

[endpoint]
base_url = "https://uptime.betterstack.com"
path = "/api/v2/splunk-on-calls"
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 Splunk On-Call integrations'''
body = '''{
  "data": [
    {
      "id": "17",
      "type": "splunk_on_call_integration",
      "attributes": {
        "name": "test",
        "url": "https://[url]",
        "team_name": "My team"
      }
    }
  ],
  "pagination": {
    "first": "https://uptime.betterstack.com/api/v2/splunk-on-calls?page=1",
    "last": "https://uptime.betterstack.com/api/v2/splunk-on-calls?page=1",
    "prev": null,
    "next": null
  }
}'''

[/responses]

#### Example cURL 

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

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