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

# List webhooks

> List all webhook endpoints configured for your workspace

<ParamField header="Authorization" type="string" required>
  `Bearer {api_key}`
</ParamField>

<RequestExample>
  ```bash cURL theme={null}
  curl "https://dev-backend-ai.truefans.in/api/external/v1/webhooks/" \
    -H "Authorization: Bearer $TRUEFAN_API_KEY"
  ```
</RequestExample>

<ResponseExample>
  ```json 200 OK theme={null}
  {
    "webhooks": [
      {
        "endpoint_id": "9d2f1e0a-...",
        "target_url": "https://myapp.example.com/webhooks/truefan",
        "is_active": true,
        "created": "2026-08-21T10:00:00Z"
      }
    ]
  }
  ```
</ResponseExample>

<Note>
  `secret` is never included here — only present in the [Create a webhook](/docs/api-reference/webhooks/create-webhook) response, once.
</Note>
