Skip to main content
GET
/
api
/
v2
/
webhooks
List webhooks
curl --request GET \
  --url https://agp.eu.hcompany.ai/api/v2/webhooks \
  --header 'Authorization: Bearer <token>'
Returns a paginated list of your organization’s webhooks. Signing secrets are never included. Returns a paginated list of webhook objects.

Query parameters

page
integer
default:"1"
Page number (1-based).
size
integer
default:"10"
Items per page. Maximum: 1000.
sort
string
default:"-created_at"
Sort order. Options: created_at, -created_at.

Examples

curl "https://agp.eu.hcompany.ai/api/v2/webhooks" \
  -H "Authorization: Bearer $HAI_API_KEY"
Response
{
  "items": [
    {
      "id": "f47ac10b-58cc-4372-a567-0e02b2c3d479",
      "url": "https://example.com/hooks/h",
      "enabled_events": ["session.status_updated"],
      "description": "Production listener",
      "disabled": false,
      "created_at": "2026-06-11T15:04:05Z",
      "updated_at": "2026-06-11T15:04:05Z"
    }
  ],
  "page": 1,
  "total": 1
}