通过公开链接跟踪交易(公开)
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": "交易编号",
"value": "9b1deb4d-3b7d-4bad-9bdd-2b0d7b3dcb6d",
"mono": true
},
{
"label": "日期和时间",
"value": "2026年8月8日 15:29 UTC"
},
{
"label": "收款人",
"value": "María Pérez"
},
{
"label": "银行",
"value": "Banco de Venezuela"
},
{
"label": "电话",
"value": "0414-1234567"
},
{
"label": "附言",
"value": "Invoice 1042"
}
],
"amounts": [
{
"label": "到账金额",
"value": "1250000.00 VES"
},
{
"label": "汇率",
"value": "950.00"
},
{
"label": "扣款总额",
"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"
}通过公开链接跟踪交易(公开)
公开端点(无需凭证),对应每张凭证及凭证邮件上打印的可分享跟踪链接。代码经加密签名:被篡改或伪造的代码返回统一的 404。审核状态一律泛化为 processing(防提示)。timeline 按操作系列使用固定步骤序列,只携带真实时间戳(created/updated)——绝不伪造。lang 切换标签语言(托管页面默认 en,可选 es、zh)。所有响应携带 X-Robots-Tag: noindex 与 Cache-Control: no-store。与验证端点共享按 IP 限流。
GET
/
v1
/
public
/
track
/
{code}
通过公开链接跟踪交易(公开)
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": "交易编号",
"value": "9b1deb4d-3b7d-4bad-9bdd-2b0d7b3dcb6d",
"mono": true
},
{
"label": "日期和时间",
"value": "2026年8月8日 15:29 UTC"
},
{
"label": "收款人",
"value": "María Pérez"
},
{
"label": "银行",
"value": "Banco de Venezuela"
},
{
"label": "电话",
"value": "0414-1234567"
},
{
"label": "附言",
"value": "Invoice 1042"
}
],
"amounts": [
{
"label": "到账金额",
"value": "1250000.00 VES"
},
{
"label": "汇率",
"value": "950.00"
},
{
"label": "扣款总额",
"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"
}最后修改于 2026年8月22日
⌘I