GET /api/webhooks/elevenlabs/personalize
curl --request GET \
--url https://api.example.com/api/webhooks/elevenlabs/personalizeimport requests
url = "https://api.example.com/api/webhooks/elevenlabs/personalize"
response = requests.get(url)
print(response.text)const options = {method: 'GET'};
fetch('https://api.example.com/api/webhooks/elevenlabs/personalize', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));<?php
$curl = curl_init();
curl_setopt_array($curl, [
CURLOPT_URL => "https://api.example.com/api/webhooks/elevenlabs/personalize",
CURLOPT_RETURNTRANSFER => true,
CURLOPT_ENCODING => "",
CURLOPT_MAXREDIRS => 10,
CURLOPT_TIMEOUT => 30,
CURLOPT_HTTP_VERSION => CURL_HTTP_VERSION_1_1,
CURLOPT_CUSTOMREQUEST => "GET",
]);
$response = curl_exec($curl);
$err = curl_error($curl);
curl_close($curl);
if ($err) {
echo "cURL Error #:" . $err;
} else {
echo $response;
}package main
import (
"fmt"
"net/http"
"io"
)
func main() {
url := "https://api.example.com/api/webhooks/elevenlabs/personalize"
req, _ := http.NewRequest("GET", url, nil)
res, _ := http.DefaultClient.Do(req)
defer res.Body.Close()
body, _ := io.ReadAll(res.Body)
fmt.Println(string(body))
}HttpResponse<String> response = Unirest.get("https://api.example.com/api/webhooks/elevenlabs/personalize")
.asString();require 'uri'
require 'net/http'
url = URI("https://api.example.com/api/webhooks/elevenlabs/personalize")
http = Net::HTTP.new(url.host, url.port)
http.use_ssl = true
request = Net::HTTP::Get.new(url)
response = http.request(request)
puts response.read_bodyElevenLabs Webhooks
GET /api/webhooks/elevenlabs/personalize
Health check endpoint for the ElevenLabs personalization webhook
GET
/
api
/
webhooks
/
elevenlabs
/
personalize
GET /api/webhooks/elevenlabs/personalize
curl --request GET \
--url https://api.example.com/api/webhooks/elevenlabs/personalizeimport requests
url = "https://api.example.com/api/webhooks/elevenlabs/personalize"
response = requests.get(url)
print(response.text)const options = {method: 'GET'};
fetch('https://api.example.com/api/webhooks/elevenlabs/personalize', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));<?php
$curl = curl_init();
curl_setopt_array($curl, [
CURLOPT_URL => "https://api.example.com/api/webhooks/elevenlabs/personalize",
CURLOPT_RETURNTRANSFER => true,
CURLOPT_ENCODING => "",
CURLOPT_MAXREDIRS => 10,
CURLOPT_TIMEOUT => 30,
CURLOPT_HTTP_VERSION => CURL_HTTP_VERSION_1_1,
CURLOPT_CUSTOMREQUEST => "GET",
]);
$response = curl_exec($curl);
$err = curl_error($curl);
curl_close($curl);
if ($err) {
echo "cURL Error #:" . $err;
} else {
echo $response;
}package main
import (
"fmt"
"net/http"
"io"
)
func main() {
url := "https://api.example.com/api/webhooks/elevenlabs/personalize"
req, _ := http.NewRequest("GET", url, nil)
res, _ := http.DefaultClient.Do(req)
defer res.Body.Close()
body, _ := io.ReadAll(res.Body)
fmt.Println(string(body))
}HttpResponse<String> response = Unirest.get("https://api.example.com/api/webhooks/elevenlabs/personalize")
.asString();require 'uri'
require 'net/http'
url = URI("https://api.example.com/api/webhooks/elevenlabs/personalize")
http = Net::HTTP.new(url.host, url.port)
http.use_ssl = true
request = Net::HTTP::Get.new(url)
response = http.request(request)
puts response.read_bodyHealth check endpoint for the ElevenLabs personalization webhook. The main personalization functionality is handled by the POST endpoint.
Related Endpoint
The POST version of this endpoint (POST /api/webhooks/elevenlabs/personalize) is the main personalization webhook for ElevenLabs inbound calls. It is called by ElevenLabs during the dial tone to fetch customer context for dynamic variables.
Key features:
- Must respond in under 300ms to avoid call delay
- Returns customer context including name, type, previous jobs, and notes
- Supports business hours detection with after-hours greeting overrides
- Handles graceful degradation on errors
Response
Returns{ status: "ok" } on success.
Example
curl -X GET https://your-domain.com/api/webhooks/elevenlabs/personalize \
-H "Content-Type: application/json" \
-H "Authorization: Bearer YOUR_TOKEN"
const response = await fetch('/api/webhooks/elevenlabs/personalize', {
method: 'GET',
headers: {
'Content-Type': 'application/json',
'Authorization': `Bearer ${token}`
}
});
const data = await response.json();