메인 콘텐츠로 건너뛰기
POST
/
audio
/
complete
/api/v1/audio/complete
curl --request POST \
  --url https://api.venice.ai/api/v1/audio/complete \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --data '
{
  "model": "elevenlabs-music",
  "queue_id": "123e4567-e89b-12d3-a456-426614174000"
}
'
{
  "success": true
}
생성된 오디오를 성공적으로 다운로드한 후 Venice가 해당 요청과 연결된 저장 미디어를 정리하도록 하려면 이 엔드포인트를 호출하세요.

Postman 컬렉션

추가 예제는 이 Postman 컬렉션을 참조하세요.

인증

Authorization
string
header
필수

Bearer authentication header of the form Bearer <token>, where <token> is your auth token.

본문

application/json
model
string
필수

The ID of the model used for audio generation.

예시:

"elevenlabs-music"

queue_id
string
필수

The ID of the audio generation request. Use this to poll for status and retrieve the result.

예시:

"123e4567-e89b-12d3-a456-426614174000"

응답

Media cleanup result. A success value of false indicates cleanup did not complete and can be retried later.

success
boolean
필수

Indicates whether the audio cleanup was successful.

예시:

true