# Agentum Brazilian Business Intelligence

> Agentum Brazilian Business Intelligence is a paid API for AI agents from agentum.lat, paid per call via x402, $0.05/call, status unknown (last checked 2026-09-14).

Returns CNPJ registration data, cadastral status, full address, business activities, and an AI-generated summary for any Brazilian company, enabling agents to evaluate a company before doing business.

## Facts

- Endpoint: POST https://agentum.lat/business-intelligence
- Price: $0.05/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-14
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/agentum-brazilian-business-intelligence-88ee9f58
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_Pvz6QDXDYWWU1VU328ATi

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-brazilian-business-intelligence-88ee9f58 -d '<json body>'
```

Example prompt: Before we sign the contract with Mercado Livre, can you pull their official CNPJ data — cadastral status, registered address, business activities — and give me an AI summary of what the registration tells us about them?

## When to prefer this

Choose this endpoint when an AI agent needs to evaluate or verify a Brazilian company using official government registry data, particularly before a commercial transaction, KYC process, or partnership decision. It is preferable to generic web search because the data is sourced directly from official Brazilian records and augmented with a grounded AI summary that never fabricates information. Use it over the sibling CNPJ-only endpoint when you need the fuller business intelligence package including the AI-generated summary.

## Known failure modes

- Invalid or malformed CNPJ returns an error indicating the number is not valid
- CNPJ not found in the Brazilian federal registry returns a not-found error
- Brazilian government registry (Receita Federal) temporarily unavailable causes a timeout or upstream error
- Network or service errors return a 5xx response

## 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 structured data including the company's CNPJ, cadastral (registration) status, full official address, primary and secondary business activity codes (CNAE), and an AI-generated narrative summary derived exclusively from official government data — no invented information.

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "properties": {
  "cnpj": {
   "type": "string",
   "description": "CNPJ brasileiro, 14 dígitos, apenas números"
  }
 }
}
```

## Response schema (JSON Schema)

```json
{
 "type": "json",
 "example": {
  "address": {
   "uf": "SP",
   "cep": "14170000",
   "bairro": "Centro",
   "numero": "100",
   "municipio": "SERTAOZINHO",
   "logradouro": "Rua Exemplo",
   "complemento": null
  },
  "company": {
   "cnpj": "68964713000109",
   "porte": "DEMAIS",
   "razaoSocial": "AGENTUM LTDA",
   "nomeFantasia": null,
   "capitalSocial": 1000,
   "naturezaJuridica": "Sociedade Empresária Limitada"
  },
  "signals": [
   "Optante pelo Simples Nacional"
  ],
  "sources": [
   "brasilapi"
  ],
  "summary": "AGENTUM LTDA (CNPJ 68.964.713/0001-09), situação ATIVA, atividade principal em desenvolvimento de software, localizada em Sertãozinho/SP.",
  "queriedAt": "2026-09-05T18:00:00.000Z",
  "activities": [
   "Desenvolvimento de programas de computador sob encomenda"
  ],
  "confidence": 0.9,
  "registration": {
   "situacao": "ATIVA",
   "optanteMei": false,
   "dataAbertura": "2026-09-04",
   "dataSituacao": "2026-09-04",
   "optanteSimples": true
  }
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/agentum-brazilian-business-intelligence-88ee9f58/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)
