# brdata.thomenz.me Full Company Due-Diligence Profile

> brdata.thomenz.me Full Company Due-Diligence Profile is a paid API for AI agents from brdata.thomenz.me, paid per call via x402, $0.03/call, status unknown (last checked 2026-09-14).

Returns a comprehensive due-diligence profile of a Brazilian company by CNPJ, including registry data, partners/shareholders (QSA), and government sanction/debarment checks (CEIS/CNEP).

## Facts

- Endpoint: GET https://brdata.thomenz.me/company/:cnpj/full
- Price: $0.03/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-14
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/brdata-thomenz-me-full-company-due-diligence-profile-42bfccac
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_OwSP0hdsKlKqEER2tjh1r

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-thomenz-me-full-company-due-diligence-profile-42bfccac
```

Example prompt: Can you pull the full due-diligence profile for Brazilian company CNPJ 00.000.000/0001-91 — I need the registry details, all partners and shareholders, and whether they appear on any federal debarment or sanction lists like CEIS or CNEP?

## When to prefer this

Use this endpoint when you need a single, consolidated due-diligence call that combines company registry data, ownership/shareholder structure, and government sanction screening in one request. Prefer it over the basic profile endpoint when partner/shareholder (QSA) data or CEIS/CNEP compliance checks are required, such as for vendor onboarding, procurement compliance, or AML/KYC workflows involving Brazilian companies.

## Known failure modes

- Invalid or malformed CNPJ returns a 400 error
- CNPJ not found in Receita Federal registry returns a 404
- Temporary upstream government data source unavailability returns a 503
- Network timeout if external sanction list APIs are slow
- CNPJ with all zeros or test values may return empty or error

## How this service works

Full due-diligence profile of a Brazilian company: everything in the basic profile plus the complete quadro societário (QSA) — partner name, role and entry date, LGPD-safe with no CPF — and the same 5-registry screen as /risk: debarment (CEIS), anti-corruption (CNEP), leniency, impeded non-profits (CEPIM) and the forced-labor 'Lista Suja', with a verdict and 0-100 risk score. `sources_checked` names the registries that answered — an empty result is 'clear' only for those.

## Output

A structured JSON object containing the company's full official registry profile (legal name, status, address, activity codes), the complete QSA list of partners and shareholders with their roles and equity stakes, and the results of government sanction/debarment checks against the CEIS and CNEP federal lists, including any penalty details if found.

## 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-thomenz-me-full-company-due-diligence-profile-42bfccac/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)
