List batch items
curl --request GET \
--url https://api.qbank.cl/platform/v1/qscore/batches/{id}/items \
--header 'Authorization: Bearer <token>'import requests
url = "https://api.qbank.cl/platform/v1/qscore/batches/{id}/items"
headers = {"Authorization": "Bearer <token>"}
response = requests.get(url, headers=headers)
print(response.text)const options = {method: 'GET', headers: {Authorization: 'Bearer <token>'}};
fetch('https://api.qbank.cl/platform/v1/qscore/batches/{id}/items', 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://api.qbank.cl/platform/v1/qscore/batches/{id}/items",
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://api.qbank.cl/platform/v1/qscore/batches/{id}/items"
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://api.qbank.cl/platform/v1/qscore/batches/{id}/items")
.header("Authorization", "Bearer <token>")
.asString();require 'uri'
require 'net/http'
url = URI("https://api.qbank.cl/platform/v1/qscore/batches/{id}/items")
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{
"items": [
{
"item_id": "e1f0a9b8-7c6d-4e5f-8a9b-0c1d2e3f4a5b",
"report_id": "3f5c9f2d-7d21-4b8c-9a2d-2d5f6a1b8c01",
"doc_id": "12.345.678-5",
"subject_type": "person",
"status": "ready",
"score": 715,
"band": "B",
"created_at": "2026-08-09T14:32:10Z",
"completed_at": "2026-08-09T14:34:52Z"
},
{
"item_id": "f2a1b0c9-8d7e-4f6a-9b0c-1d2e3f4a5b6c",
"report_id": "7c9a1f3d-2e44-4b8a-9d51-0a1b2c3d4e5f",
"doc_id": "15.678.234-3",
"subject_type": "person",
"status": "ready",
"score": 430,
"band": "D",
"created_at": "2026-08-09T14:32:10Z",
"completed_at": "2026-08-09T14:35:41Z"
},
{
"item_id": "a3b2c1d0-9e8f-4a7b-8c1d-2e3f4a5b6c7d",
"report_id": "9d0e1f2a-3b4c-4d5e-8f6a-7b8c9d0e1f2a",
"doc_id": "76.543.210-3",
"subject_type": "company",
"status": "ready",
"score": 604,
"band": "C",
"created_at": "2026-08-09T14:32:10Z",
"completed_at": "2026-08-09T14:36:22Z"
},
{
"item_id": "b4c3d2e1-0f9a-4b8c-9d2e-3f4a5b6c7d8e",
"doc_id": "11.222.333-9",
"subject_type": "person",
"status": "failed",
"score": null,
"error_code": "generation_failed",
"error_message": "the report could not be generated; the fee was refunded",
"created_at": "2026-08-09T14:32:10Z",
"completed_at": "2026-08-09T14:37:05Z"
}
],
"meta": {
"page": 1,
"page_size": 50,
"total": 4
}
}List batch items
Returns the items of the batch, paginated. status filters by item status (pending, ready, failed). Each ready item exposes its report_id, score and band; each failed item exposes error_code / error_message.
GET
/
v1
/
qscore
/
batches
/
{id}
/
items
List batch items
curl --request GET \
--url https://api.qbank.cl/platform/v1/qscore/batches/{id}/items \
--header 'Authorization: Bearer <token>'import requests
url = "https://api.qbank.cl/platform/v1/qscore/batches/{id}/items"
headers = {"Authorization": "Bearer <token>"}
response = requests.get(url, headers=headers)
print(response.text)const options = {method: 'GET', headers: {Authorization: 'Bearer <token>'}};
fetch('https://api.qbank.cl/platform/v1/qscore/batches/{id}/items', 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://api.qbank.cl/platform/v1/qscore/batches/{id}/items",
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://api.qbank.cl/platform/v1/qscore/batches/{id}/items"
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://api.qbank.cl/platform/v1/qscore/batches/{id}/items")
.header("Authorization", "Bearer <token>")
.asString();require 'uri'
require 'net/http'
url = URI("https://api.qbank.cl/platform/v1/qscore/batches/{id}/items")
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{
"items": [
{
"item_id": "e1f0a9b8-7c6d-4e5f-8a9b-0c1d2e3f4a5b",
"report_id": "3f5c9f2d-7d21-4b8c-9a2d-2d5f6a1b8c01",
"doc_id": "12.345.678-5",
"subject_type": "person",
"status": "ready",
"score": 715,
"band": "B",
"created_at": "2026-08-09T14:32:10Z",
"completed_at": "2026-08-09T14:34:52Z"
},
{
"item_id": "f2a1b0c9-8d7e-4f6a-9b0c-1d2e3f4a5b6c",
"report_id": "7c9a1f3d-2e44-4b8a-9d51-0a1b2c3d4e5f",
"doc_id": "15.678.234-3",
"subject_type": "person",
"status": "ready",
"score": 430,
"band": "D",
"created_at": "2026-08-09T14:32:10Z",
"completed_at": "2026-08-09T14:35:41Z"
},
{
"item_id": "a3b2c1d0-9e8f-4a7b-8c1d-2e3f4a5b6c7d",
"report_id": "9d0e1f2a-3b4c-4d5e-8f6a-7b8c9d0e1f2a",
"doc_id": "76.543.210-3",
"subject_type": "company",
"status": "ready",
"score": 604,
"band": "C",
"created_at": "2026-08-09T14:32:10Z",
"completed_at": "2026-08-09T14:36:22Z"
},
{
"item_id": "b4c3d2e1-0f9a-4b8c-9d2e-3f4a5b6c7d8e",
"doc_id": "11.222.333-9",
"subject_type": "person",
"status": "failed",
"score": null,
"error_code": "generation_failed",
"error_message": "the report could not be generated; the fee was refunded",
"created_at": "2026-08-09T14:32:10Z",
"completed_at": "2026-08-09T14:37:05Z"
}
],
"meta": {
"page": 1,
"page_size": 50,
"total": 4
}
}Authorizations
Session JWT (from register/login) or API key (pk_...).
X-API-Key: <token> is accepted as an alternative header.
Path Parameters
Query Parameters
Filter by item status.
Available options:
pending, ready, failed Required range:
x <= 200Response
Paged batch items.
Last modified on August 22, 2026
⌘I