List interviews
curl --request GET \
--url https://interview.qode.world/api/v1/interviews \
--header 'Authorization: Bearer <token>'import requests
url = "https://interview.qode.world/api/v1/interviews"
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', 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",
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"
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")
.header("Authorization", "Bearer <token>")
.asString();require 'uri'
require 'net/http'
url = URI("https://interview.qode.world/api/v1/interviews")
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": {
"results": [
{
"meetingId": "357d48ac-6ebc-4e3d-b46a-32a24c713bd3",
"createdAt": "2026-05-18T08:55:21.000Z",
"candidateId": "cmookvkba00098tcgmxvs2mup",
"candidateName": "Le Phuoc Thanh",
"candidateEmail": "thanh.le+dev@qode.world",
"completedAt": "2026-05-18T09:34:12.000Z",
"isCompleted": "COMPLETED",
"recordingUrl": "https://cdn.qode.gg/recordings/357d48ac.mp4",
"transcriptUrl": "https://cdn.qode.gg/transcripts/357d48ac.json",
"reportUrl": "https://aansi.qode.world/aansi/home/interviews/report/v3/357d48ac-6ebc-4e3d-b46a-32a24c713bd3?from=%2Fhome%2Finterviews&meetingId=357d48ac-6ebc-4e3d-b46a-32a24c713bd3",
"useCaseId": "d8b0d895-4e04-445f-aea9-8dd3500f018a",
"startDateTime": "2026-05-18T09:00:00.000Z",
"endDateTime": "2026-05-18T09:34:12.000Z"
}
],
"total": 1,
"current": 1,
"pageSize": 10
}
}{
"status": 401,
"errors": "Invalid API key"
}{
"status": 401,
"errors": "<string>"
}{
"status": 404,
"errors": "Job not found: qodeJobId=d8b0d895-4e04-445f-aea9-8dd3500f018a"
}{
"status": 401,
"errors": "<string>"
}Interviews
List interviews
List interviews for a Qode job, newest first.
GET
/
interviews
List interviews
curl --request GET \
--url https://interview.qode.world/api/v1/interviews \
--header 'Authorization: Bearer <token>'import requests
url = "https://interview.qode.world/api/v1/interviews"
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', 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",
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"
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")
.header("Authorization", "Bearer <token>")
.asString();require 'uri'
require 'net/http'
url = URI("https://interview.qode.world/api/v1/interviews")
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": {
"results": [
{
"meetingId": "357d48ac-6ebc-4e3d-b46a-32a24c713bd3",
"createdAt": "2026-05-18T08:55:21.000Z",
"candidateId": "cmookvkba00098tcgmxvs2mup",
"candidateName": "Le Phuoc Thanh",
"candidateEmail": "thanh.le+dev@qode.world",
"completedAt": "2026-05-18T09:34:12.000Z",
"isCompleted": "COMPLETED",
"recordingUrl": "https://cdn.qode.gg/recordings/357d48ac.mp4",
"transcriptUrl": "https://cdn.qode.gg/transcripts/357d48ac.json",
"reportUrl": "https://aansi.qode.world/aansi/home/interviews/report/v3/357d48ac-6ebc-4e3d-b46a-32a24c713bd3?from=%2Fhome%2Finterviews&meetingId=357d48ac-6ebc-4e3d-b46a-32a24c713bd3",
"useCaseId": "d8b0d895-4e04-445f-aea9-8dd3500f018a",
"startDateTime": "2026-05-18T09:00:00.000Z",
"endDateTime": "2026-05-18T09:34:12.000Z"
}
],
"total": 1,
"current": 1,
"pageSize": 10
}
}{
"status": 401,
"errors": "Invalid API key"
}{
"status": 401,
"errors": "<string>"
}{
"status": 404,
"errors": "Job not found: qodeJobId=d8b0d895-4e04-445f-aea9-8dd3500f018a"
}{
"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.
Query Parameters
Job identifier returned by GET /jobs. The same value you would pass to POST /interviews.
Minimum string length:
1Page index (1-based).
Required range:
x >= 1Number of interviews per page. Maximum is 50.
Required range:
1 <= x <= 50⌘I