Skip to main content
GET
/
api
/
webhooks
/
elevenlabs
GET /api/webhooks/elevenlabs
curl --request GET \
  --url https://api.example.com/api/webhooks/elevenlabs

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.

Health check endpoint for the ElevenLabs webhook. The main webhook functionality is handled by the POST 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

curl -X GET https://your-domain.com/api/webhooks/elevenlabs \
  -H "Content-Type: application/json" \
  -H "Authorization: Bearer YOUR_TOKEN"