Skip to content
Vai integrar a API do Zarv ID com ajuda de IA? Copie a instrução que aponta o modelo para esta documentação.
Ver a instrução
Você vai integrar a API do Zarv ID. Use a documentação oficial como fonte da verdade.

- Página desta integração: https://developers.zarv.com/api/zarv-id/
- Spec OpenAPI (fonte da verdade para rotas e schemas): https://developers.zarv.com/openapi/zarv-api.json
- Autenticação: https://developers.zarv.com/api/zarv-id/authentication
- Webhook de verificação: https://developers.zarv.com/api/zarv-id/webhook
- Índice da documentação em markdown: https://developers.zarv.com/llms.txt
- Documentação completa em um arquivo: https://developers.zarv.com/llms-full.txt

O spec OpenAPI acima é a fonte da verdade para rotas, parâmetros e schemas — confira nele antes de escrever qualquer request. A decisão final chega por webhook, não pela resposta da chamada que cria a verificação.

Antes de escrever qualquer código, leia a página desta integração. Siga exatamente os nomes de campos, endpoints, callbacks e formatos que estiverem documentados — não invente parâmetros nem endpoints, e não deduza comportamento a partir de outras APIs que você conhece. Se algo de que você precisa não estiver na documentação, diga que não está em vez de supor.

Minha tarefa: [ex.: criar uma verificação de identidade e tratar o webhook de resultado]

Documentação da API do Zarv ID

Servers​

https://services.zarv.comProdução

Autenticação​


Login​

POST
/api/v1/authentication

Autenticação para obter um token de acesso

Request Body​

application/json
JSON
{
  
"username": "[email protected]",
  
"password": "1234"
}

Responses​

Autenticação realizada com sucesso

application/json
JSON
{
  
"accessToken": "eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJzdWIiOiIxMjM0NTY3ODkwIiwibmFtZSI6IkpvaG4gRG9lIiwiaWF0IjoxNTE2MjM5MDIyfQ.SflKxwRJSMeKKF2QT4fwpMeJf36POk6yJV_adQssw5c",
  
"refreshToken": "eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJzdWIiOiIxMjM0NTY3ODkwIiwibmFtZSI6IkpvaG4gRG9lIiwiaWF0IjoxNTE2MjM5MDIyfQ.SflKxwRJSMeKKF2QT4fwpMeJf36POk6yJV_adQssw5c",
  
"expiresIn": 300,
  
"refreshExpiresIn": 3600,
  
"tokenType": "Bearer"
}

Playground​

Body

Samples​


Renovar token​

POST
/api/v1/authentication/refresh

Troca um token de renovação válido por um novo par de tokens. Guarde sempre o novo refreshToken retornado.

Request Body​

application/json
JSON
{
  
"refreshToken": "string"
}

Responses​

Token renovado com sucesso

application/json
JSON
{
  
"accessToken": "eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJzdWIiOiIxMjM0NTY3ODkwIiwibmFtZSI6IkpvaG4gRG9lIiwiaWF0IjoxNTE2MjM5MDIyfQ.SflKxwRJSMeKKF2QT4fwpMeJf36POk6yJV_adQssw5c",
  
"refreshToken": "eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJzdWIiOiIxMjM0NTY3ODkwIiwibmFtZSI6IkpvaG4gRG9lIiwiaWF0IjoxNTE2MjM5MDIyfQ.SflKxwRJSMeKKF2QT4fwpMeJf36POk6yJV_adQssw5c",
  
"expiresIn": 300,
  
"refreshExpiresIn": 3600,
  
"tokenType": "Bearer"
}

Playground​

Body

Samples​


Consultar verificações​

GET
/api/v2/verifications

Obtém todas as verificações com filtros opcionais

Authorizations​

Authentication v2

For more details, see Authentication v2

Type
HTTP (bearer)

Parameters​

Query Parameters

nationalId
Type
string
Example"012345678900"
Min Length
11
Max Length
14
status

Filtra pelo status da verificação.

Type
string
Valid values
"CREATED""PROCESSING""ANALYZING""COMPLETED""FAILED""CNH_EXTRACT"
Example"COMPLETED"
search

Busca parcial e case-insensitive por CPF/CNPJ ou nome. Combina com os demais filtros.

Type
string
Example"maria"
types

Filtra por um ou mais tipos de verificação. Repita o parâmetro para múltiplos valores (ex.: ?types=full&types=light).

Type
array
Example"full""light"
feedbackStatus

Filtra pelo status do feedback (decisão de aprovação) mais recente da verificação. NOTSTARTED retorna verificações que ainda não receberam feedback.

Type
string
Valid values
"NOTSTARTED""APPROVED""REPROVED""STANDBY""WAIVED"
Example"APPROVED"
incomplete

Quando true, retorna apenas verificações potencialmente travadas: em CREATED ou PROCESSING e criadas entre 15 minutos e 12 horas atrás.

Type
boolean
Exampletrue
page
Type
integer
Example1
Minimum
1
limit
Type
integer
Example10
Minimum
1
Maximum
25
scoreGte

Filtra verificações com Zarv Score maior ou igual a este valor (inclusive, faixa 0–1000). Combine com scoreLte para um intervalo fechado.

Type
integer
Example500
Minimum
0
Maximum
1000
scoreLte

Filtra verificações com Zarv Score menor ou igual a este valor (inclusive, faixa 0–1000).

Type
integer
Example800
Minimum
0
Maximum
1000

Responses​

Lista de verificações

