# BRData Brazilian Company CNPJ Registry Lookup

> BRData Brazilian Company CNPJ Registry Lookup is a paid API for AI agents from brdata.thomenz.me, paid per call via x402, $0.005/call, status unknown (last checked 2026-09-14).

Returns the consolidated official registry profile of a Brazilian company by CNPJ, including legal name, status, activities (CNAE), address, and incorporation date from Federal Revenue data.

## Facts

- Endpoint: GET https://brdata.thomenz.me/company/:cnpj
- Price: $0.005/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-14
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/brdata-brazilian-company-cnpj-registry-lookup-d2d68d11
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_vECaTFKRrlvDv1UwNLGDy

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 brdata-brazilian-company-cnpj-registry-lookup-d2d68d11
```

Example prompt: Can you pull the official Federal Revenue registry profile for the Brazilian company with CNPJ 00.000.000/0001-91 — I need their legal name, status, registered address, and main CNAE activity codes.

## When to prefer this

Use this endpoint when you need a fast, single-call lookup of a Brazilian company's basic official registry data (legal name, status, CNAE, address, incorporation date) by CNPJ. Prefer the full due-diligence sibling endpoint if you also need partner/shareholder information. Prefer the compliance screening sibling if you need debarment or sanctions checks.

## Known failure modes

- Invalid or malformed CNPJ returns a 400 error
- CNPJ not found in Federal Revenue database returns a 404
- Upstream Brazilian Federal Revenue API unavailability causes 503 or timeout
- Rate limiting may return 429 if too many requests are made in quick succession

## How this service works

Consolidated official registry profile of any Brazilian company by CNPJ (tax ID): legal name, status, activities (CNAE), address, incorporation date. Aggregated from Brazilian Federal Revenue public data in a single call.

## Output

A structured object containing the company's legal name, current registration status (active/inactive/suspended), CNAE primary and secondary activity codes, full registered address, and incorporation date — all sourced from Brazilian Federal Revenue public 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"
    },
    "pathParams": {
     "type": "object",
     "required": [
      "cnpj"
     ],
     "properties": {
      "cnpj": {
       "type": "string",
       "examples": [
        "00000000000191",
        "00.000.000/0001-91"
       ],
       "description": "Brazilian company tax ID (CNPJ). 14 digits, with or without punctuation."
      }
     }
    },
    "queryParams": {
     "type": "object",
     "properties": {}
    }
   },
   "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/brdata-brazilian-company-cnpj-registry-lookup-d2d68d11/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from brdata.thomenz.me](https://www.zero.xyz/host/brdata.thomenz.me/llms.txt)
