Get started

REST and cURL SDK

Use the raw REST contract from any language or automation tool.

Back to documentation
Get started6 min
1

Call the production API directly

Use cURL to verify credentials, routes, and payloads before embedding the request in another language.

REST / cURL
curl -X POST "https://ai.quickcall.tech/api/calls/demo/initiate" \
  -H "Authorization: Bearer $QUICKCALLAI_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{
    "phone_number": "+15551234567",
    "customer_name": "Asha Patel",
    "prompt": "Confirm interest, answer questions, and book a demo slot.",
    "language": "en-IN",
    "voice_model": "google:en-IN-Chirp3-HD-Charon",
    "provider": "twilio"
  }'

curl "https://ai.quickcall.tech/api/calls/demo/CALL_ID/status" \
  -H "Authorization: Bearer $QUICKCALLAI_API_KEY"