application/json
JSON
{
  
"verifications": [
  
  
{
  
  
  
"id": "805181ca-2956-49e1-81bb-93d1792d269d",
  
  
  
"workspaceId": "bc5a5b9e-3bb2-4998-b301-a6a39314d330",
  
  
  
"userId": "767b88ea-6f5e-4256-b6bb-726cb402cd7b",
  
  
  
"nationalId": "012345678900",
  
  
  
"name": "FOO BAR",
  
  
  
"status": "COMPLETED",
  
  
  
"verification": {
  
  
  
  
"type": "full",
  
  
  
  
"finance": {
  
  
  
  
  
"advanced": true,
  
  
  
  
  
"restrictions": true
  
  
  
  
},
  
  
  
  
"result": {
  
  
  
  
  
"score": 1000,
  
  
  
  
  
"scoreFactor": 3,
  
  
  
  
  
"rules": [
  
  
  
  
  
  
[
  
  
  
  
  
  
  
"PROFILE_SUSPECTED_PERSON_BLACKLIST",
  
  
  
  
  
  
  
"FINANCE_SOCIAL_ASSISTANCES",
  
  
  
  
  
  
  
"FINANCE_ASSET",
  
  
  
  
  
  
  
"RELATED_GHOST_PERSONAL_RELATIONSHIPS",
  
  
  
  
  
  
  
"LAWSUIT_PROCESS_REDFLAG_L1",
  
  
  
  
  
  
  
"LAWSUIT_SUSPECT_PROCESS_L2"
  
  
  
  
  
  
]
  
  
  
  
  
],
  
  
  
  
  
"execution": {
  
  
  
  
  
  
"startedAt": "2025-05-12T14:05:53Z",
  
  
  
  
  
  
"endedAt": "2025-05-12T14:05:53Z",
  
  
  
  
  
  
"durationMs": 799
  
  
  
  
  
}
  
  
  
  
},
  
  
  
  
"person": {
  
  
  
  
  
"profile": {
  
  
  
  
  
  
"name": "FOO BAR",
  
  
  
  
  
  
"nationalId": "012345678900",
  
  
  
  
  
  
"fiscalStatus": "REGULAR",
  
  
  
  
  
  
"obitFlag": false,
  
  
  
  
  
  
"birthDate": "1990-01-01",
  
  
  
  
  
  
"age": 30,
  
  
  
  
  
  
"gender": "F",
  
  
  
  
  
  
"contacts": {
  
  
  
  
  
  
  
"addresses": [
  
  
  
  
  
  
  
  
{
  
  
  
  
  
  
  
  
  
"type": "WORK",
  
  
  
  
  
  
  
  
  
"street": "Rua das Flores",
  
  
  
  
  
  
  
  
  
"number": "123",
  
  
  
  
  
  
  
  
  
"neighborhood": "Bairro das Flores",
  
  
  
  
  
  
  
  
  
"city": "São Paulo",
  
  
  
  
  
  
  
  
  
"state": "SP",
  
  
  
  
  
  
  
  
  
"postalCode": "1234567890",
  
  
  
  
  
  
  
  
  
"createdAt": "2025-05-12T14:05:53Z",
  
  
  
  
  
  
  
  
  
"updatedAt": "2025-05-12T14:05:53Z"
  
  
  
  
  
  
  
  
}
  
  
  
  
  
  
  
],
  
  
  
  
  
  
  
"emails": [
  
  
  
  
  
  
  
  
"[email protected]"
  
  
  
  
  
  
  
],
  
  
  
  
  
  
  
"phones": [
  
  
  
  
  
  
  
  
{
  
  
  
  
  
  
  
  
  
"type": "MOBILE",
  
  
  
  
  
  
  
  
  
"number": "999999999",
  
  
  
  
  
  
  
  
  
"area": "13",
  
  
  
  
  
  
  
  
  
"country": "55",
  
  
  
  
  
  
  
  
  
"createdAt": "2025-05-12",
  
  
  
  
  
  
  
  
  
"updatedAt": "2025-05-12"
  
  
  
  
  
  
  
  
}
  
  
  
  
  
  
  
]
  
  
  
  
  
  
},
  
  
  
  
  
  
"indicators": {
  
  
  
  
  
  
  
"blacklisted": {
  
  
  
  
  
  
  
  
"risky": true,
  
  
  
  
  
  
  
  
"value": 1
  
  
  
  
  
  
  
},
  
  
  
  
  
  
  
"blacklistedCompanies": {
  
  
  
  
  
  
  
  
"risky": false,
  
  
  
  
  
  
  
  
"value": 0
  
  
  
  
  
  
  
},
  
  
  
  
  
  
  
"blacklistedRelated": {
  
  
  
  
  
  
  
  
"risky": false,
  
  
  
  
  
  
  
  
"value": 0
  
  
  
  
  
  
  
}
  
  
  
  
  
  
}
  
  
  
  
  
},
  
  
  
  
  
"finance": {
  
  
  
  
  
  
"salary": 1000,
  
  
  
  
  
  
"income": "5 A 7 SM",
  
  
  
  
  
  
"totalAssets": "ABAIXO DE 100K",
  
  
  
  
  
  
"taxReturns": [
  
  
  
  
  
  
  
{
  
  
  
  
  
  
  
  
"year": "2024",
  
  
  
  
  
  
  
  
"status": "SALDO INEXISTENTE DE IMPOSTO A PAGAR OU A RESTITUIR",
  
  
  
  
  
  
  
  
"bank": "BANCO DO BRASIL",
  
  
  
  
  
  
  
  
"updatedAt": "2025-05-12"
  
  
  
  
  
  
  
}
  
  
  
  
  
  
],
  
  
  
  
  
  
"collections": {
  
  
  
  
  
  
  
"total": 17,
  
  
  
  
  
  
  
"totalOrigins": 2,
  
  
  
  
  
  
  
"updatedAt": "2025-05-12"
  
  
  
  
  
  
},
  
  
  
  
  
  
"assistancePrograms": {
  
  
  
  
  
  
  
"programs": [
  
  
  
  
  
  
  
  
{
  
  
  
  
  
  
  
  
  
"name": "BOLSA FAMÍLIA",
  
  
  
  
  
  
  
  
  
"city": "São Paulo",
  
  
  
  
  
  
  
  
  
"state": "SP",
  
  
  
  
  
  
  
  
  
"active": true,
  
  
  
  
  
  
  
  
  
"amount": 1000,
  
  
  
  
  
  
  
  
  
"totalAmount": 1000,
  
  
  
  
  
  
  
  
  
"startedAt": "2025-05-12",
  
  
  
  
  
  
  
  
  
"endedAt": "2025-05-12"
  
  
  
  
  
  
  
  
}
  
  
  
  
  
  
  
],
  
  
  
  
  
  
  
"total": 1,
  
  
  
  
  
  
  
"totalActive": 0
  
  
  
  
  
  
},
  
  
  
  
  
  
"indicators": {
  
  
  
  
  
  
  
"monthlyIncome": {
  
  
  
  
  
  
  
  
"risky": false,
  
  
  
  
  
  
  
  
"value": 1000
  
  
  
  
  
  
  
},
  
  
  
  
  
  
  
"assistancePrograms": {
  
  
  
  
  
  
  
  
"risky": false,
  
  
  
  
  
  
  
  
"value": 0
  
  
  
  
  
  
  
},
  
  
  
  
  
  
  
"ltyTaxDeclarations": {
  
  
  
  
  
  
  
  
"risky": true,
  
  
  
  
  
  
  
  
"value": 1
  
  
  
  
  
  
  
},
  
  
  
  
  
  
  
"collections": {
  
  
  
  
  
  
  
  
"risky": true,
  
  
  
  
  
  
  
  
"value": 17
  
  
  
  
  
  
  
}
  
  
  
  
  
  
},
  
  
  
  
  
  
"restrictions": {
  
  
  
  
  
  
  
"registerLogs": "Cliente notificado, período de resposta encerrado, dados prontos para serem usados",
  
  
  
  
  
  
  
"isNegative": true,
  
  
  
  
  
  
  
"hasData": true,
  
  
  
  
  
  
  
"segment": "Atraso severo (Negativo ativo ou CCF ou ação ou atraso maior que 90 dias no CP.)",
  
  
  
  
  
  
  
"reportedBy": "BANCO SANTANDER BRASIL S.A.",
  
  
  
  
  
  
  
"reportedAt": "2025-05-12",
  
  
  
  
  
  
  
"status": "Ativo",
  
  
  
  
  
  
  
"city": "São Paulo",
  
  
  
  
  
  
  
"amount": "R$869,73",
  
  
  
  
  
  
  
"type": "Créditos e Financiamentos",
  
  
  
  
  
  
  
"totalAmount": 869.73,
  
  
  
  
  
  
  
"consultationLogs": {
  
  
  
  
  
  
  
  
"60": 0,
  
  
  
  
  
  
  
  
"90": 1,
  
  
  
  
  
  
  
  
"+90": 2,
  
  
  
  
  
  
  
  
"+30": 0
  
  
  
  
  
  
  
}
  
  
  
  
  
  
}
  
  
  
  
  
},
  
  
  
  
  
"lawsuits": {
  
  
  
  
  
},
  
  
  
  
  
"related": {
  
  
  
  
  
},
  
  
  
  
  
"financeAdvanced": {
  
  
  
  
  
  
"overdueDebts": {
  
  
  
  
  
  
  
"count": 13,
  
  
  
  
  
  
  
"balanceBrl": 220983.9,
  
  
  
  
  
  
  
"firstAt": "2024-06-18",
  
  
  
  
  
  
  
"lastAt": "2025-08-02",
  
  
  
  
  
  
  
"items": [
  
  
  
  
  
  
  
  
{
  
  
  
  
  
  
  
  
  
"occurredAt": "2025-03-19",
  
  
  
  
  
  
  
  
  
"amountBrl": 1820.55,
  
  
  
  
  
  
  
  
  
"creditor": "BANCO EXEMPLO S.A.",
  
  
  
  
  
  
  
  
  
"contractId": "000123456789",
  
  
  
  
  
  
  
  
  
"notaryOffice": "10",
  
  
  
  
  
  
  
  
  
"court": "2A VARA CIVEL",
  
  
  
  
  
  
  
  
  
"city": "SAO PAULO",
  
  
  
  
  
  
  
  
  
"state": "SP",
  
  
  
  
  
  
  
  
  
"principalDebtor": true
  
  
  
  
  
  
  
  
}
  
  
  
  
  
  
  
],
  
  
  
  
  
  
  
"truncated": true
  
  
  
  
  
  
},
  
  
  
  
  
  
"protests": {
  
  
  
  
  
  
  
"count": 13,
  
  
  
  
  
  
  
"balanceBrl": 220983.9,
  
  
  
  
  
  
  
"firstAt": "2024-06-18",
  
  
  
  
  
  
  
"lastAt": "2025-08-02",
  
  
  
  
  
  
  
"items": [
  
  
  
  
  
  
  
  
{
  
  
  
  
  
  
  
  
  
"occurredAt": "2025-03-19",
  
  
  
  
  
  
  
  
  
"amountBrl": 1820.55,
  
  
  
  
  
  
  
  
  
"creditor": "BANCO EXEMPLO S.A.",
  
  
  
  
  
  
  
  
  
"contractId": "000123456789",
  
  
  
  
  
  
  
  
  
"notaryOffice": "10",
  
  
  
  
  
  
  
  
  
"court": "2A VARA CIVEL",
  
  
  
  
  
  
  
  
  
"city": "SAO PAULO",
  
  
  
  
  
  
  
  
  
"state": "SP",
  
  
  
  
  
  
  
  
  
"principalDebtor": true
  
  
  
  
  
  
  
  
}
  
  
  
  
  
  
  
],
  
  
  
  
  
  
  
"truncated": true
  
  
  
  
  
  
},
  
  
  
  
  
  
"badChecks": {
  
  
  
  
  
  
  
"count": 0
  
  
  
  
  
  
},
  
  
  
  
  
  
"judgementFilings": {
  
  
  
  
  
  
  
"count": 13,
  
  
  
  
  
  
  
"balanceBrl": 220983.9,
  
  
  
  
  
  
  
"firstAt": "2024-06-18",
  
  
  
  
  
  
  
"lastAt": "2025-08-02",
  
  
  
  
  
  
  
"items": [
  
  
  
  
  
  
  
  
{
  
  
  
  
  
  
  
  
  
"occurredAt": "2025-03-19",
  
  
  
  
  
  
  
  
  
"amountBrl": 1820.55,
  
  
  
  
  
  
  
  
  
"creditor": "BANCO EXEMPLO S.A.",
  
  
  
  
  
  
  
  
  
"contractId": "000123456789",
  
  
  
  
  
  
  
  
  
"notaryOffice": "10",
  
  
  
  
  
  
  
  
  
"court": "2A VARA CIVEL",
  
  
  
  
  
  
  
  
  
"city": "SAO PAULO",
  
  
  
  
  
  
  
  
  
"state": "SP",
  
  
  
  
  
  
  
  
  
"principalDebtor": true
  
  
  
  
  
  
  
  
}
  
  
  
  
  
  
  
],
  
  
  
  
  
  
  
"truncated": true
  
  
  
  
  
  
},
  
  
  
  
  
  
"bankruptcy": {
  
  
  
  
  
  
  
"count": 0,
  
  
  
  
  
  
  
"balanceBrl": 0,
  
  
  
  
  
  
  
"lastAt": "2025-01-10"
  
  
  
  
  
  
},
  
  
  
  
  
  
"history": {
  
  
  
  
  
  
  
"oldestAt": "2020-09-30",
  
  
  
  
  
  
  
"daysFromCutoff": 22,
  
  
  
  
  
  
  
"atEdge": true
  
  
  
  
  
  
},
  
  
  
  
  
  
"registration": {
  
  
  
  
  
  
  
"status": "REGULAR",
  
  
  
  
  
  
  
"statusAt": "2026-09-05"
  
  
  
  
  
  
}
  
  
  
  
  
}
  
  
  
  
},
  
  
  
  
"datasets": {
  
  
  
  
  
"additionalProperties": {
  
  
  
  
  
  
"additionalProperties": "string"
  
  
  
  
  
}
  
  
  
  
},
  
  
  
  
"version": "v4",
  
  
  
  
"createdAt": "2025-05-12T14:05:53Z",
  
  
  
  
"updatedAt": "2025-05-12T14:05:53Z"
  
  
  
}
  
  
}
  
],
  
"page": 1,
  
"limit": 10,
  
"total": 100
}

