Get recording
GET/api/v1/interview/sessions/:sessionId/recording
Streams the session's audio recording back to you as raw audio
bytes (audio/wav). Point an <audio> element or download at this URL
directly — the platform fetches the recording from the ZenHire interview
backend server-to-server and pipes the bytes through, so playback stays
on the platform domain with no off-domain redirect.
Available only once the completion webhook has reported the recording.
Before then this returns 409 ARTIFACT_NOT_READY.
Request
Responses
- 200
- 401
- 403
- 404
- 409
- 500
- 502
The audio recording, streamed as bytes.
Authentication required.
The session belongs to another client.
The requested resource was not found.
No recording is available for this session yet.
Internal error.
The interview service is unreachable or returned an error.