v1

latestOpenAPI 3.0.02026-07-2693126.7 KB
Api
Operations

Extract voiceprint

post/v1/voiceprint

Request body

urlstring required

URL of the voiceprint audio file

model'precision-2' nullable
webhookstring

Webhook URL to receive voiceprint results (optional)

webhookStatusOnlyboolean

When true, webhook payload only includes jobId and status (excludes output). Useful for large payloads.

Example request

{
  "url": "https://example.com/voice.wav",
  "model": "precision-2",
  "webhook": "https://example.com/webhook",
  "webhookStatusOnly": true
}

Response

jobIdstring required

ID of the job

status'pending' | 'created' | 'succeeded' | 'canceled' | 'failed' | 'running' required

Status of the job

warningstring

Warning message if any

Example response

{
  "jobId": "3c8a89a5-dcc6-4edb-a75d-ffd64739674d",
  "status": "created"
}