POST
/
voice
/
fetch
/
{id}
Fetch queued voice by ID
curl --request POST \
  --url https://modelslab.com/api/v6/voice/fetch/{id} \
  --header 'Content-Type: application/json' \
  --data '{
  "key": "<string>"
}'
{
  "status": "success",
  "generationTime": 123,
  "id": 123,
  "output": [
    "<string>"
  ],
  "proxy_links": [
    "<string>"
  ],
  "future_links": [
    "<string>"
  ],
  "links": [
    "<string>"
  ],
  "meta": {},
  "eta": 123,
  "message": "<string>",
  "tip": "<string>",
  "fetch_result": "<string>",
  "audio_time": 123
}

Request

Make a POST request to the endpoint below and pass the required parameters in the request body.
Replace {id} in the URL with the actual ID returned from the initial voice generation request.
curl
--request POST 'https://modelslab.com/api/v6/voice/fetch/{id}' \

Body

json
{
  "key": ""
}

Path Parameters

id
integer
required

ID of the voice generation to fetch

Body

application/json

Response

Fetched voice response

The response is of type object.