Obter detalhe técnico por fonte
curl --request GET \
--url https://admin.kycert.com.br/api/v1/bureau/runs/{run_id}/detail \
--header 'x-api-key: <api-key>'import requests
url = "https://admin.kycert.com.br/api/v1/bureau/runs/{run_id}/detail"
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}/detail', 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}/detail",
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}/detail"
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}/detail")
.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}/detail")
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{
"run_id": "550e8400-e29b-41d4-a716-446655440000",
"sources": [
{
"source_id": "receita_federal_cpf",
"status": "VALID",
"cached": false,
"duration_ms": 820,
"checks": [
{
"check_id": "cpf_situacao_receita",
"check_label": "Situação CPF na Receita Federal",
"status": "VALID",
"result_code": "cpf_regular",
"result_label": "CPF regular — situação ativa na Receita Federal"
}
],
"error_code": null,
"error_message": null
}
],
"livemode": true
}Bureau Runs
Detalhamento técnico
Retorna o resultado normalizado e os checks de cada fonte do bureau individualmente. Útil para debugging e integração avançada.
Requer escopo detail:read — solicite ao suporte kycert para habilitação.
Nunca retorna o payload bruto das fontes — apenas dados normalizados.
GET
/
api
/
v1
/
bureau
/
runs
/
{run_id}
/
detail
Obter detalhe técnico por fonte
curl --request GET \
--url https://admin.kycert.com.br/api/v1/bureau/runs/{run_id}/detail \
--header 'x-api-key: <api-key>'import requests
url = "https://admin.kycert.com.br/api/v1/bureau/runs/{run_id}/detail"
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}/detail', 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}/detail",
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}/detail"
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}/detail")
.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}/detail")
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{
"run_id": "550e8400-e29b-41d4-a716-446655440000",
"sources": [
{
"source_id": "receita_federal_cpf",
"status": "VALID",
"cached": false,
"duration_ms": 820,
"checks": [
{
"check_id": "cpf_situacao_receita",
"check_label": "Situação CPF na Receita Federal",
"status": "VALID",
"result_code": "cpf_regular",
"result_label": "CPF regular — situação ativa na Receita Federal"
}
],
"error_code": null,
"error_message": null
}
],
"livemode": true
}Authorizations
ApiKeyHeaderBearerToken
API key no header x-api-key (recomendado)
Headers
Example:
"2026-06-03"
Path Parameters
⌘I