# agentum.lat CNPJ Verification

> agentum.lat CNPJ Verification is a paid API for AI agents from agentum.lat, paid per call via x402, $0.02/call, status unknown (last checked 2026-09-15).

Verifies a Brazilian company's registration status in real time, including cadastral situation, Simples Nacional membership, and address, given a 14-digit CNPJ number.

## Facts

- Endpoint: GET https://agentum.lat/verificar-cnpj
- Price: $0.02/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-15
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/agentum-lat-cnpj-verification-a310057b
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_VzjMXReEnmWNQd4UW8IKR

Status and success rate cover calls made through Zero and Zero's own probes. Third-party monitors may report differently.

## How to call it through Zero

Zero handles the 402 payment challenge and records the run. With the Zero CLI installed (`npm i -g @zeroxyz/cli`):

```sh
zero fetch --capability agentum-lat-cnpj-verification-a310057b
```

Example prompt: Can you check if the Brazilian company with CNPJ 11222333000181 is active and registered correctly — I need to confirm their Simples Nacional status and registered address before we close this deal.

## When to prefer this

Use this endpoint when you need real-time, authoritative verification of a Brazilian company's tax registration status directly from the Receita Federal. It is the right choice for due diligence before financial transactions, supplier onboarding, or any workflow requiring confirmation that a Brazilian CNPJ is valid, active, and correctly registered.

## Known failure modes

- Invalid or malformed CNPJ (non-14-digit input) returns a validation error
- CNPJ not found in the Receita Federal database returns a not-found response
- Receita Federal API downtime or rate limiting may cause lookup failures
- Formatting CNPJ with punctuation instead of digits-only may cause rejection

## How this service works

APIs brasileiras pagas por chamada via x402 (USDC, Base mainnet): dado público agregado, pronto pra um agente de IA consumir numa chamada só.

## Output

Returns the company's cadastral situation (e.g. active/suspended/cancelled), Simples Nacional enrollment status, and official registered address as recorded by the Receita Federal, allowing an agent to confirm the company is legitimate and in good standing.

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "$schema": "https://json-schema.org/draft/2020-12/schema",
 "required": [
  "input"
 ],
 "properties": {
  "input": {
   "type": "object",
   "required": [
    "type",
    "method"
   ],
   "properties": {
    "type": {
     "type": "string",
     "const": "http"
    },
    "method": {
     "enum": [
      "GET"
     ],
     "type": "string"
    },
    "queryParams": {
     "type": "object",
     "required": [
      "cnpj"
     ],
     "properties": {
      "cnpj": {
       "type": "string",
       "description": "CNPJ brasileiro, 14 dígitos, apenas números"
      }
     }
    }
   },
   "additionalProperties": false
  },
  "output": {
   "type": "object",
   "required": [
    "type"
   ],
   "properties": {
    "type": {
     "type": "string"
    },
    "example": {
     "type": "object"
    }
   }
  }
 }
}
```

## Response schema (JSON Schema)

```json
{
 "type": "json",
 "example": {
  "uf": "SP",
  "cnpj": "68.964.713/0001-09",
  "fonte": "receitaws",
  "situacao": "ATIVA",
  "municipio": "SERTAOZINHO",
  "razao_social": "AGENTUM LTDA"
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/agentum-lat-cnpj-verification-a310057b/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from agentum.lat](https://www.zero.xyz/host/agentum.lat/llms.txt)
