Aura Logo
AuraAPI Docs
OpenapiV1Webhooks

List webhook subscriptions

Retrieve a paginated list of your webhook subscriptions.

Use Cases:

  • View all active webhook endpoints
  • Audit webhook configurations
  • Monitor event subscriptions

Filtering:

  • Filter by event_type to see subscriptions for specific events
GET
/v1/webhooks

Query Parameters

limit?string

Number of results per page (max: 100)

Default"50"
cursor?string

Pagination cursor from previous response

event_type?string

Filter by event type

Response Body

application/json

application/json

curl -X GET "https://api.aura-app.ai/v1/webhooks"
{
  "success": true,
  "data": [
    {
      "id": "550e8400-e29b-41d4-a716-446655440000",
      "event_type": "call.booked",
      "target_url": "https://api.example.com/webhooks/aura",
      "created_at": "2026-01-17T08:00:00Z"
    }
  ],
  "pagination": {
    "next_cursor": "eyJjcmVhdGVkX2F0IjoiMjAyNi0wMS0xN1QwODowMDowMFoifQ==",
    "has_more": true
  }
}
{
  "success": false,
  "error": "Webhook subscription not found",
  "code": "WEBHOOK_NOT_FOUND"
}