# Brazil CNPJ / Company Name Registry Lookup

> Brazil CNPJ / Company Name Registry Lookup is a paid API for AI agents from api.brazilmcp.dev, paid per call via x402, $0.005/call, status down (last checked 2026-09-15).

Looks up Brazilian company registration data by CNPJ or company name using official Receita Federal (RFB) data, returning registration status, legal name, trade name, CNAE activity codes, address, partners (QSA), and tax regime

## Facts

- Endpoint: GET https://api.brazilmcp.dev/v1/company_lookup
- Price: $0.005/call
- Payment: x402
- Status: down
- Last checked: 2026-09-15
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/brazil-cnpj-company-name-registry-lookup-8bea3be9
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_aCCazcCvTPUFys352eoe0

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 brazil-cnpj-company-name-registry-lookup-8bea3be9
```

Example prompt: Can you look up the Brazilian company with CNPJ 00.000.000/0001-91 and tell me its registration status, legal name, partners, and CNAE activity codes from the Receita Federal registry?

## When to prefer this

Use this endpoint when you need official Brazilian company registration data for KYB (Know Your Business) due diligence, vendor onboarding, or compliance checks in Brazil. Prefer this over generic business lookup services when you specifically need Receita Federal (RFB) authoritative data, including CNAE codes, QSA partner lists, and tax regime — especially when operating in the Brazilian market. For broader due-diligence including litigation or sanctions checks, consider the sibling endpoints on the same host.

## Known failure modes

- CNPJ not found — invalid or non-existent CNPJ returns 404 or empty result
- Company name search returns no matches if name is too generic or misspelled
- Rate limiting or payment failure returns 402 or 429 error
- Receita Federal data source temporarily unavailable returns 503
- Malformed CNPJ format (missing digits or punctuation) may return 400 bad request

## How this service works

Brazilian company registry lookup by CNPJ or company name — official Receita Federal (RFB) data for KYB and business verification in Brazil: registration status, legal and trade name, CNAE activities, address, partners (QSA), tax regime

## Output

Returns official Receita Federal data for the matched Brazilian company, including: registration status (active/inactive), legal name, trade name (fantasia), CNAE primary and secondary activity codes, full registered address, list of partners or legal representatives (QSA), and tax regime classification.

## 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"
    }
   }
  },
  "output": {
   "type": "object",
   "required": [
    "type"
   ],
   "properties": {
    "type": {
     "type": "string"
    },
    "format": {
     "type": "string"
    }
   }
  }
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/brazil-cnpj-company-name-registry-lookup-8bea3be9/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from api.brazilmcp.dev](https://www.zero.xyz/host/api.brazilmcp.dev/llms.txt)
