CNPJ Validation
POST /v1/verify/cnpj
Validates a Brazilian CNPJ (company registration) number.
Request
bash
curl -X POST https://api.aegis-dig.com/v1/verify/cnpj \
-H "Authorization: Bearer YOUR_API_KEY" \
-H "Content-Type: application/json" \
-d '{
"cnpj": "12345678000199",
"company_name": "ACME LTDA"
}'
Request Body
| Field | Type | Required | Description |
|---|---|---|---|
cnpj | string | Yes | 14-digit CNPJ number |
company_name | string | No | Company name for verification |
Response
json
{
"request_id": "req_xyz789",
"status": "verified",
"cnpj": "12345678000199",
"company_name": "ACME LTDA",
"company_status": "active",
"foundation_date": "2015-03-20",
"mei": false,
"matriz": true,
"risk_level": "low"
}
Latency
Average: < 50ms