curl --request GET \
--url https://api.qbank.cl/platform/v1/public/track/{code}import requests
url = "https://api.qbank.cl/platform/v1/public/track/{code}"
response = requests.get(url)
print(response.text)const options = {method: 'GET'};
fetch('https://api.qbank.cl/platform/v1/public/track/{code}', 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/public/track/{code}",
CURLOPT_RETURNTRANSFER => true,
CURLOPT_ENCODING => "",
CURLOPT_MAXREDIRS => 10,
CURLOPT_TIMEOUT => 30,
CURLOPT_HTTP_VERSION => CURL_HTTP_VERSION_1_1,
CURLOPT_CUSTOMREQUEST => "GET",
]);
$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/public/track/{code}"
req, _ := http.NewRequest("GET", url, nil)
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/public/track/{code}")
.asString();require 'uri'
require 'net/http'
url = URI("https://api.qbank.cl/platform/v1/public/track/{code}")
http = Net::HTTP.new(url.host, url.port)
http.use_ssl = true
request = Net::HTTP::Get.new(url)
response = http.request(request)
puts response.read_body{
"kind": "payout",
"id": "9b1deb4d-3b7d-4bad-9bdd-2b0d7b3dcb6d",
"status": "in_transit",
"status_class": "pending",
"subtitle": "Venezuela — Pago Móvil",
"fields": [
{
"label": "ID DE TRANSACCIÓN",
"value": "9b1deb4d-3b7d-4bad-9bdd-2b0d7b3dcb6d",
"mono": true
},
{
"label": "FECHA Y HORA",
"value": "8 de agosto de 2026 a las 15:29 UTC"
},
{
"label": "BENEFICIARIO",
"value": "María Pérez"
},
{
"label": "BANCO",
"value": "Banco de Venezuela"
},
{
"label": "TELÉFONO",
"value": "0414-1234567"
},
{
"label": "MENSAJE",
"value": "Factura 1042"
}
],
"amounts": [
{
"label": "MONTO RECIBIDO",
"value": "1250000.00 VES"
},
{
"label": "TASA DE CAMBIO",
"value": "950.00"
},
{
"label": "DÉBITO TOTAL",
"value": "1315.79 USDT"
}
],
"created_at": "2026-08-08T15:29:04Z",
"timeline": [
{
"key": "initiated",
"state": "complete",
"at": "2026-08-08T15:29:04Z"
},
{
"key": "processing",
"state": "complete",
"at": null
},
{
"key": "in_transit",
"state": "in_progress",
"at": null
},
{
"key": "completed",
"state": "upcoming",
"at": null
}
],
"branding": {
"name": "CBPay",
"logo_url": "https://cdn.example.com/logo.png",
"website": "https://www.cbpayapp.com",
"accent": "#FBC140"
},
"receipt_pdf_url": "https://api.qbank.cl/platform/v1/public/track/Cb4f8a…/receipt.pdf",
"whats_next": "payout.in_transit",
"support": {
"website": "https://www.cbpayapp.com"
}
}{
"error": "not_found",
"message": "this tracking link does not correspond to any transaction issued by this platform"
}{
"error": "too_many_attempts",
"message": "too many requests; wait a moment and retry"
}Seguir una operación por su link público (público)
Endpoint PÚBLICO (sin credenciales) detrás del link de seguimiento compartible impreso en cada comprobante y email de comprobante. El código viene firmado criptográficamente: uno adulterado o inventado responde un 404 uniforme. Los estados de revisión se generalizan a processing (anti tipping-off). La timeline usa una secuencia fija de pasos por familia de operación y solo lleva timestamps REALES (created/updated) — jamás fabricados. lang cambia las etiquetas (en por defecto vía la página hospedada, es, zh). Toda respuesta lleva X-Robots-Tag: noindex y Cache-Control: no-store. Comparte el rate limit por IP del endpoint de verificación.
curl --request GET \
--url https://api.qbank.cl/platform/v1/public/track/{code}import requests
url = "https://api.qbank.cl/platform/v1/public/track/{code}"
response = requests.get(url)
print(response.text)const options = {method: 'GET'};
fetch('https://api.qbank.cl/platform/v1/public/track/{code}', 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/public/track/{code}",
CURLOPT_RETURNTRANSFER => true,
CURLOPT_ENCODING => "",
CURLOPT_MAXREDIRS => 10,
CURLOPT_TIMEOUT => 30,
CURLOPT_HTTP_VERSION => CURL_HTTP_VERSION_1_1,
CURLOPT_CUSTOMREQUEST => "GET",
]);
$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/public/track/{code}"
req, _ := http.NewRequest("GET", url, nil)
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/public/track/{code}")
.asString();require 'uri'
require 'net/http'
url = URI("https://api.qbank.cl/platform/v1/public/track/{code}")
http = Net::HTTP.new(url.host, url.port)
http.use_ssl = true
request = Net::HTTP::Get.new(url)
response = http.request(request)
puts response.read_body{
"kind": "payout",
"id": "9b1deb4d-3b7d-4bad-9bdd-2b0d7b3dcb6d",
"status": "in_transit",
"status_class": "pending",
"subtitle": "Venezuela — Pago Móvil",
"fields": [
{
"label": "ID DE TRANSACCIÓN",
"value": "9b1deb4d-3b7d-4bad-9bdd-2b0d7b3dcb6d",
"mono": true
},
{
"label": "FECHA Y HORA",
"value": "8 de agosto de 2026 a las 15:29 UTC"
},
{
"label": "BENEFICIARIO",
"value": "María Pérez"
},
{
"label": "BANCO",
"value": "Banco de Venezuela"
},
{
"label": "TELÉFONO",
"value": "0414-1234567"
},
{
"label": "MENSAJE",
"value": "Factura 1042"
}
],
"amounts": [
{
"label": "MONTO RECIBIDO",
"value": "1250000.00 VES"
},
{
"label": "TASA DE CAMBIO",
"value": "950.00"
},
{
"label": "DÉBITO TOTAL",
"value": "1315.79 USDT"
}
],
"created_at": "2026-08-08T15:29:04Z",
"timeline": [
{
"key": "initiated",
"state": "complete",
"at": "2026-08-08T15:29:04Z"
},
{
"key": "processing",
"state": "complete",
"at": null
},
{
"key": "in_transit",
"state": "in_progress",
"at": null
},
{
"key": "completed",
"state": "upcoming",
"at": null
}
],
"branding": {
"name": "CBPay",
"logo_url": "https://cdn.example.com/logo.png",
"website": "https://www.cbpayapp.com",
"accent": "#FBC140"
},
"receipt_pdf_url": "https://api.qbank.cl/platform/v1/public/track/Cb4f8a…/receipt.pdf",
"whats_next": "payout.in_transit",
"support": {
"website": "https://www.cbpayapp.com"
}
}{
"error": "not_found",
"message": "this tracking link does not correspond to any transaction issued by this platform"
}{
"error": "too_many_attempts",
"message": "too many requests; wait a moment and retry"
}Parámetros de ruta
Código de seguimiento firmado impreso en el comprobante (el mismo código de la URL de verificación).
Parámetros de consulta
Idioma de las etiquetas, el subtítulo y whats_next.
en, es, zh Respuesta
Estado público vigente de la operación.