Playground​

Authorization
Variables
Key
Value

Samples​


Criar uma verificação​

POST
/api/v2/verifications

Cria uma nova verificação para um CPF ou CNPJ

Authorizations​

Authentication v2

For more details, see Authentication v2

Type
HTTP (bearer)

Request Body​

application/json
JSON
{
  
"nationalId": "012345678900",
  
"verifications": {
  
  
"type": "full",
  
  
"finance": {
  
  
  
"advanced": true,
  
  
  
"restrictions": true
  
  
}
  
}
}

Responses​

Verificação criada com sucesso

application/json
JSON
{
  
"id": "805181ca-2956-49e1-81bb-93d1792d269d",
  
"workspaceId": "bc5a5b9e-3bb2-4998-b301-a6a39314d330",
  
"userId": "767b88ea-6f5e-4256-b6bb-726cb402cd7b",
  
"nationalId": "012345678900",
  
"name": "FOO BAR",
  
"status": "COMPLETED",
  
"verification": {
  
  
"type": "full",
  
  
"finance": {
  
  
  
"advanced": true,
  
  
  
"restrictions": true
  
  
},
  
  
"result": {
  
  
  
"score": 1000,
  
  
  
"scoreFactor": 3,
  
  
  
"rules": [
  
  
  
  
[
  
  
  
  
  
"PROFILE_SUSPECTED_PERSON_BLACKLIST",
  
  
  
  
  
"FINANCE_SOCIAL_ASSISTANCES",
  
  
  
  
  
"FINANCE_ASSET",
  
  
  
  
  
"RELATED_GHOST_PERSONAL_RELATIONSHIPS",
  
  
  
  
  
"LAWSUIT_PROCESS_REDFLAG_L1",
  
  
  
  
  
"LAWSUIT_SUSPECT_PROCESS_L2"
  
  
  
  
]
  
  
  
],
  
  
  
"execution": {
  
  
  
  
"startedAt": "2025-05-12T14:05:53Z",
  
  
  
  
"endedAt": "2025-05-12T14:05:53Z",
  
  
  
  
"durationMs": 799
  
  
  
}
  
  
},
  
  
"person": {
  
  
  
"profile": {
  
  
  
  
"name": "FOO BAR",
  
  
  
  
"nationalId": "012345678900",
  
  
  
  
"fiscalStatus": "REGULAR",
  
  
  
  
"obitFlag": false,
  
  
  
  
"birthDate": "1990-01-01",
  
  
  
  
"age": 30,
  
  
  
  
"gender": "F",
  
  
  
  
"contacts": {
  
  
  
  
  
"addresses": [
  
  
  
  
  
  
{
  
  
  
  
  
  
  
"type": "WORK",
  
  
  
  
  
  
  
"street": "Rua das Flores",
  
  
  
  
  
  
  
"number": "123",
  
  
  
  
  
  
  
"neighborhood": "Bairro das Flores",
  
  
  
  
  
  
  
"city": "São Paulo",
  
  
  
  
  
  
  
"state": "SP",
  
  
  
  
  
  
  
"postalCode": "1234567890",
  
  
  
  
  
  
  
"createdAt": "2025-05-12T14:05:53Z",
  
  
  
  
  
  
  
"updatedAt": "2025-05-12T14:05:53Z"
  
  
  
  
  
  
}
  
  
  
  
  
],
  
  
  
  
  
"emails": [
  
  
  
  
  
  
"[email protected]"
  
  
  
  
  
],
  
  
  
  
  
"phones": [
  
  
  
  
  
  
{
  
  
  
  
  
  
  
"type": "MOBILE",
  
  
  
  
  
  
  
"number": "999999999",
  
  
  
  
  
  
  
"area": "13",
  
  
  
  
  
  
  
"country": "55",
  
  
  
  
  
  
  
"createdAt": "2025-05-12",
  
  
  
  
  
  
  
"updatedAt": "2025-05-12"
  
  
  
  
  
  
}
  
  
  
  
  
]
  
  
  
  
},
  
  
  
  
"indicators": {
  
  
  
  
  
"blacklisted": {
  
  
  
  
  
  
"risky": true,
  
  
  
  
  
  
"value": 1
  
  
  
  
  
},
  
  
  
  
  
"blacklistedCompanies": {
  
  
  
  
  
  
"risky": false,
  
  
  
  
  
  
"value": 0
  
  
  
  
  
},
  
  
  
  
  
"blacklistedRelated": {
  
  
  
  
  
  
"risky": false,
  
  
  
  
  
  
"value": 0
  
  
  
  
  
}
  
  
  
  
}
  
  
  
},
  
  
  
"finance": {
  
  
  
  
"salary": 1000,
  
  
  
  
"income": "5 A 7 SM",
  
  
  
  
"totalAssets": "ABAIXO DE 100K",
  
  
  
  
"taxReturns": [
  
  
  
  
  
{
  
  
  
  
  
  
"year": "2024",
  
  
  
  
  
  
"status": "SALDO INEXISTENTE DE IMPOSTO A PAGAR OU A RESTITUIR",
  
  
  
  
  
  
"bank": "BANCO DO BRASIL",
  
  
  
  
  
  
"updatedAt": "2025-05-12"
  
  
  
  
  
}
  
  
  
  
],
  
  
  
  
"collections": {
  
  
  
  
  
"total": 17,
  
  
  
  
  
"totalOrigins": 2,
  
  
  
  
  
"updatedAt": "2025-05-12"
  
  
  
  
},
  
  
  
  
"assistancePrograms": {
  
  
  
  
  
"programs": [
  
  
  
  
  
  
{
  
  
  
  
  
  
  
"name": "BOLSA FAMÍLIA",
  
  
  
  
  
  
  
"city": "São Paulo",
  
  
  
  
  
  
  
"state": "SP",
  
  
  
  
  
  
  
"active": true,
  
  
  
  
  
  
  
"amount": 1000,
  
  
  
  
  
  
  
"totalAmount": 1000,
  
  
  
  
  
  
  
"startedAt": "2025-05-12",
  
  
  
  
  
  
  
"endedAt": "2025-05-12"
  
  
  
  
  
  
}
  
  
  
  
  
],
  
  
  
  
  
"total": 1,
  
  
  
  
  
"totalActive": 0
  
  
  
  
},
  
  
  
  
"indicators": {
  
  
  
  
  
"monthlyIncome": {
  
  
  
  
  
  
"risky": false,
  
  
  
  
  
  
"value": 1000
  
  
  
  
  
},
  
  
  
  
  
"assistancePrograms": {
  
  
  
  
  
  
"risky": false,
  
  
  
  
  
  
"value": 0
  
  
  
  
  
},
  
  
  
  
  
"ltyTaxDeclarations": {
  
  
  
  
  
  
"risky": true,
  
  
  
  
  
  
"value": 1
  
  
  
  
  
},
  
  
  
  
  
"collections": {
  
  
  
  
  
  
"risky": true,
  
  
  
  
  
  
"value": 17
  
  
  
  
  
}
  
  
  
  
},
  
  
  
  
"restrictions": {
  
  
  
  
  
"registerLogs": "Cliente notificado, período de resposta encerrado, dados prontos para serem usados",
  
  
  
  
  
"isNegative": true,
  
  
  
  
  
"hasData": true,
  
  
  
  
  
"segment": "Atraso severo (Negativo ativo ou CCF ou ação ou atraso maior que 90 dias no CP.)",
  
  
  
  
  
"reportedBy": "BANCO SANTANDER BRASIL S.A.",
  
  
  
  
  
"reportedAt": "2025-05-12",
  
  
  
  
  
"status": "Ativo",
  
  
  
  
  
"city": "São Paulo",
  
  
  
  
  
"amount": "R$869,73",
  
  
  
  
  
"type": "Créditos e Financiamentos",
  
  
  
  
  
"totalAmount": 869.73,
  
  
  
  
  
"consultationLogs": {
  
  
  
  
  
  
"60": 0,
  
  
  
  
  
  
"90": 1,
  
  
  
  
  
  
"+90": 2,
  
  
  
  
  
  
"+30": 0
  
  
  
  
  
}
  
  
  
  
}
  
  
  
},
  
  
  
"lawsuits": {
  
  
  
},
  
  
  
"related": {
  
  
  
},
  
  
  
"financeAdvanced": {
  
  
  
  
"overdueDebts": {
  
  
  
  
  
"count": 13,
  
  
  
  
  
"balanceBrl": 220983.9,
  
  
  
  
  
"firstAt": "2024-06-18",
  
  
  
  
  
"lastAt": "2025-08-02",
  
  
  
  
  
"items": [
  
  
  
  
  
  
{
  
  
  
  
  
  
  
"occurredAt": "2025-03-19",
  
  
  
  
  
  
  
"amountBrl": 1820.55,
  
  
  
  
  
  
  
"creditor": "BANCO EXEMPLO S.A.",
  
  
  
  
  
  
  
"contractId": "000123456789",
  
  
  
  
  
  
  
"notaryOffice": "10",
  
  
  
  
  
  
  
"court": "2A VARA CIVEL",
  
  
  
  
  
  
  
"city": "SAO PAULO",
  
  
  
  
  
  
  
"state": "SP",
  
  
  
  
  
  
  
"principalDebtor": true
  
  
  
  
  
  
}
  
  
  
  
  
],
  
  
  
  
  
"truncated": true
  
  
  
  
},
  
  
  
  
"protests": {
  
  
  
  
  
"count": 13,
  
  
  
  
  
"balanceBrl": 220983.9,
  
  
  
  
  
"firstAt": "2024-06-18",
  
  
  
  
  
"lastAt": "2025-08-02",
  
  
  
  
  
"items": [
  
  
  
  
  
  
{
  
  
  
  
  
  
  
"occurredAt": "2025-03-19",
  
  
  
  
  
  
  
"amountBrl": 1820.55,
  
  
  
  
  
  
  
"creditor": "BANCO EXEMPLO S.A.",
  
  
  
  
  
  
  
"contractId": "000123456789",
  
  
  
  
  
  
  
"notaryOffice": "10",
  
  
  
  
  
  
  
"court": "2A VARA CIVEL",
  
  
  
  
  
  
  
"city": "SAO PAULO",
  
  
  
  
  
  
  
"state": "SP",
  
  
  
  
  
  
  
"principalDebtor": true
  
  
  
  
  
  
}
  
  
  
  
  
],
  
  
  
  
  
"truncated": true
  
  
  
  
},
  
  
  
  
"badChecks": {
  
  
  
  
  
"count": 0
  
  
  
  
},
  
  
  
  
"judgementFilings": {
  
  
  
  
  
"count": 13,
  
  
  
  
  
"balanceBrl": 220983.9,
  
  
  
  
  
"firstAt": "2024-06-18",
  
  
  
  
  
"lastAt": "2025-08-02",
  
  
  
  
  
"items": [
  
  
  
  
  
  
{
  
  
  
  
  
  
  
"occurredAt": "2025-03-19",
  
  
  
  
  
  
  
"amountBrl": 1820.55,
  
  
  
  
  
  
  
"creditor": "BANCO EXEMPLO S.A.",
  
  
  
  
  
  
  
"contractId": "000123456789",
  
  
  
  
  
  
  
"notaryOffice": "10",
  
  
  
  
  
  
  
"court": "2A VARA CIVEL",
  
  
  
  
  
  
  
"city": "SAO PAULO",
  
  
  
  
  
  
  
"state": "SP",
  
  
  
  
  
  
  
"principalDebtor": true
  
  
  
  
  
  
}
  
  
  
  
  
],
  
  
  
  
  
"truncated": true
  
  
  
  
},
  
  
  
  
"bankruptcy": {
  
  
  
  
  
"count": 0,
  
  
  
  
  
"balanceBrl": 0,
  
  
  
  
  
"lastAt": "2025-01-10"
  
  
  
  
},
  
  
  
  
"history": {
  
  
  
  
  
"oldestAt": "2020-09-30",
  
  
  
  
  
"daysFromCutoff": 22,
  
  
  
  
  
"atEdge": true
  
  
  
  
},
  
  
  
  
"registration": {
  
  
  
  
  
"status": "REGULAR",
  
  
  
  
  
"statusAt": "2026-09-05"
  
  
  
  
}
  
  
  
}
  
  
},
  
  
"datasets": {
  
  
  
"additionalProperties": {
  
  
  
  
"additionalProperties": "string"
  
  
  
}
  
  
},
  
  
"version": "v4",
  
  
"createdAt": "2025-05-12T14:05:53Z",
  
  
"updatedAt": "2025-05-12T14:05:53Z"
  
}
}

