v1

latestOpenAPI 3.1.0Proprietary2026-07-1341128.0 KB
CPF

Look up a CPF

Returns identity data associated with the given CPF number.

  • Not found (404) does not consume a credit. Only successful 200 responses are billed.
  • The gender field is inferred from the full name.
  • The cpf field in the response is always returned formatted as XXX.XXX.XXX-XX.
get/cpf/{cpf}

Path parameters

cpfstring required
Example:12345678909

CPF number with or without formatting. Valid inputs: 12345678909 or 123.456.789-09.

Response

CPF found — identity data returned

successboolean required

Always true for 200 responses

Example response

{
  "success": true,
  "data": {
    "cpf": "123.456.789-09",
    "name": "John Doe",
    "nameUpper": "JOHN DOE",
    "gender": "M",
    "birthDate": "15/06/1990",
    "day": 15,
    "month": 6,
    "year": 1990
  }
}