When to use this
Use this query after an interview is completed to retrieve each question (step), its answers (video URL, transcript, & duration), and any reviewer scores for the interview. You can use this information to display or play recordings directly in your own system.
GraphQL Request
Use this query to retrieve the answers for a specific interview. Make sure to replace theID value with the interview ID you want to fetch (see how to find interviews for a position). Don’t forget to update the Hireflix API Key in the headers.
Explanation
- steps (union) — fetches each interview question. Use
__typenameto branch your UI:InterviewStepTextQuestionWithVideoAnswer: Text-based questionInterviewStepVideoQuestionWithVideoAnswer: Video-based question
- scores — overall reviewer scores with the scorer’s name. You can drop this attribute if you only want to retrieve the video transcription or URL.
- answers(input: ) — the submitted answers for the different questions.
- video.transcription — language code & full text of the spoken answer.
- video.meta.duration — the length of each video response in seconds.
- video.url — returns a signed link you can use to playback interview answers.
Example Response
Learn next?
Let’s learn how to score and comments interviews.