Playground​

Authorization
Body

Samples​


Criar verificações em lote​

POST
/api/v2/verifications/batch

Cria uma verificação para cada nationalId da lista, aplicando a mesma configuração de verifications a todos os itens. Cada item é validado e cobrado individualmente; o resultado de cada um vem em items, um mapa indexado pelo nationalId. Itens aceitos retornam id (verification ID) para polling posterior; itens rejeitados retornam error. Face recognition e CNH não são suportados em lote — se presentes no corpo, são ignorados.

Authorizations​

Authentication v2

For more details, see Authentication v2

Type
HTTP (bearer)

Request Body​

application/json
JSON
{
  
"nationalId": [
  
  
"012345678900"
  
],
  
"verifications": {
  
  
"type": "full",
  
  
"finance": {
  
  
  
"advanced": true,
  
  
  
"restrictions": true
  
  
}
  
},
  
"callback": {
  
  
"url": "https://example.com/webhooks/verifications",
  
  
"method": "POST",
  
  
"headers": {
  
  
  
"additionalProperties": "string"
  
  
}
  
},
  
"metadata": {
  
  
"additionalProperties": "string"
  
}
}

Responses​

Lote aceito para processamento. A resposta contém o resumo do lote e, em items, o status de cada nationalId enviado.

application/json
JSON
{
  
"total": 0,
  
"success": 0,
  
"errors": 0,
  
"items": {
  
  
"additionalProperties": {
  
  
  
"id": "a1b2c3d4-5678-90ab-cdef-1234567890ab",
  
  
  
"error": "There is not enough balance: insufficient balance"
  
  
}
  
}
}

