Skip to main content
GET
/
api
/
kits
/
v1
/
voice-blender
/
:id
GET: Fetch a Voice Blender Job by ID
curl --request GET \
  --url https://arpeggi.io/api/kits/v1/voice-blender/:id \
  --header 'Authorization: Bearer <token>'
{
  "id": 110784,
  "model1Id": 501,
  "model2Id": 234,
  "model3Id": 53,
  "model4Id": 90,
  "alpha": 0.1,
  "alpha2": 0.3,
  "alpha3": 0.4,
  "alpha4": 0.2,
  "status": "success",
  "outputModelId": 600
}
Returns a single voice blender job by id.

Headers

Authorization*
String
Bearer <api-key>

Response

Voice Blender Job
{
  "id": 110784,
  "model1Id": 501,
  "model2Id": 234,
  "model3Id": 53,
  "model4Id": 90,
  "alpha": 0.1,
  "alpha2": 0.3,
  "alpha3": 0.4,
  "alpha4": 0.2,
  "status": "success",
  "outputModelId": 600
}
I