🇧🇷Brazil

Service to query Brazilian citizens in the police using CPF (Cadastro de Pessoas Físicas).

Background check with the Brazilian Federal Police

GET - 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.

Implementation

Headers

NameValue

Content-Type

application/json

Authorization

Bearer <token>

Query Parameters

NameTypeRequired?DescriptionExample

documentType

String

True

Document type. Valid parameter: CPF.

CPF

documentNumber

String

True

Document number of the person to consult.

123456789

dateOfBirth

String

True

Date of birth of the person to consult, valid format: dd/mm/yyyy.

20/05/2022

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: 'jwt <tu_token>'
  }
};

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

Response

{
    "data": {
        "arrayName": [
            "MATEO",
            "VERIFIK",
        ],
        "canIssue": "true",
        "certificationNumber": "036386572024",
        "dateOfBirth": "2002-02-17",
        "documentNumber": "01234567801",
        "documentType": "CPF",
        "firstName": "MATEO",
        "fullName": "MATEO VERIFIK",
        "lastName": "VERIFIK",
        "pdfUrl": "<https://cdn.verifik.co/background-check/brazilian/pdf/170920571123876-application.pdf>"
    },
    "signature": {
        "dateTime": "July 25, 2024 3:24 PM",
        "message": "Certified by Verifik.co"
    },
    "id": "8UX8S"
}

Last updated