Playground​

Authorization
Body

Samples​


Consultar verificação por ID​

GET
/api/v2/verifications/{id}

Obtém uma verificação específica pelo ID

Authorizations​

Authentication v2

For more details, see Authentication v2

Type
HTTP (bearer)

Parameters​

Path Parameters

id*
Type
string
Required
Example"805181ca-2956-49e1-81bb-93d1792d269d"
Format
"uuid"

Responses​

Detalhes da verificação

application/json
JSON
{
  
"id": "805181ca-2956-49e1-81bb-93d1792d269d",
  
"workspaceId": "bc5a5b9e-3bb2-4998-b301-a6a39314d330",
  
"userId": "767b88ea-6f5e-4256-b6bb-726cb402cd7b",
  
"nationalId": "012345678900",
  
"name": "FOO BAR",
  
"status": "COMPLETED",
  
"verification": {
  
  
"type": "full",
  
  
"finance": {
  
  
  
"advanced": true,
  
  
  
"restrictions": true
  
  
},
  
  
"result": {
  
  
  
"score": 1000,
  
  
  
"scoreFactor": 3,
  
  
  
"rules": [
  
  
  
  
[
  
  
  
  
  
"PROFILE_SUSPECTED_PERSON_BLACKLIST",
  
  
  
  
  
"FINANCE_SOCIAL_ASSISTANCES",
  
  
  
  
  
"FINANCE_ASSET",
  
  
  
  
  
"RELATED_GHOST_PERSONAL_RELATIONSHIPS",
  
  
  
  
  
"LAWSUIT_PROCESS_REDFLAG_L1",
  
  
  
  
  
"LAWSUIT_SUSPECT_PROCESS_L2"
  
  
  
  
]
  
  
  
],
  
  
  
"execution": {
  
  
  
  
"startedAt": "2025-05-12T14:05:53Z",
  
  
  
  
"endedAt": "2025-05-12T14:05:53Z",
  
  
  
  
"durationMs": 799
  
  
  
}
  
  
},
  
  
"person": {
  
  
  
"profile": {
  
  
  
  
"name": "FOO BAR",
  
  
  
  
"nationalId": "012345678900",
  
  
  
  
"fiscalStatus": "REGULAR",
  
  
  
  
"obitFlag": false,
  
  
  
  
"birthDate": "1990-01-01",
  
  
  
  
"age": 30,
  
  
  
  
"gender": "F",
  
  
  
  
"contacts": {
  
  
  
  
  
"addresses": [
  
  
  
  
  
  
{
  
  
  
  
  
  
  
"type": "WORK",
  
  
  
  
  
  
  
"street": "Rua das Flores",
  
  
  
  
  
  
  
"number": "123",
  
  
  
  
  
  
  
"neighborhood": "Bairro das Flores",
  
  
  
  
  
  
  
"city": "São Paulo",
  
  
  
  
  
  
  
"state": "SP",
  
  
  
  
  
  
  
"postalCode": "1234567890",
  
  
  
  
  
  
  
"createdAt": "2025-05-12T14:05:53Z",
  
  
  
  
  
  
  
"updatedAt": "2025-05-12T14:05:53Z"
  
  
  
  
  
  
}
  
  
  
  
  
],
  
  
  
  
  
"emails": [
  
  
  
  
  
  
"[email protected]"
  
  
  
  
  
],
  
  
  
  
  
"phones": [
  
  
  
  
  
  
{
  
  
  
  
  
  
  
"type": "MOBILE",
  
  
  
  
  
  
  
"number": "999999999",
  
  
  
  
  
  
  
"area": "13",
  
  
  
  
  
  
  
"country": "55",
  
  
  
  
  
  
  
"createdAt": "2025-05-12",
  
  
  
  
  
  
  
"updatedAt": "2025-05-12"
  
  
  
  
  
  
}
  
  
  
  
  
]
  
  
  
  
},
  
  
  
  
"indicators": {
  
  
  
  
  
"blacklisted": {
  
  
  
  
  
  
"risky": true,
  
  
  
  
  
  
"value": 1
  
  
  
  
  
},
  
  
  
  
  
"blacklistedCompanies": {
  
  
  
  
  
  
"risky": false,
  
  
  
  
  
  
"value": 0
  
  
  
  
  
},
  
  
  
  
  
"blacklistedRelated": {
  
  
  
  
  
  
"risky": false,
  
  
  
  
  
  
"value": 0
  
  
  
  
  
}
  
  
  
  
}
  
  
  
},
  
  
  
"finance": {
  
  
  
  
"salary": 1000,
  
  
  
  
"income": "5 A 7 SM",
  
  
  
  
"totalAssets": "ABAIXO DE 100K",
  
  
  
  
"taxReturns": [
  
  
  
  
  
{
  
  
  
  
  
  
"year": "2024",
  
  
  
  
  
  
"status": "SALDO INEXISTENTE DE IMPOSTO A PAGAR OU A RESTITUIR",
  
  
  
  
  
  
"bank": "BANCO DO BRASIL",
  
  
  
  
  
  
"updatedAt": "2025-05-12"
  
  
  
  
  
}
  
  
  
  
],
  
  
  
  
"collections": {
  
  
  
  
  
"total": 17,
  
  
  
  
  
"totalOrigins": 2,
  
  
  
  
  
"updatedAt": "2025-05-12"
  
  
  
  
},
  
  
  
  
"assistancePrograms": {
  
  
  
  
  
"programs": [
  
  
  
  
  
  
{
  
  
  
  
  
  
  
"name": "BOLSA FAMÍLIA",
  
  
  
  
  
  
  
"city": "São Paulo",
  
  
  
  
  
  
  
"state": "SP",
  
  
  
  
  
  
  
"active": true,
  
  
  
  
  
  
  
"amount": 1000,
  
  
  
  
  
  
  
"totalAmount": 1000,
  
  
  
  
  
  
  
"startedAt": "2025-05-12",
  
  
  
  
  
  
  
"endedAt": "2025-05-12"
  
  
  
  
  
  
}
  
  
  
  
  
],
  
  
  
  
  
"total": 1,
  
  
  
  
  
"totalActive": 0
  
  
  
  
},
  
  
  
  
"indicators": {
  
  
  
  
  
"monthlyIncome": {
  
  
  
  
  
  
"risky": false,
  
  
  
  
  
  
"value": 1000
  
  
  
  
  
},
  
  
  
  
  
"assistancePrograms": {
  
  
  
  
  
  
"risky": false,
  
  
  
  
  
  
"value": 0
  
  
  
  
  
},
  
  
  
  
  
"ltyTaxDeclarations": {
  
  
  
  
  
  
"risky": true,
  
  
  
  
  
  
"value": 1
  
  
  
  
  
},
  
  
  
  
  
"collections": {
  
  
  
  
  
  
"risky": true,
  
  
  
  
  
  
"value": 17
  
  
  
  
  
}
  
  
  
  
},
  
  
  
  
"restrictions": {
  
  
  
  
  
"registerLogs": "Cliente notificado, período de resposta encerrado, dados prontos para serem usados",
  
  
  
  
  
"isNegative": true,
  
  
  
  
  
"hasData": true,
  
  
  
  
  
"segment": "Atraso severo (Negativo ativo ou CCF ou ação ou atraso maior que 90 dias no CP.)",
  
  
  
  
  
"reportedBy": "BANCO SANTANDER BRASIL S.A.",
  
  
  
  
  
"reportedAt": "2025-05-12",
  
  
  
  
  
"status": "Ativo",
  
  
  
  
  
"city": "São Paulo",
  
  
  
  
  
"amount": "R$869,73",
  
  
  
  
  
"type": "Créditos e Financiamentos",
  
  
  
  
  
"totalAmount": 869.73,
  
  
  
  
  
"consultationLogs": {
  
  
  
  
  
  
"60": 0,
  
  
  
  
  
  
"90": 1,
  
  
  
  
  
  
"+90": 2,
  
  
  
  
  
  
"+30": 0
  
  
  
  
  
}
  
  
  
  
}
  
  
  
},
  
  
  
"lawsuits": {
  
  
  
},
  
  
  
"related": {
  
  
  
},
  
  
  
"financeAdvanced": {
  
  
  
  
"overdueDebts": {
  
  
  
  
  
"count": 13,
  
  
  
  
  
"balanceBrl": 220983.9,
  
  
  
  
  
"firstAt": "2024-06-18",
  
  
  
  
  
"lastAt": "2025-08-02",
  
  
  
  
  
"items": [
  
  
  
  
  
  
{
  
  
  
  
  
  
  
"occurredAt": "2025-03-19",
  
  
  
  
  
  
  
"amountBrl": 1820.55,
  
  
  
  
  
  
  
"creditor": "BANCO EXEMPLO S.A.",
  
  
  
  
  
  
  
"contractId": "000123456789",
  
  
  
  
  
  
  
"notaryOffice": "10",
  
  
  
  
  
  
  
"court": "2A VARA CIVEL",
  
  
  
  
  
  
  
"city": "SAO PAULO",
  
  
  
  
  
  
  
"state": "SP",
  
  
  
  
  
  
  
"principalDebtor": true
  
  
  
  
  
  
}
  
  
  
  
  
],
  
  
  
  
  
"truncated": true
  
  
  
  
},
  
  
  
  
"protests": {
  
  
  
  
  
"count": 13,
  
  
  
  
  
"balanceBrl": 220983.9,
  
  
  
  
  
"firstAt": "2024-06-18",
  
  
  
  
  
"lastAt": "2025-08-02",
  
  
  
  
  
"items": [
  
  
  
  
  
  
{
  
  
  
  
  
  
  
"occurredAt": "2025-03-19",
  
  
  
  
  
  
  
"amountBrl": 1820.55,
  
  
  
  
  
  
  
"creditor": "BANCO EXEMPLO S.A.",
  
  
  
  
  
  
  
"contractId": "000123456789",
  
  
  
  
  
  
  
"notaryOffice": "10",
  
  
  
  
  
  
  
"court": "2A VARA CIVEL",
  
  
  
  
  
  
  
"city": "SAO PAULO",
  
  
  
  
  
  
  
"state": "SP",
  
  
  
  
  
  
  
"principalDebtor": true
  
  
  
  
  
  
}
  
  
  
  
  
],
  
  
  
  
  
"truncated": true
  
  
  
  
},
  
  
  
  
"badChecks": {
  
  
  
  
  
"count": 0
  
  
  
  
},
  
  
  
  
"judgementFilings": {
  
  
  
  
  
"count": 13,
  
  
  
  
  
"balanceBrl": 220983.9,
  
  
  
  
  
"firstAt": "2024-06-18",
  
  
  
  
  
"lastAt": "2025-08-02",
  
  
  
  
  
"items": [
  
  
  
  
  
  
{
  
  
  
  
  
  
  
"occurredAt": "2025-03-19",
  
  
  
  
  
  
  
"amountBrl": 1820.55,
  
  
  
  
  
  
  
"creditor": "BANCO EXEMPLO S.A.",
  
  
  
  
  
  
  
"contractId": "000123456789",
  
  
  
  
  
  
  
"notaryOffice": "10",
  
  
  
  
  
  
  
"court": "2A VARA CIVEL",
  
  
  
  
  
  
  
"city": "SAO PAULO",
  
  
  
  
  
  
  
"state": "SP",
  
  
  
  
  
  
  
"principalDebtor": true
  
  
  
  
  
  
}
  
  
  
  
  
],
  
  
  
  
  
"truncated": true
  
  
  
  
},
  
  
  
  
"bankruptcy": {
  
  
  
  
  
"count": 0,
  
  
  
  
  
"balanceBrl": 0,
  
  
  
  
  
"lastAt": "2025-01-10"
  
  
  
  
},
  
  
  
  
"history": {
  
  
  
  
  
"oldestAt": "2020-09-30",
  
  
  
  
  
"daysFromCutoff": 22,
  
  
  
  
  
"atEdge": true
  
  
  
  
},
  
  
  
  
"registration": {
  
  
  
  
  
"status": "REGULAR",
  
  
  
  
  
"statusAt": "2026-09-05"
  
  
  
  
}
  
  
  
}
  
  
},
  
  
"datasets": {
  
  
  
"additionalProperties": {
  
  
  
  
"additionalProperties": "string"
  
  
  
}
  
  
},
  
  
"version": "v4",
  
  
"createdAt": "2025-05-12T14:05:53Z",
  
  
"updatedAt": "2025-05-12T14:05:53Z"
  
}
}

