Skip to content
On this page

CPF Validation

POST /v1/verify/cpf

Validates a Brazilian CPF number against Serasa, Boa Vista SCPC, and Quod databases.

Request

bash
curl -X POST https://api.aegis-dig.com/v1/verify/cpf \
  -H "Authorization: Bearer YOUR_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{
    "cpf": "12345678901",
    "name": "JOAO SILVA SANTOS",
    "birth_date": "1990-01-15"
  }'

Request Body

FieldTypeRequiredDescription
cpfstringYes11-digit CPF number
namestringNoFull name for cross-check
birth_datestringNoYYYY-MM-DD format

Response

json
{
  "request_id": "req_abc123",
  "status": "verified",
  "cpf": "12345678901",
  "name": "JOAO SILVA SANTOS",
  "name_match": "exact",
  "score": 723,
  "risk_level": "low",
  "serasa": {
    "status": "regular",
    "pending_debts": false
  },
  "boa_vista": {
    "status": "regular",
    "score": 685
  },
  "quod": {
    "fraud_alert": false
  },
  "processed_at": "2025-01-09T14:50:56Z"
}

Risk Levels

LevelScoreAction
low700-1000Auto-approve
medium500-699Review recommended
high0-499Manual review required

Latency

Average: < 30ms

Released under the MIT License.