验证报告真伪(公开)
curl --request GET \
--url https://api.qbank.cl/platform/verify/reports/{code}import requests
url = "https://api.qbank.cl/platform/verify/reports/{code}"
response = requests.get(url)
print(response.text)const options = {method: 'GET'};
fetch('https://api.qbank.cl/platform/verify/reports/{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/verify/reports/{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/verify/reports/{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/verify/reports/{code}")
.asString();require 'uri'
require 'net/http'
url = URI("https://api.qbank.cl/platform/verify/reports/{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{
"valid": true,
"type": "verification_report",
"kind": "kyb",
"status": "ok",
"decision": "approved",
"date": "2026-07-21",
"issued_by": "CBPay"
}{
"valid": false,
"message": "this verification code does not correspond to any verification report issued by this platform"
}{
"error": "too_many_attempts",
"message": "too many verification attempts; wait a moment and retry"
}验证报告真伪(公开)
每份验证报告上印的二维码背后的公开端点(无需凭证)。验证码经加密签名 - 被篡改或伪造的验证码将返回 404 且 valid=false。响应仅暴露类型(KYC/KYB)、当前的决定状态及其日期 - 绝不暴露主体身份、文件或 AML 结果。浏览器收到品牌化 HTML 页面;API 客户端收到 JSON。按 IP 限流。
GET
/
verify
/
reports
/
{code}
验证报告真伪(公开)
curl --request GET \
--url https://api.qbank.cl/platform/verify/reports/{code}import requests
url = "https://api.qbank.cl/platform/verify/reports/{code}"
response = requests.get(url)
print(response.text)const options = {method: 'GET'};
fetch('https://api.qbank.cl/platform/verify/reports/{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/verify/reports/{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/verify/reports/{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/verify/reports/{code}")
.asString();require 'uri'
require 'net/http'
url = URI("https://api.qbank.cl/platform/verify/reports/{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{
"valid": true,
"type": "verification_report",
"kind": "kyb",
"status": "ok",
"decision": "approved",
"date": "2026-07-21",
"issued_by": "CBPay"
}{
"valid": false,
"message": "this verification code does not correspond to any verification report issued by this platform"
}{
"error": "too_many_attempts",
"message": "too many verification attempts; wait a moment and retry"
}路径参数
报告上印的验证码(也嵌入在二维码 URL 中)。
响应
报告为真;验证的当前事实。
最后修改于 2026年8月22日
⌘I