# brdata — Brazilian Public Tender Lookup by CNPJ, Year & Sequence

> brdata — Brazilian Public Tender Lookup by CNPJ, Year & Sequence is a paid API for AI agents from brdata.thomenz.me, paid per call via x402, $0.01/call, status unknown (last checked 2026-09-13).

Retrieves a specific Brazilian public tender (licitação) from PNCP by buyer CNPJ, year, and sequential number, returning structured procurement details in English.

## Facts

- Endpoint: GET https://brdata.thomenz.me/tender/%7Bcnpj%7D/%7Byear%7D/%7Bseq%7D
- Price: $0.01/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-13
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/brdata-brazilian-public-tender-lookup-by-cnpj-year-sequence-1453b0a2
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_amn8v07v__XogMvIYEbh8

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-public-tender-lookup-by-cnpj-year-sequence-1453b0a2
```

Example prompt: Pull the details for Brazilian public tender number 34 issued by CNPJ 75963850000194 in 2026 — I need the object, modality, estimated value, and opening and closing dates.

## When to prefer this

Use this endpoint when you have a specific tender's CNPJ, year, and sequential number and need structured, English-annotated procurement data directly from Brazil's PNCP. Prefer it over scraping PNCP directly or using generic web search when you need machine-readable output with modality, dates, and value in a consistent schema. It is ideal for B2B agents, procurement platforms, compliance workflows, and supplier intelligence tools that operate on known tender identifiers.

## Known failure modes

- Tender not found (invalid CNPJ, year, or sequential number) — likely returns 404 or empty result
- PNCP upstream unavailability — may return 502 or timeout
- Malformed CNPJ format — may return 400 or validation error
- Payment failure via x402 — request not processed if USDC payment not completed
- Tender data not yet indexed in PNCP — recently published tenders may not be available immediately

## How this service works

Brazilian company &amp; public-procurement data for due-diligence, KYB &amp; B2B agents: company profiles by CNPJ, regulatory risk &amp; compliance screening (federal debarment, anti-corruption, leniency &amp; forced-labor register — CEIS, CNEP, 'Lista Suja'), mass search &amp; segmentation across ~28M active companies, and public tenders / licitações (PNCP).

## Output

A JSON object containing the full tender record: buyer CNPJ, name, and UASG code; tender object description; modality (code + Portuguese and English descriptions); status; opening and closing dates; control number; estimated total value in BRL; PNCP portal URL; and an SRP (System of Registration of Prices) flag.

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "properties": {
  "properties": {
   "type": "string"
  }
 }
}
```

## Response schema (JSON Schema)

```json
{
 "type": "json",
 "example": {
  "cnpj": "75963850000194",
  "year": 2026,
  "buyer": {
   "cnpj": "75963850000194",
   "name": "MUNICIPIO DE TEIXEIRA SOARES",
   "uasg": "987913"
  },
  "is_srp": false,
  "object": "Aquisição de equipamentos de rede",
  "status": "Divulgada no PNCP",
  "modality": {
   "code": "6",
   "description_en": "Pregão (reverse auction) - Electronic",
   "description_pt": "Pregão - Eletrônico"
  },
  "pncp_url": "https://pncp.gov.br/app/editais/75963850000194/2026/34",
  "sequential": 34,
  "closing_date": "2026-06-11T09:00:00",
  "opening_date": "2026-05-27T08:00:00",
  "control_number": "75963850000194-1-000034/2026",
  "total_estimated_brl": 140964.76
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/brdata-brazilian-public-tender-lookup-by-cnpj-year-sequence-1453b0a2/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)
