Skip to main content
POST
/
v1
/
call-extract
/
{call_id}
curl -X POST https://api.voicy.co/functions/v1/call-extract/550e8400-e29b-41d4-a716-446655440000 \
  -H "Authorization: Bearer voicy_sk_live_xxx"
{
  "success": true,
  "summary": "הלקוח התקשר לברר לגבי סטטוס ההזמנה שלו. הנציג אישר שההזמנה בדרך.",
  "vars_extracted": {
    "appointment_date": "2026-01-15",
    "preferred_time": "morning"
  }
}
Retry summary generation and variable extraction for a completed call where post-call processing failed. When extraction fails (due to a transient AI service error), the Get Call response will include extraction_failed: true. Use this endpoint to re-run extraction. This endpoint is idempotent — calling it on a call that already has a summary will overwrite the existing summary and extracted variables.

Path Parameters

call_id
string
required
The unique identifier of the call (UUID format). Must be a completed call with a transcript.

Response

success
boolean
Whether extraction completed successfully.
summary
string
The generated call summary.
vars_extracted
object
Extracted variables. Keys are variable names, values are strings or null if not found in the transcript.
curl -X POST https://api.voicy.co/functions/v1/call-extract/550e8400-e29b-41d4-a716-446655440000 \
  -H "Authorization: Bearer voicy_sk_live_xxx"
{
  "success": true,
  "summary": "הלקוח התקשר לברר לגבי סטטוס ההזמנה שלו. הנציג אישר שההזמנה בדרך.",
  "vars_extracted": {
    "appointment_date": "2026-01-15",
    "preferred_time": "morning"
  }
}