# Brazilian Company Data Lookup (CNPJ)

> Brazilian Company Data Lookup (CNPJ) is a paid API for AI agents from api.strale.io, paid per call via x402, $0.054001/call, status unknown (last checked 2026-09-13).

Looks up Brazilian company information from ReceitaWS using a CNPJ number, returning company name, trade name, status, address, activity codes, and partners.

## Facts

- Endpoint: GET https://api.strale.io/x402/brazilian-company-data
- Price: $0.054001/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-13
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/api-strale-io-b6bff596
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_joWDJNwDelxbNbCpGPRIw

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 api-strale-io-b6bff596
```

Example prompt: Can you look up the Brazilian company with CNPJ 11222333000181 and tell me its registered name, trade name, current status, address, and who the partners are?

## When to prefer this

Use this endpoint when you need to verify or enrich data about a Brazilian legal entity using its CNPJ number. Ideal for KYC workflows, supplier onboarding, invoice validation, or any context requiring authoritative Brazilian company registry data. Prefer this over generic web scraping when you need structured, reliable data from the official ReceitaWS source.

## Known failure modes

- Invalid CNPJ format (not 14 digits) — returns validation error
- CNPJ not found in ReceitaWS — returns not found or empty result
- ReceitaWS upstream unavailable — returns 5xx or timeout
- Payment not included or invalid — returns 402 Payment Required

## How this service works

Look up Brazilian company data from the Receita Federal CNPJ register via the ReceitaWS JSON wrapper. Requires CNPJ (14 digits). Returns company name, trade name, status, address, activity codes, and partners.

## Output

Returns a structured record for the Brazilian company including legal name, trade name, registration status (active/inactive), full address, CNAE primary and secondary activity codes, and a list of partners or shareholders, sourced from ReceitaWS.

## Example request

```json
{
 "cnpj": "11222333000181"
}
```

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "required": [
  "cnpj"
 ],
 "properties": {
  "cnpj": {
   "type": "string",
   "description": "CNPJ number (14 digits, e.g. 11222333000181)"
  }
 }
}
```

## Response schema (JSON Schema)

```json
{
 "cnpj": {
  "type": "string"
 },
 "status": {
  "type": "string"
 },
 "address": {
  "type": "string"
 },
 "company_name": {
  "type": "string"
 },
 "activity_codes": {
  "type": "array"
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/api-strale-io-b6bff596/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from api.strale.io](https://www.zero.xyz/host/api.strale.io/llms.txt)
