Skip to content
On this page

Quick Start

Get up and running with the Aegis API in under 5 minutes.

1. Get Your API Key

Sign up at aegis-dig.com and copy your API key from the dashboard.

2. Make Your First Request

Verify a CPF number:

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

3. Parse the Response

json
{
  "request_id": "req_abc123xyz",
  "status": "verified",
  "cpf": "12345678901",
  "name": "JOAO SILVA SANTOS",
  "score": 723,
  "risk_level": "low",
  "serasa_status": "regular",
  "processed_at": "2025-01-09T14:50:56Z"
}

Next Steps

Released under the MIT License.