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

# GET /api/webhooks/elevenlabs

> Health check endpoint for the ElevenLabs webhook

Health check endpoint for the ElevenLabs webhook. The main webhook functionality is handled by the POST endpoint.

## Related Endpoint

The POST version of this endpoint (`POST /api/webhooks/elevenlabs`) is the main webhook handler for ElevenLabs Conversational AI events. It receives three types of events:

* **post\_call\_transcription**: Contains transcript, analysis, and metadata
* **post\_call\_audio**: Contains base64-encoded MP3 audio
* **call\_initiation\_failure**: Contains failure reason and metadata

## Response

Returns `{ status: "ok" }` on success.

## Example

<CodeGroup>
  ```bash cURL theme={null}
  curl -X GET https://your-domain.com/api/webhooks/elevenlabs \
    -H "Content-Type: application/json" \
    -H "Authorization: Bearer YOUR_TOKEN"
  ```

  ```typescript TypeScript theme={null}
  const response = await fetch('/api/webhooks/elevenlabs', {
    method: 'GET',
    headers: {
      'Content-Type': 'application/json',
      'Authorization': `Bearer ${token}`
    }
  });
  const data = await response.json();
  ```
</CodeGroup>
