Back to Callbacks Endpoints
GET /v1/callbacks
Retrieve a list of all server callbacks configured for your organization. This endpoint returns all active callbacks by default, with an option to include disabled callbacks. Use this to audit your callback configurations, check which endpoints are receiving vote data, and manage multiple callback endpoints for different purposes or environments.
Request
http
GET https://api.votepipe.com/v1/callbacks
Authorization: Bearer mr_live_your_api_key_hereQuery Parameters
| Parameter | Type | Required | Description |
|---|---|---|---|
| include_disabled | boolean | No | Include disabled callbacks (default: false) |
Response (200 OK)
json
{
"data": {
"callbacks": [
{
"id": "1",
"name": "Game Server Callback",
"url": "https://my-server.com/api/vote",
"timeout_ms": 5000,
"enabled": true,
"priority": 0,
"payload_template": {
"event": "vote",
"player": "{{voter_name}}",
"provider": "{{provider_key}}"
},
"created_at": "2026-01-01T10:00:00Z",
"updated_at": "2026-01-02T15:30:00Z"
}
],
"count": 1,
"limit": 3
}
}