> ## Documentation Index
> Fetch the complete documentation index at: https://docs.wirebox.sh/llms.txt
> Use this file to discover all available pages before exploring further.

# List Webhooks

> List all configured webhook subscriptions in your organization.

### Query Parameters

<ParamField query="agent" type="string">
  Filter webhooks scoped to an agent handle.
</ParamField>

<ParamField query="event" type="string">
  Filter webhooks subscribed to a specific event type.
</ParamField>

<ResponseExample>
  ```json 200 OK theme={null}
  {
    "webhooks": [
      {
        "id": "whk_01J8DEF456GHI789",
        "url": "https://agent.example.com/api/webhooks",
        "events": [
          "message.received",
          "message.delivered",
          "message.bounced"
        ],
        "agent_handle": "eva",
        "auth_token": "bearer_secret_token_123",
        "has_auth_token": true,
        "created_at": "2026-09-11T10:00:00Z",
        "updated_at": "2026-09-11T10:00:00Z"
      }
    ],
    "total": 1
  }
  ```
</ResponseExample>
