Skip to main content
POST
/api/v1/audio/voice-changer/retrieve
/audio/voice-changer/queue가 반환한 queue_id를 사용해 변환 상태를 확인하세요. 작업이 실행 중일 때는 status: "PROCESSING"이 포함된 JSON을 반환하며, 완료되면 audio/mpeg를 반환합니다. delete_media_on_completiontrue로 설정하면 동일 호출에서 저장 미디어를 정리하거나, 파일을 다운로드한 후 /audio/voice-changer/complete를 호출하세요. 보이스 체인저 모델은 /audio/retrieve에서 허용되지 않습니다.

Postman 컬렉션

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

인증

Authorization
string
header
필수

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

본문

application/json
model
string
필수

The model that is running the conversion. Only voice-changer models are accepted on the /api/v1/audio/voice-changer endpoints.

예시:

"elevenlabs-voice-changer"

queue_id
string
필수

Pass this to /audio/voice-changer/retrieve to poll for the converted audio, and to /audio/voice-changer/complete when finished.

예시:

"0190f2c4-9c1e-7a3b-8f42-2c9d5e7a1b34"

delete_media_on_completion
boolean
기본값:false

Release the provider-held media as soon as this call returns the audio, so a separate /audio/voice-changer/complete call is unnecessary. The audio cannot be retrieved again afterwards.

예시:

false

응답

Conversion still processing, or the completed audio

status
enum<string>
필수

The conversion is still running. Poll again.

사용 가능한 옵션:
PROCESSING
예시:

"PROCESSING"

average_execution_time
number
필수

Recent average end-to-end time for this model in milliseconds. Use it to pace polling.

예시:

10000

execution_duration
number
필수

Milliseconds elapsed since the conversion was queued.

예시:

4200