Get a webhook

GET /api/v1/webhooks/:id webhooks:manage

Reads back one of your registered webhooks. Use it to confirm a subscription after registering, or to check which event types an endpoint is on before you change them. The signing secret is never returned here — it is shown once, at registration, and nowhere else.

Try it GET /api/v1/webhooks/0

These inputs are shared across all docs pages, so an id entered here carries over.

response
403 17ms preloaded server-side with the default context
object · 3 keys
{
  "success": false,
  "message": "Mystery partner API key required",
  "error": "This endpoint requires an API key linked to a mystery partner account"
}
tracks the inputs above
curl -X GET 'https://service.rip.fun/api/v1/webhooks/0' \
  -H 'X-API-Key: rip_…'

Response fields (data)

FieldDescription
webhook.id / url / is_activeThe registration and whether it is currently receiving deliveries
webhook.event_typesThe event types this endpoint is subscribed to; empty means every event
webhook.created_at / updated_atWhen it was registered and last changed

Errors

StatusCodeWhen
404not_foundno webhook with that id on your key

See Errors for the response envelope and the full code list.