# Brazil CEIS Sanctions Screen (CPF/CNPJ)

> Brazil CEIS Sanctions Screen (CPF/CNPJ) is a paid API for AI agents from brasil-dados-api.onrender.com, paid per call via x402, $0.005/call, status unknown (last checked 2026-09-14).

Checks a Brazilian CPF (individual) or CNPJ (company) identifier against the CEIS debarment list of entities barred from contracting with the Brazilian public sector, using official CGU/Portal da Transparência data.

## Facts

- Endpoint: GET https://brasil-dados-api.onrender.com/brazil/sanctions/:var1
- 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/brazil-ceis-sanctions-screen-cpf-cnpj-fc8cc698
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_0QIcJ-uiVEOt7FdUGmkFr

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-ceis-sanctions-screen-cpf-cnpj-fc8cc698
```

Example prompt: Can you check whether the Brazilian company with CNPJ 12.345.678/0001-95 is on the CEIS debarment list and barred from public sector contracts?

## When to prefer this

Use this endpoint when you need a fast, authoritative sanctions/debarment check for a specific Brazilian CPF or CNPJ against the official CEIS list maintained by the Brazilian federal government (CGU). Ideal for compliance workflows, vendor onboarding, procurement due diligence, or any KYC/AML process involving Brazilian individuals or companies operating in the public sector. Prefer this over generic global sanctions databases when Brazilian government debarment is the specific compliance requirement.

## Known failure modes

- Invalid CPF/CNPJ format returns a validation error
- Identifier not found in CEIS returns a clean/no-match result
- CGU/Portal da Transparência data source temporarily unavailable causes 503 or timeout
- Malformed path parameter (e.g. missing identifier) returns 400 bad request
- Rate limiting or payment failure returns 402 or 429

## How this service works

Fast sanctions/debarment screen for a Brazilian CPF or CNPJ against the CEIS list (companies and individuals barred from contracting with the public sector). Official CGU/Portal da Transparência data.

## Output

Returns whether the queried CPF or CNPJ appears on the CEIS (Cadastro de Empresas Inidôneas e Suspensas) list, including any debarment record details such as the sanctioning body, penalty period, and reason for barment, sourced from official Brazilian CGU/Portal da Transparência data.

## 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",
      "HEAD",
      "DELETE"
     ],
     "type": "string"
    },
    "pathParams": {
     "type": "object"
    },
    "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/brazil-ceis-sanctions-screen-cpf-cnpj-fc8cc698/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from brasil-dados-api.onrender.com](https://www.zero.xyz/host/brasil-dados-api.onrender.com/llms.txt)
