Skip to main content

Brazil

Endpoint​

https://api.verifik.co/v2/br/background-check

The Brazil Background service provides detailed information about Brazilian individuals. When making a query, the response includes relevant data such as associated names, ability to issue reports, certification number, document number, document type, first name, full name, last name, and a base64-encoded PDF file.

This information can be used for a variety of purposes, such as employment screening, due diligence, compliance verification, and fraud prevention.

Headers​

NameValue
Content-Typeapplication/json
AuthorizationBearer <token>

Parameters​

NameTypeRequiredDescription
documentTypestringYesDocument type. Allowed parameter: CPF.
documentNumberstringYesDocument number of the person to consult.
dateOfBirthstringYesDate of birth of the person to consult, valid format: dd/mm/yyyy.

Request​

import axios from 'axios';

const options = {
method: 'GET',
url: 'https://api.verifik.co/v2/br/background-check',
params: {
documentType: 'CPF',
documentNumber: '012.345.678-01',
dateOfBirth: '17/02/2002'
},
headers: {
Accept: 'application/json',
Authorization: 'Bearer <your_token>'
}
};

try {
const { data } = await axios.request(options);
console.log(data);
} catch (error) {
console.error(error);
}

Response​

{
"data": {
"documentType": "CPF",
"documentNumber": "012.345.678-01",
"firstName": "JoΓ£o",
"lastName": "Silva",
"fullName": "JoΓ£o Silva",
"dateOfBirth": "17/02/2002",
"certificationNumber": "123456789",
"canIssueReports": true,
"associatedNames": ["JoΓ£o Silva Santos"],
"pdfReport": "base64_encoded_pdf_content",
"status": "clear"
},
"signature": {
"dateTime": "April 11, 2023 12:25 PM",
"message": "Certified by Verifik.co"
}
}

Features​

  • CPF Verification: Verify the authenticity of Brazilian CPF documents
  • Complete Background Data: Returns full name, document details, certification number, and PDF report
  • Structured Response: Organized data format for easy integration
  • Multiple Programming Languages: Support for JavaScript, Python, PHP, and Swift
  • Error Handling: Comprehensive error responses for various scenarios