# Get Splunk integration

Returns a single Splunk On-Call integration by ID.

[endpoint]
base_url = "https://uptime.betterstack.com"
path = "/api/v2/splunk-on-call/{splunk_on_call_id}"
method = "GET"

[[path_param]]
name = "splunk_on_call_id"
description = "The ID of the Splunk On-Call integration 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 Splunk On-Call integration'''
body = '''{
  "data": {
    "id": "17",
    "type": "splunk_on_call_integration",
    "attributes": {
      "name": "Test",
      "url": "https://[url]",
      "team_name": "My team"
    }
  }
}'''

[/responses]

#### Example cURL 

```shell
[label Example]
curl --request GET \
  --url https://uptime.betterstack.com/api/v2/splunk-on-call/17 \
  --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]