Get a conversion
Returns status and details of a single conversion. percentageDone rises as the AI backend processes the job; once confirmedDone is true the outputFilePlayUrl and outputFileDownloadUrl are signed URLs you can use directly.
The download URL prefers the WAV output; if no WAV is available the MP3 download URL is returned instead — the play URL always streams MP3.
Authorizations
Static API key issued by Audimee, passed as Authorization: Bearer {token}.
Path Parameters
Conversion UUID returned by POST /conversions.
Response
Conversion details.
Conversion UUID.
ISO 8601 timestamp when the conversion was created.
ID of the voice model used for this conversion. Matches the voiceModelId passed when creating it.
Processing progress, 0–100.
0 <= x <= 100true once the conversion finishes and the output URLs are usable.
true if the conversion failed.
Signed MP3 URL for streaming the converted audio. The URL is issued as soon as the conversion is created, but only resolves to playable audio once confirmedDone is true. Use confirmedDone/percentageDone to gate access — don't infer status from the URL contents.
Signed URL for downloading the converted audio — WAV when available, MP3 otherwise. Like outputFilePlayUrl, issued upfront but only resolves once confirmedDone is true.