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

# List Webhooks

> Retrieve all configured webhooks

Returns a list of all webhook endpoints configured for your account.

<ParamField query="limit" type="integer" default="20">
  Number of webhooks to return. Maximum is 100.
</ParamField>

<ParamField query="cursor" type="string">
  Cursor for pagination.
</ParamField>

<RequestExample>
  ```bash cURL theme={null}
  curl https://api.flux.dev/v1/webhooks \
    -H "Authorization: Bearer sk_live_..."
  ```

  ```typescript Node.js theme={null}
  const webhooks = await flux.webhooks.list();
  ```

  ```python Python theme={null}
  webhooks = flux.webhooks.list()
  ```
</RequestExample>

<ResponseExample>
  ```json 200 theme={null}
  {
    "data": [
      {
        "id": "wh_abc123",
        "url": "https://api.yourapp.com/webhooks/flux",
        "events": ["order.completed", "user.signup"],
        "status": "active",
        "created": "2024-01-10T08:00:00Z"
      },
      {
        "id": "wh_def456",
        "url": "https://api.yourapp.com/analytics",
        "events": ["*"],
        "status": "active",
        "created": "2024-01-05T12:30:00Z"
      }
    ],
    "hasMore": false
  }
  ```
</ResponseExample>
