Skip to main content
GET
/
v2
/
webhooks
curl -X GET 'https://api.anyformat.ai/v2/webhooks/' \
  -H 'Authorization: Bearer YOUR_API_KEY'
[
  {
    "id": "wh_1234567890",
    "url": "https://your-server.com/webhooks/anyformat",
    "events": ["extraction.completed", "extraction.failed"],
    "is_active": true,
    "created_at": "2024-03-24T12:00:00.000Z"
  }
]
List all webhook subscriptions for your organization. The secret field is excluded from list responses for security.
This endpoint returns a flat array, not a paginated response.
curl -X GET 'https://api.anyformat.ai/v2/webhooks/' \
  -H 'Authorization: Bearer YOUR_API_KEY'
[
  {
    "id": "wh_1234567890",
    "url": "https://your-server.com/webhooks/anyformat",
    "events": ["extraction.completed", "extraction.failed"],
    "is_active": true,
    "created_at": "2024-03-24T12:00:00.000Z"
  }
]

Headers

authorization
string | null

Response

Successful Response

id
string
required
url
string
required
events
string[]
required
is_active
boolean
required
created_at
string
required