查询 Qscore 印章的当前有效性(公开)
curl --request GET \
--url https://api.qbank.cl/platform/verify/qscore/seal/{code}import requests
url = "https://api.qbank.cl/platform/verify/qscore/seal/{code}"
response = requests.get(url)
print(response.text)const options = {method: 'GET'};
fetch('https://api.qbank.cl/platform/verify/qscore/seal/{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/qscore/seal/{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/qscore/seal/{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/qscore/seal/{code}")
.asString();require 'uri'
require 'net/http'
url = URI("https://api.qbank.cl/platform/verify/qscore/seal/{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": "qscore_seal",
"seal_status": "active",
"band": "A",
"evaluated_at": "2026-08-07",
"company_name": "Comercial Andes SpA",
"doc_id": "76.543.210-3",
"country": "CL"
}
查询 Qscore 印章的当前有效性(公开)
公开端点(无需凭证),对应企业通过 POST /v1/qscore/my-seal 激活的 Qscore 印章。验证码经过加密签名:被篡改或伪造的代码返回 404 且 valid: false。每次调用都会实时 评估资格:仅当印章处于激活状态且主体仍符合条件(等级 A/B 且评估不超过 90 天)时才显示 等级(A 或 B)。不再符合条件的印章返回 seal_status: not_current——反预言机:绝不透露 降至的等级、数字分数或原因。数字分数绝不出现在任何公开界面上。浏览器获得品牌化 HTML 页面(Accept: text/html);API 客户端获得 JSON。按 IP 限流。
GET
/
verify
/
qscore
/
seal
/
{code}
查询 Qscore 印章的当前有效性(公开)
curl --request GET \
--url https://api.qbank.cl/platform/verify/qscore/seal/{code}import requests
url = "https://api.qbank.cl/platform/verify/qscore/seal/{code}"
response = requests.get(url)
print(response.text)const options = {method: 'GET'};
fetch('https://api.qbank.cl/platform/verify/qscore/seal/{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/qscore/seal/{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/qscore/seal/{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/qscore/seal/{code}")
.asString();require 'uri'
require 'net/http'
url = URI("https://api.qbank.cl/platform/verify/qscore/seal/{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": "qscore_seal",
"seal_status": "active",
"band": "A",
"evaluated_at": "2026-08-07",
"company_name": "Comercial Andes SpA",
"doc_id": "76.543.210-3",
"country": "CL"
}
路径参数
印章的公开验证码(印章资源的 verify_code 字段)。
响应
印章状态,实时评估。
最后修改于 2026年8月22日
⌘I