Playground​

Authorization
Variables
Key
Value

Samples​


Obter PDF da verificação​

GET
/api/v2/verifications/{id}/pdf

Retorna os bytes do arquivo PDF de uma verificação específica pelo ID. A resposta contém o conteúdo binário do arquivo e nao uma URL para download.

Authorizations​

Authentication v2

For more details, see Authentication v2

Type
HTTP (bearer)

Parameters​

Path Parameters

id*
Type
string
Required
Example"805181ca-2956-49e1-81bb-93d1792d269d"
Format
"uuid"

Responses​

Bytes do arquivo PDF da verificação

application/pdf

Playground​

Authorization
Variables
Key
Value

Samples​


Criar feedback para uma verificação​

POST
/api/v2/verifications/{id}/feedbacks

Criar feedback para uma verificação

Authorizations​

Authentication v2

For more details, see Authentication v2

Type
HTTP (bearer)

Request Body​

application/json
JSON
{
  
"verificationId": "805181ca-2956-49e1-81bb-93d1792d269d",
  
"status": "APPROVED",
  
"comment": "Documentacao validada com sucesso"
}

Responses​

Feedback criado com sucesso

application/json
JSON
{
  
"status": "APPROVED",
  
"verificationId": "805181ca-2956-49e1-81bb-93d1792d269d"
}

