# Agentum Business Counterparty Preflight (CDP Route)

> Agentum Business Counterparty Preflight (CDP Route) is a paid API for AI agents from business.agentum.lat, paid per call via x402, $0.15/call, status unknown (last checked 2026-09-14).

Runs a counterparty compliance verdict on a Brazilian CNPJ or international LEI, checking against CNPJ, TCU, CNIA, CEIS, CNEP, CVM, and GLEIF registries.

## Facts

- Endpoint: GET https://business.agentum.lat/preflight-cdp
- Price: $0.15/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-14
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/agentum-business-counterparty-preflight-cdp-route-01844d85
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_1soteN_NhQfCrNlwWmxpz

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-business-counterparty-preflight-cdp-route-01844d85
```

Example prompt: Can you run a compliance preflight on the Brazilian company with CNPJ 12.345.678/0001-99 and tell me if they appear on any government blacklist like CEIS, CNEP, or TCU?

## When to prefer this

Use this endpoint when you need a fast, single-call compliance verdict on a Brazilian company (by CNPJ) or any international legal entity (by LEI) before entering a contract, onboarding a vendor, or conducting due diligence. It consolidates multiple Brazilian government watchlists (CEIS, CNEP, TCU, CVM, CNIA) and the global GLEIF registry in one call, making it superior to querying each registry individually.

## Known failure modes

- Invalid or malformed CNPJ (not 14 digits) returns an error or empty result
- Unknown or unregistered LEI returns no match from GLEIF
- Company name lookup may return multiple or ambiguous matches
- Registry APIs temporarily unavailable may cause partial results
- Non-Brazilian, non-LEI foreign companies may not be found

## How this service works

Mesmo dado do /preflight (veredito de contraparte: CNPJ/TCU/CNIA/CEIS/CNEP/CVM ou LEI/GLEIF) — rota técnica liquidada pelo Facilitador CDP da Coinbase, só pra indexação no Bazaar/agentic.market. Não é um produto novo.

## Output

A compliance verdict for the queried entity, aggregating results from multiple Brazilian and international registries (CNPJ, TCU, CNIA, CEIS, CNEP, CVM for Brazilian entities; LEI/GLEIF for international entities), indicating whether the counterparty is flagged, debarred, or clear across those databases.

## 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",
     "required": [
      "q"
     ],
     "properties": {
      "q": {
       "type": "string",
       "description": "CNPJ brasileiro (14 dígitos), código LEI (20 caracteres) ou nome de empresa"
      }
     }
    }
   },
   "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/agentum-business-counterparty-preflight-cdp-route-01844d85/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from business.agentum.lat](https://www.zero.xyz/host/business.agentum.lat/llms.txt)
