For employers who need the full text of candidate video responses, not just match scores and summaries.
The standard candidate export covers metadata (name, email, status, match %, qualification results, assessment summaries) but not the full transcript text of each video response. To get transcripts, you have three options: copy/paste from the Screening tab (best for one or two candidates), pull them via the Truffle API (best for automation or larger volumes), or request a one-off bulk export from support (best for a single-shot compliance or reporting need).
Option 1. Copy from the Screening tab (1–2 candidates)
The fastest path for individual transcripts. Every question on a candidate's profile has its transcript visible alongside the video.
Open the candidate's profile from the candidate list.
Click the Screening tab.
Expand any question. The transcript is shown below the video player.
Select the text and copy.
Good for spot-grabbing a transcript. Clumsy at scale.
Option 2. Truffle API (bulk or automated)
The API returns full transcript text alongside every other candidate field. Best when you need to pull many transcripts programmatically, sync them into another system, or do recurring exports.
Create an API key with Read permission. See How do I use the Truffle API?.
Fetch the position's candidates (
GET /positions/{id}/candidates).For each candidate, fetch their interview responses. The transcript text is in the response payload per question.
Write to wherever you need (spreadsheet, data warehouse, internal dashboard).
The API is on paid plans only.
Option 3. Support-assisted bulk export (one-off)
If you need a single bulk export (every candidate's transcripts on a given position, for a compliance review, legal hold, or external audit), email [email protected] with:
The position (or positions) you want transcripts for.
The file format you prefer (CSV with one row per question/response, or a ZIP of per-candidate text files).
Any privacy-related context (for example, "this is for a candidate data-disclosure request").
Support confirms receipt within one business day and delivers the export. This isn't self-serve because bulk transcript exports can contain a lot of personal data; the support-assisted path ensures the request is logged and the data is delivered securely.
Why transcripts aren't in the standard export
The default CSV/JSON export is optimized for ATS sync, reporting, and spreadsheet workflows: compact rows with structured metadata. Transcripts are long-form free text that doesn't fit that shape well (thousands of characters per response, across multiple questions per candidate). Putting them in the default export would make every row unwieldy.
If you regularly need transcripts alongside the metadata, the API's per-candidate payload gives you both in one structured JSON response, which most downstream tools can ingest cleanly.
Related
How do I export candidate data?. The standard metadata export.
How does Truffle evaluate each question?. The per-question AI evaluation that sits alongside each transcript.
