Obter análise completa de um run
curl --request GET \
--url https://admin.kycert.com.br/api/v1/bureau/runs/{run_id}/analysis \
--header 'x-api-key: <api-key>'import requests
url = "https://admin.kycert.com.br/api/v1/bureau/runs/{run_id}/analysis"
headers = {"x-api-key": "<api-key>"}
response = requests.get(url, headers=headers)
print(response.text)const options = {method: 'GET', headers: {'x-api-key': '<api-key>'}};
fetch('https://admin.kycert.com.br/api/v1/bureau/runs/{run_id}/analysis', 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://admin.kycert.com.br/api/v1/bureau/runs/{run_id}/analysis",
CURLOPT_RETURNTRANSFER => true,
CURLOPT_ENCODING => "",
CURLOPT_MAXREDIRS => 10,
CURLOPT_TIMEOUT => 30,
CURLOPT_HTTP_VERSION => CURL_HTTP_VERSION_1_1,
CURLOPT_CUSTOMREQUEST => "GET",
CURLOPT_HTTPHEADER => [
"x-api-key: <api-key>"
],
]);
$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://admin.kycert.com.br/api/v1/bureau/runs/{run_id}/analysis"
req, _ := http.NewRequest("GET", url, nil)
req.Header.Add("x-api-key", "<api-key>")
res, _ := http.DefaultClient.Do(req)
defer res.Body.Close()
body, _ := io.ReadAll(res.Body)
fmt.Println(string(body))
}HttpResponse<String> response = Unirest.get("https://admin.kycert.com.br/api/v1/bureau/runs/{run_id}/analysis")
.header("x-api-key", "<api-key>")
.asString();require 'uri'
require 'net/http'
url = URI("https://admin.kycert.com.br/api/v1/bureau/runs/{run_id}/analysis")
http = Net::HTTP.new(url.host, url.port)
http.use_ssl = true
request = Net::HTTP::Get.new(url)
request["x-api-key"] = '<api-key>'
response = http.request(request)
puts response.read_body{
"meta": {
"schema_version": "v1",
"generated_at": "2026-06-12T14:00:18Z",
"run_id": "550e8400-e29b-41d4-a716-446655440000",
"external_id": null
},
"metadata": null,
"analysis": {
"schema_version": "v1",
"built_at": "2026-06-12T14:00:17Z",
"decision": "rejected",
"operative_decision": "rejected",
"confidence": "full",
"findings": [
{
"check_id": "cnpj_sit_sanctions",
"source_id": "compliance_pj",
"source_label": "Compliance Regulatório PJ",
"severity": "high",
"title": "Empresa em lista de sanções regulatórias",
"detail": "CNPJ consta em lista de sanções com vigência ativa."
}
],
"blocked_by": [
{
"tier": 1,
"check_id": "cnpj_sit_sanctions",
"source_id": "compliance_pj",
"check_label": "Sanções Regulatórias PJ",
"source_label": "Compliance Regulatório PJ"
}
],
"source_groups": [
{
"id": "compliance",
"label": "Compliance e Sanções",
"status": "attention",
"sources_count": 1,
"findings_count": 1,
"sources": [
{
"source_id": "compliance_pj",
"label": "Compliance Regulatório PJ",
"status": "INVALID",
"duration_ms": 380,
"summary_label": "Sanção ativa detectada"
}
]
}
],
"review_reasons": [],
"risk_dimensions": [
{
"id": "sanctions",
"label": "Sanções",
"band": "alto",
"score": 100,
"detail": "Empresa identificada em lista de sanções regulatórias ativas."
}
],
"subject_profile": {
"type": "pj",
"fields": [
{
"label": "Razão Social",
"value": "Empresa Exemplo Comércio Ltda."
},
{
"label": "Situação Cadastral",
"value": "Ativa"
}
],
"cnaes": [
"4511-1/01"
]
},
"incomplete_sources": []
},
"livemode": true
}Bureau Runs
Análise detalhada
Retorna o resultado detalhado da análise: lista de checks com status, drivers de risco e sumário. Disponível apenas após o run completar.
Requer escopo runs:read.
GET
/
api
/
v1
/
bureau
/
runs
/
{run_id}
/
analysis
Obter análise completa de um run
curl --request GET \
--url https://admin.kycert.com.br/api/v1/bureau/runs/{run_id}/analysis \
--header 'x-api-key: <api-key>'import requests
url = "https://admin.kycert.com.br/api/v1/bureau/runs/{run_id}/analysis"
headers = {"x-api-key": "<api-key>"}
response = requests.get(url, headers=headers)
print(response.text)const options = {method: 'GET', headers: {'x-api-key': '<api-key>'}};
fetch('https://admin.kycert.com.br/api/v1/bureau/runs/{run_id}/analysis', 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://admin.kycert.com.br/api/v1/bureau/runs/{run_id}/analysis",
CURLOPT_RETURNTRANSFER => true,
CURLOPT_ENCODING => "",
CURLOPT_MAXREDIRS => 10,
CURLOPT_TIMEOUT => 30,
CURLOPT_HTTP_VERSION => CURL_HTTP_VERSION_1_1,
CURLOPT_CUSTOMREQUEST => "GET",
CURLOPT_HTTPHEADER => [
"x-api-key: <api-key>"
],
]);
$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://admin.kycert.com.br/api/v1/bureau/runs/{run_id}/analysis"
req, _ := http.NewRequest("GET", url, nil)
req.Header.Add("x-api-key", "<api-key>")
res, _ := http.DefaultClient.Do(req)
defer res.Body.Close()
body, _ := io.ReadAll(res.Body)
fmt.Println(string(body))
}HttpResponse<String> response = Unirest.get("https://admin.kycert.com.br/api/v1/bureau/runs/{run_id}/analysis")
.header("x-api-key", "<api-key>")
.asString();require 'uri'
require 'net/http'
url = URI("https://admin.kycert.com.br/api/v1/bureau/runs/{run_id}/analysis")
http = Net::HTTP.new(url.host, url.port)
http.use_ssl = true
request = Net::HTTP::Get.new(url)
request["x-api-key"] = '<api-key>'
response = http.request(request)
puts response.read_body{
"meta": {
"schema_version": "v1",
"generated_at": "2026-06-12T14:00:18Z",
"run_id": "550e8400-e29b-41d4-a716-446655440000",
"external_id": null
},
"metadata": null,
"analysis": {
"schema_version": "v1",
"built_at": "2026-06-12T14:00:17Z",
"decision": "rejected",
"operative_decision": "rejected",
"confidence": "full",
"findings": [
{
"check_id": "cnpj_sit_sanctions",
"source_id": "compliance_pj",
"source_label": "Compliance Regulatório PJ",
"severity": "high",
"title": "Empresa em lista de sanções regulatórias",
"detail": "CNPJ consta em lista de sanções com vigência ativa."
}
],
"blocked_by": [
{
"tier": 1,
"check_id": "cnpj_sit_sanctions",
"source_id": "compliance_pj",
"check_label": "Sanções Regulatórias PJ",
"source_label": "Compliance Regulatório PJ"
}
],
"source_groups": [
{
"id": "compliance",
"label": "Compliance e Sanções",
"status": "attention",
"sources_count": 1,
"findings_count": 1,
"sources": [
{
"source_id": "compliance_pj",
"label": "Compliance Regulatório PJ",
"status": "INVALID",
"duration_ms": 380,
"summary_label": "Sanção ativa detectada"
}
]
}
],
"review_reasons": [],
"risk_dimensions": [
{
"id": "sanctions",
"label": "Sanções",
"band": "alto",
"score": 100,
"detail": "Empresa identificada em lista de sanções regulatórias ativas."
}
],
"subject_profile": {
"type": "pj",
"fields": [
{
"label": "Razão Social",
"value": "Empresa Exemplo Comércio Ltda."
},
{
"label": "Situação Cadastral",
"value": "Ativa"
}
],
"cnaes": [
"4511-1/01"
]
},
"incomplete_sources": []
},
"livemode": true
}Authorizations
ApiKeyHeaderBearerToken
API key no header x-api-key (recomendado)
Headers
Example:
"2026-06-03"
Path Parameters
Response
Análise completa do run
Resposta do endpoint GET /bureau/runs/{id}/analysis
Metadados da análise gerada
Show child attributes
Show child attributes
Echo do metadata enviado no POST /bureau/runs. null se não foi enviado.
Análise KYC/AML calculada pelo motor bureau.
Show child attributes
Show child attributes
true = análise de produção real. false = análise gerada em modo sandbox.
⌘I