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

# Listar webhooks

> Retorna todos os endpoints webhook registrados para a conta.

<ParamField header="x-api-key" type="string" required>
  API key do BOH com escopo `admin:webhooks`.
</ParamField>

<ResponseField name="webhooks" type="object[]">Array de endpoints webhook.</ResponseField>

<ResponseExample>
  ```json 200 theme={null}
  {
    "webhooks": [
      {
        "id": "wep_01j5k...",
        "url": "https://meu-sistema.com/webhooks/boh",
        "events": ["inventory_transaction.completed"],
        "status": "ACTIVE"
      }
    ]
  }
  ```
</ResponseExample>
