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
| Field | Type | Required | Description |
|---|---|---|---|
cpf | string | Yes | 11-digit CPF number |
name | string | No | Full name for cross-check |
birth_date | string | No | YYYY-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
| Level | Score | Action |
|---|---|---|
low | 700-1000 | Auto-approve |
medium | 500-699 | Review recommended |
high | 0-499 | Manual review required |
Latency
Average: < 30ms