Get your latest self credit report
curl --request GET \
--url https://api.qbank.cl/platform/v1/qscore/my-report \
--header 'Authorization: Bearer <token>'import requests
url = "https://api.qbank.cl/platform/v1/qscore/my-report"
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/my-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://api.qbank.cl/platform/v1/qscore/my-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://api.qbank.cl/platform/v1/qscore/my-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://api.qbank.cl/platform/v1/qscore/my-report")
.header("Authorization", "Bearer <token>")
.asString();require 'uri'
require 'net/http'
url = URI("https://api.qbank.cl/platform/v1/qscore/my-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{
"report_id": "7d2c1a90-4e55-4b3a-9f0c-1a2b3c4d5e6f",
"subject_id": "8f5fb0d2-1d45-4a0e-9d5c-2d39f2b7a112",
"status": "ready",
"purpose": "self_access",
"lang": "es",
"score": 742,
"band": "B",
"model_version": "qscore-v2",
"reason_codes": [
{
"code": "CREDIT_HISTORY_DEPTH",
"direction": "positive",
"weight": "medium"
}
],
"verify_code": "Q7d2c1a904e554b3a9f0c1a2b3c4d5e6fa1b2c3d4e5f60718293a",
"created_at": "2026-08-08T15:04:22Z",
"completed_at": "2026-08-08T15:04:24Z",
"report": {
"meta": {
"report_id": "QSR-7D2C1A904E55",
"lang": "es",
"purpose": "self_access",
"generated_at": "2026-08-08T15:04:24Z",
"verification_code": "Q7d2c1a904e554b3a9f0c1a2b3c4d5e6fa1b2c3d4e5f60718293a",
"verification_url": "/verify/qscore/Q7d2c1a904e554b3a9f0c1a2b3c4d5e6fa1b2c3d4e5f60718293a"
},
"identity": {
"subject_type": "person",
"doc_id": "12.345.678-5",
"name": "Example Name",
"country": "CL"
},
"score": {
"score": 742,
"band": "B",
"model_version": "qscore-v2",
"computed_at": "2026-08-08T15:04:24Z"
},
"summary": [
"No delinquencies or adverse events on record."
]
}
}{
"error": "not_found",
"message": "resource not found"
}Get your latest self credit report
Returns the most recent self report of the authenticated account holder (any status), without generating a new one. Returns 404 not_found if the holder has never generated a self report. When status is ready the full normalized report object is embedded; when it is failed, error_code/error_message explain why.
GET
/
v1
/
qscore
/
my-report
Get your latest self credit report
curl --request GET \
--url https://api.qbank.cl/platform/v1/qscore/my-report \
--header 'Authorization: Bearer <token>'import requests
url = "https://api.qbank.cl/platform/v1/qscore/my-report"
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/my-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://api.qbank.cl/platform/v1/qscore/my-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://api.qbank.cl/platform/v1/qscore/my-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://api.qbank.cl/platform/v1/qscore/my-report")
.header("Authorization", "Bearer <token>")
.asString();require 'uri'
require 'net/http'
url = URI("https://api.qbank.cl/platform/v1/qscore/my-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{
"report_id": "7d2c1a90-4e55-4b3a-9f0c-1a2b3c4d5e6f",
"subject_id": "8f5fb0d2-1d45-4a0e-9d5c-2d39f2b7a112",
"status": "ready",
"purpose": "self_access",
"lang": "es",
"score": 742,
"band": "B",
"model_version": "qscore-v2",
"reason_codes": [
{
"code": "CREDIT_HISTORY_DEPTH",
"direction": "positive",
"weight": "medium"
}
],
"verify_code": "Q7d2c1a904e554b3a9f0c1a2b3c4d5e6fa1b2c3d4e5f60718293a",
"created_at": "2026-08-08T15:04:22Z",
"completed_at": "2026-08-08T15:04:24Z",
"report": {
"meta": {
"report_id": "QSR-7D2C1A904E55",
"lang": "es",
"purpose": "self_access",
"generated_at": "2026-08-08T15:04:24Z",
"verification_code": "Q7d2c1a904e554b3a9f0c1a2b3c4d5e6fa1b2c3d4e5f60718293a",
"verification_url": "/verify/qscore/Q7d2c1a904e554b3a9f0c1a2b3c4d5e6fa1b2c3d4e5f60718293a"
},
"identity": {
"subject_type": "person",
"doc_id": "12.345.678-5",
"name": "Example Name",
"country": "CL"
},
"score": {
"score": 742,
"band": "B",
"model_version": "qscore-v2",
"computed_at": "2026-08-08T15:04:24Z"
},
"summary": [
"No delinquencies or adverse events on record."
]
}
}{
"error": "not_found",
"message": "resource not found"
}Authorizations
Session JWT (from register/login) or API key (pk_...).
X-API-Key: <token> is accepted as an alternative header.
Response
Latest self report.
Last modified on August 22, 2026
⌘I