> ## Documentation Index
> Fetch the complete documentation index at: https://60db.mintlify.site/llms.txt
> Use this file to discover all available pages before exploring further.

# Get Webhooks

> List all webhooks

## Request

### Headers

<ParamField header="Authorization" type="string" required>
  Bearer token with your API key
</ParamField>

## Response

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

<ResponseField name="webhooks[].id" type="string">
  Webhook ID
</ResponseField>

<ResponseField name="webhooks[].url" type="string">
  Webhook URL
</ResponseField>

<ResponseField name="webhooks[].events" type="array">
  Subscribed events
</ResponseField>

<ResponseField name="webhooks[].status" type="string">
  Webhook status: "active" or "inactive"
</ResponseField>

<ResponseField name="webhooks[].created_at" type="string">
  Creation timestamp
</ResponseField>

<RequestExample>
  ```bash cURL theme={null}
  curl https://api.60db.ai/webhooks \
    -H "Authorization: Bearer your-api-key"
  ```

  ```javascript JavaScript theme={null}
  const webhooks = await client.getWebhooks();
  ```

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

<ResponseExample>
  ```json Response theme={null}
  {
    "webhooks": [
      {
        "id": "wh-123",
        "url": "https://example.com/webhook",
        "events": ["tts.completed", "stt.completed"],
        "status": "active",
        "created_at": "2026-01-15T10:00:00Z"
      }
    ]
  }
  ```
</ResponseExample>
