Skip to content
TipPage Docs
Esc
navigateopen⌘Jpreview

List endpoints

Requires webhooks:manage. Signing secrets are never listed.

GET/webhook-endpoints
Authorization
AuthorizationBearer token (tp_live_...) · headerrequired
A TipPage API key, created in Dashboard → Settings → Developer.
Responses
200All endpoints for this streamer.
endpointsWebhookEndpoint[]
Show properties
Array of WebhookEndpoint
idstring
urlstring<uri>
descriptionstring | null
eventsstring[]
Subscribed event types, or `["*"]` for everything.
is_activeboolean
disabled_reasonstring | null
Set when the endpoint was auto-disabled after repeated failures.
consecutive_failuresinteger
Deliveries that exhausted every retry since the last success.
last_success_atstring<date-time> | null
last_failure_atstring<date-time> | null
created_atstring<date-time>
401Missing or invalid API key (`missing_api_key` / `invalid_api_key`).
errorstringrequired
Human-readable message.
codestring
Machine-readable code (e.g. `missing_scope`, `not_in_queue`).
403The key lacks the required scope (`missing_scope`).
errorstringrequired
Human-readable message.
codestring
Machine-readable code (e.g. `missing_scope`, `not_in_queue`).
required_scopestring
429Rate limit exceeded - check the `RateLimit-*` headers.
errorstring
Request
curl -X GET "https://api.tippage.com/v1/webhook-endpoints" \
  -H "Authorization: Bearer YOUR_TOKEN"
Response
{
  "endpoints": [
    {
      "id": "we_1a2b3c4d5e6f",
      "url": "http://example.com",
      "description": "string",
      "events": [
        "string"
      ],
      "is_active": true,
      "disabled_reason": "string",
      "consecutive_failures": 0,
      "last_success_at": "2019-08-24T14:15:22Z",
      "last_failure_at": "2019-08-24T14:15:22Z",
      "created_at": "2019-08-24T14:15:22Z"
    }
  ]
}