RevKeen Docs
Api reference

Webhook_endpoints_list


Related endpoints

  • POST /webhook-endpoints — webhook endpoints create
  • GET /webhook-endpoints/{id} — webhook endpoints get
  • PATCH /webhook-endpoints/{id} — webhook endpoints update
  • DELETE /webhook-endpoints/{id} — webhook endpoints delete
  • POST /webhook-endpoints/{id}/rotate-secret — webhook endpoints rotate secret

Pagination

Offset-based with limit (default 25, max 100) and offset. The response pagination block includes total and hasMore. See the pagination guide for SDK auto-paging helpers.

GET
/webhook-endpoints
x-api-key<token>

Your RevKeen API key (powered by Unkey). Get it from Dashboard > Settings > API Keys. Use rk_sandbox_* for test mode and rk_live_* for production.

In: header

Query Parameters

status?string
Value in"enabled" | "disabled"
limit?integer
Default20
Range1 <= value <= 100
offset?|
Default0
Range0 <= value

Response Body

application/json

curl "https://api.revkeen.com/v2/webhook-endpoints" \  -H "x-api-key: $REVKEEN_API_KEY"
{
  "data": [
    {
      "id": "550e8400-e29b-41d4-a716-446655440000",
      "url": "https://api.example.com/webhooks/revkeen",
      "description": "Production webhook endpoint",
      "enabled_events": [
        "invoice.paid",
        "payment.succeeded"
      ],
      "status": "enabled",
      "circuit_breaker_state": "closed",
      "total_deliveries": 12,
      "successful_deliveries": 10,
      "failed_deliveries": 2,
      "last_delivery_at": "2026-04-02T10:00:00.000Z",
      "created_at": "2026-04-02T10:00:00.000Z",
      "updated_at": "2026-04-02T10:00:00.000Z"
    }
  ],
  "meta": {
    "total": 0,
    "limit": 0,
    "offset": 0,
    "has_more": true
  }
}