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

# List Webhooks

> Get all registered webhooks

# List Webhooks

Retrieve all webhooks registered for your account.

## Response

<ResponseField name="webhooks" type="array">
  Array of webhook objects
</ResponseField>

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

  ```javascript JavaScript theme={null}
  const webhooks = await fetch(
    'https://api.unipay.com/v1/webhooks',
    { headers: { 'Authorization': 'Bearer YOUR_API_KEY' } }
  );
  ```
</RequestExample>

<ResponseExample>
  ```json Response theme={null}
  {
    "webhooks": [
      {
        "webhookId": "wh_123",
        "url": "https://your-app.com/webhooks",
        "events": ["transaction.completed"],
        "createdAt": "2026-04-22T12:00:00Z"
      }
    ]
  }
  ```
</ResponseExample>
