GET
/
api
/
kits
/
v1
/
voice-conversions
/
:id
curl --request GET \
  --url https://arpeggi.io/api/kits/v1/voice-conversions/:id \
  --header 'Authorization: Bearer <token>'
{
  "id": 1,
  "createdAt": "2023-09-19 20:13:50.428000 +00:00",
  "type": "infer",
  "voiceModelId": 2,
  "status": "running",
  "jobStartTime": "2023-09-19 20:15:50.428000 +00:00",
  "jobEndTime": null
}

Returns a single voice conversion inference job by id.

Headers

Authorization*

Bearer <api-key>

Response

Inference Job

{
  "id": 1,
  "createdAt": "2023-09-19 20:13:50.428000 +00:00",
  "type": "infer",
  "voiceModelId": 2,
  "status": "running",
  "jobStartTime": "2023-09-19 20:15:50.428000 +00:00",
  "jobEndTime": null
}