/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.
GET /api/v1/webhooks/0 These inputs are shared across all docs pages, so an id entered here carries over.
{
"success": false,
"message": "Mystery partner API key required",
"error": "This endpoint requires an API key linked to a mystery partner account"
}curl -X GET 'https://service.rip.fun/api/v1/webhooks/0' \ -H 'X-API-Key: rip_…'
data)| Field | Description |
|---|---|
webhook.id / url / is_active | The registration and whether it is currently receiving deliveries |
webhook.event_types | The event types this endpoint is subscribed to; empty means every event |
webhook.created_at / updated_at | When it was registered and last changed |
| Status | Code | When |
|---|---|---|
| 404 | not_found | no webhook with that id on your key |
See Errors for the response envelope and the full code list.