v1

latestOpenAPI 3.1.02026-08-06134755.4 KB
🇧🇷 Brazil

CPF number

The Brazil CPF verification service allows you to verify the identity of an individual in Brazil using their individual taxpayer identification number (Cadastro de Pessoas Físicas). The service returns the person’s full name, date of birth, and gender

get/services/br/cpf/{cpf_number}

Path parameters

cpf_numberstring required

Brazilian individual taxpayer identification number (Cadastro de Pessoas Físicas), consisting of 11 numeric digits without formatting (no dots or hyphens)

Example:00388415129

Response

OK

The request was successful, and our system returned an expected response.

Example response

{
  "validation": {
    "valid": true
  },
  "data": {
    "number": "00388415129",
    "name": "Josh Coffey",
    "first_name": "Josh",
    "middle_name": "David",
    "last_name": "Coffey",
    "dob": "1976-02-21",
    "gender": "M"
  }
}