Get interview report and transcript
curl --request GET \
--url https://interview.qode.world/api/v1/interviews/{meetingId}/report \
--header 'Authorization: Bearer <token>'import requests
url = "https://interview.qode.world/api/v1/interviews/{meetingId}/report"
headers = {"Authorization": "Bearer <token>"}
response = requests.get(url, headers=headers)
print(response.text)const options = {method: 'GET', headers: {Authorization: 'Bearer <token>'}};
fetch('https://interview.qode.world/api/v1/interviews/{meetingId}/report', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));<?php
$curl = curl_init();
curl_setopt_array($curl, [
CURLOPT_URL => "https://interview.qode.world/api/v1/interviews/{meetingId}/report",
CURLOPT_RETURNTRANSFER => true,
CURLOPT_ENCODING => "",
CURLOPT_MAXREDIRS => 10,
CURLOPT_TIMEOUT => 30,
CURLOPT_HTTP_VERSION => CURL_HTTP_VERSION_1_1,
CURLOPT_CUSTOMREQUEST => "GET",
CURLOPT_HTTPHEADER => [
"Authorization: Bearer <token>"
],
]);
$response = curl_exec($curl);
$err = curl_error($curl);
curl_close($curl);
if ($err) {
echo "cURL Error #:" . $err;
} else {
echo $response;
}package main
import (
"fmt"
"net/http"
"io"
)
func main() {
url := "https://interview.qode.world/api/v1/interviews/{meetingId}/report"
req, _ := http.NewRequest("GET", url, nil)
req.Header.Add("Authorization", "Bearer <token>")
res, _ := http.DefaultClient.Do(req)
defer res.Body.Close()
body, _ := io.ReadAll(res.Body)
fmt.Println(string(body))
}HttpResponse<String> response = Unirest.get("https://interview.qode.world/api/v1/interviews/{meetingId}/report")
.header("Authorization", "Bearer <token>")
.asString();require 'uri'
require 'net/http'
url = URI("https://interview.qode.world/api/v1/interviews/{meetingId}/report")
http = Net::HTTP.new(url.host, url.port)
http.use_ssl = true
request = Net::HTTP::Get.new(url)
request["Authorization"] = 'Bearer <token>'
response = http.request(request)
puts response.read_body{
"success": true,
"data": {
"meetingId": "357d48ac-6ebc-4e3d-b46a-32a24c713bd3",
"useCaseId": "d8b0d895-4e04-445f-aea9-8dd3500f018a",
"candidateId": "cmookvkba00098tcgmxvs2mup",
"candidateName": "Le Phuoc Thanh",
"candidateEmail": "thanh.le+dev@qode.world",
"startDateTime": "2026-05-18T09:00:00.000Z",
"endDateTime": "2026-05-18T09:34:12.000Z",
"completedAt": "2026-05-18T09:34:12.000Z",
"meetingDuration": 2052,
"transcript": {
"id": "trn_01HX9G…",
"meetingId": "357d48ac-6ebc-4e3d-b46a-32a24c713bd3",
"rawText": "Interviewer: Tell me about yourself…",
"overallScore": 78,
"skillScore": {
"communication": 82,
"problem_solving": 76,
"technical_depth": 74
},
"feedbackSummary": {
"wentWell": "Clear structured answers; strong system-design intuition.",
"couldBeBetter": "Light on concrete metrics and quantified impact.",
"needFeedback": "Probe deeper on past production incidents."
},
"currentSalary": "$95,000",
"expectedSalary": "$120,000",
"noticePeriod": "30 days",
"motivationToLeave": "Looking for more ownership and scope.",
"hiringDecision": "PROCEED",
"isCheatingResultDetected": false,
"questionSummary": [
{
"question": "Walk me through a system you designed end-to-end.",
"answer": "Designed an event-driven ingestion pipeline on Kafka + ClickHouse…",
"timestamp": "00:04:12"
},
{
"question": "How do you debug a memory leak in production?",
"answer": "Start with heap snapshots, diff between two stable points…",
"timestamp": "00:18:47"
}
],
"createdAt": "2026-05-18T09:36:00.000Z",
"updatedAt": "2026-05-18T09:36:00.000Z"
}
}
}{
"status": 401,
"errors": "Invalid API key"
}{
"status": 404,
"errors": "Meeting not found: meetingId=357d48ac-6ebc-4e3d-b46a-32a24c713bd3"
}{
"status": 401,
"errors": "<string>"
}Interviews
Get interview report
Fetch the scored report and transcript for an interview.
GET
/
interviews
/
{meetingId}
/
report
Get interview report and transcript
curl --request GET \
--url https://interview.qode.world/api/v1/interviews/{meetingId}/report \
--header 'Authorization: Bearer <token>'import requests
url = "https://interview.qode.world/api/v1/interviews/{meetingId}/report"
headers = {"Authorization": "Bearer <token>"}
response = requests.get(url, headers=headers)
print(response.text)const options = {method: 'GET', headers: {Authorization: 'Bearer <token>'}};
fetch('https://interview.qode.world/api/v1/interviews/{meetingId}/report', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));<?php
$curl = curl_init();
curl_setopt_array($curl, [
CURLOPT_URL => "https://interview.qode.world/api/v1/interviews/{meetingId}/report",
CURLOPT_RETURNTRANSFER => true,
CURLOPT_ENCODING => "",
CURLOPT_MAXREDIRS => 10,
CURLOPT_TIMEOUT => 30,
CURLOPT_HTTP_VERSION => CURL_HTTP_VERSION_1_1,
CURLOPT_CUSTOMREQUEST => "GET",
CURLOPT_HTTPHEADER => [
"Authorization: Bearer <token>"
],
]);
$response = curl_exec($curl);
$err = curl_error($curl);
curl_close($curl);
if ($err) {
echo "cURL Error #:" . $err;
} else {
echo $response;
}package main
import (
"fmt"
"net/http"
"io"
)
func main() {
url := "https://interview.qode.world/api/v1/interviews/{meetingId}/report"
req, _ := http.NewRequest("GET", url, nil)
req.Header.Add("Authorization", "Bearer <token>")
res, _ := http.DefaultClient.Do(req)
defer res.Body.Close()
body, _ := io.ReadAll(res.Body)
fmt.Println(string(body))
}HttpResponse<String> response = Unirest.get("https://interview.qode.world/api/v1/interviews/{meetingId}/report")
.header("Authorization", "Bearer <token>")
.asString();require 'uri'
require 'net/http'
url = URI("https://interview.qode.world/api/v1/interviews/{meetingId}/report")
http = Net::HTTP.new(url.host, url.port)
http.use_ssl = true
request = Net::HTTP::Get.new(url)
request["Authorization"] = 'Bearer <token>'
response = http.request(request)
puts response.read_body{
"success": true,
"data": {
"meetingId": "357d48ac-6ebc-4e3d-b46a-32a24c713bd3",
"useCaseId": "d8b0d895-4e04-445f-aea9-8dd3500f018a",
"candidateId": "cmookvkba00098tcgmxvs2mup",
"candidateName": "Le Phuoc Thanh",
"candidateEmail": "thanh.le+dev@qode.world",
"startDateTime": "2026-05-18T09:00:00.000Z",
"endDateTime": "2026-05-18T09:34:12.000Z",
"completedAt": "2026-05-18T09:34:12.000Z",
"meetingDuration": 2052,
"transcript": {
"id": "trn_01HX9G…",
"meetingId": "357d48ac-6ebc-4e3d-b46a-32a24c713bd3",
"rawText": "Interviewer: Tell me about yourself…",
"overallScore": 78,
"skillScore": {
"communication": 82,
"problem_solving": 76,
"technical_depth": 74
},
"feedbackSummary": {
"wentWell": "Clear structured answers; strong system-design intuition.",
"couldBeBetter": "Light on concrete metrics and quantified impact.",
"needFeedback": "Probe deeper on past production incidents."
},
"currentSalary": "$95,000",
"expectedSalary": "$120,000",
"noticePeriod": "30 days",
"motivationToLeave": "Looking for more ownership and scope.",
"hiringDecision": "PROCEED",
"isCheatingResultDetected": false,
"questionSummary": [
{
"question": "Walk me through a system you designed end-to-end.",
"answer": "Designed an event-driven ingestion pipeline on Kafka + ClickHouse…",
"timestamp": "00:04:12"
},
{
"question": "How do you debug a memory leak in production?",
"answer": "Start with heap snapshots, diff between two stable points…",
"timestamp": "00:18:47"
}
],
"createdAt": "2026-05-18T09:36:00.000Z",
"updatedAt": "2026-05-18T09:36:00.000Z"
}
}
}{
"status": 401,
"errors": "Invalid API key"
}{
"status": 404,
"errors": "Meeting not found: meetingId=357d48ac-6ebc-4e3d-b46a-32a24c713bd3"
}{
"status": 401,
"errors": "<string>"
}Authorizations
Provide the API key issued to you by your organization admin. Send it as Authorization: Bearer <api-key> on every request.
Path Parameters
Meeting identifier (UUID) returned by GET /interviews in results[].meetingId.
⌘I