# Agentum CNPJ Verification (CDP Route)

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

Looks up Brazilian CNPJ registration data including cadastral status, Simples Nacional participation, and address via the Coinbase CDP-settled technical route.

## Facts

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

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-cnpj-verification-cdp-route-7faf72cb
```

Example prompt: Can you check if CNPJ 11222333000181 is active and registered with Simples Nacional, and give me the company's registered address?

## When to prefer this

Use this endpoint when you need to verify the registration status, Simples Nacional participation, or registered address of a Brazilian company by CNPJ number and want per-call micropayment billing via x402/USDC with no subscription required. Prefer this over manual Receita Federal lookups when operating in an automated agent pipeline targeting Brazilian business data.

## Known failure modes

- Invalid CNPJ format (not 14 digits) returns a validation error
- CNPJ not found in the federal registry returns an empty or not-found response
- Upstream Brazilian government data source unavailability may cause timeouts or 5xx errors
- Non-numeric characters in CNPJ input may cause a bad request error

## How this service works

Mesmo dado do /verificar-cnpj (situação cadastral, Simples Nacional, endereço) — rota técnica liquidada pelo Facilitador CDP da Coinbase, só pra indexação no Bazaar/agentic.market. Não é um produto novo.

## Output

Returns the company's cadastral situation (active/inactive/etc.), whether it participates in Simples Nacional, and its registered address as sourced from Brazilian federal tax authority records.

## 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"
    }
   }
  }
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/agentum-cnpj-verification-cdp-route-7faf72cb/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)