Playground​

Authorization
Body

Samples​


Lista Restritiva​


Consultar lista restritiva​

GET
/api/v2/blacklist

Obtém os registros da lista restritiva com paginação por workspace

Authorizations​

Authentication v2

For more details, see Authentication v2

Type
HTTP (bearer)

Parameters​

Query Parameters

workspaceId*
Type
string
Required
Example"fc31805a-9ac5-423b-b3cb-b626c769b27c"
Format
"uuid"
limit
Type
integer
Example10
Minimum
1
Maximum
100
page
Type
integer
Example1
Minimum
1

Responses​

Lista restritiva consultada com sucesso

application/json
JSON
{
  
"blacklist": [
  
  
{
  
  
  
"id": "53190a88-7866-4fc4-9986-5e24f7d8da97",
  
  
  
"workspaceId": "fc31805a-9ac5-423b-b3cb-b626c769b27c",
  
  
  
"userId": "a7e3545c-b7e1-4156-8363-7d3ecca8c8d9",
  
  
  
"nationalId": "91439362025",
  
  
  
"type": "FRAUD",
  
  
  
"description": "Fraude",
  
  
  
"createdAt": "2026-03-30T17:53:52Z"
  
  
}
  
],
  
"page": 1,
  
"limit": 10,
  
"total": 1
}

Playground​

Authorization
Variables
Key
Value

Samples​


Adicionar item na lista restritiva​

POST
/api/v2/blacklist

Cria um novo registro na lista restritiva para um workspace

Authorizations​

Authentication v2

For more details, see Authentication v2

Type
HTTP (bearer)

Parameters​

Query Parameters

workspaceId*
Type
string
Required
Example"fc31805a-9ac5-423b-b3cb-b626c769b27c"
Format
"uuid"

Request Body​

application/json
JSON
{
  
"nationalId": "91439362025",
  
"type": "fraud",
  
"description": "Fraude"
}

Responses​

Item adicionado na lista restritiva com sucesso

application/json
JSON
{
  
"id": "53190a88-7866-4fc4-9986-5e24f7d8da97",
  
"workspaceId": "fc31805a-9ac5-423b-b3cb-b626c769b27c",
  
"userId": "a7e3545c-b7e1-4156-8363-7d3ecca8c8d9",
  
"nationalId": "91439362025",
  
"type": "FRAUD",
  
"description": "Fraude",
  
"createdAt": "2026-03-30T17:53:52Z"
}

Playground​

Authorization
Variables
Key
Value
Body

Samples​


Remover item da lista restritiva​

DELETE
/api/v2/blacklist/{nationalId}

Remove um registro da lista restritiva por nationalId e workspace

Authorizations​

Authentication v2

For more details, see Authentication v2

Type
HTTP (bearer)

Parameters​

Path Parameters

nationalId*
Type
string
Required
Example"91439362025"
Min Length
11
Max Length
14

Query Parameters

workspaceId*
Type
string
Required
Example"fc31805a-9ac5-423b-b3cb-b626c769b27c"
Format
"uuid"

Responses​

Item removido da lista restritiva com sucesso

Playground​

Authorization
Variables
Key
Value

Samples​


Powered by VitePress OpenAPI