# Brazilayer Sanctions Screening

> Brazilayer Sanctions Screening is a paid API for AI agents from api.brazilayer.com, paid per call via x402, $0.01/call, status unknown (last checked 2026-09-15).

Screens a Brazilian company (CNPJ) against five official government integrity registries in one call, returning all sanctions, debarments, and blacklist entries with a clean-record flag.

## Facts

- Endpoint: GET https://api.brazilayer.com/v1/integridade/consulta/:cnpj
- Price: $0.01/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-15
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/brazilayer-sanctions-screening-6b0e66c8
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_yp8WIDlaHNpl7hjgReIdQ

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 brazilayer-sanctions-screening-6b0e66c8
```

Example prompt: Can you run an integrity and sanctions check on the Brazilian company with CNPJ 00.000.000/0001-91 — I need to know if they appear on any government blacklist like CEIS, CNEP, or the slave-labor registry before we sign a contract with them.

## When to prefer this

Use this endpoint when you need a comprehensive, single-call integrity check on a Brazilian company before contracting, onboarding, or due diligence. It is preferred over manual registry lookups because it consolidates five official sources (CEIS, CNEP, CEPIM, slave-labor blacklist, leniency agreements) updated daily, in one request. Choose this over general CNPJ registry endpoints when compliance or anti-corruption screening is the goal, not just registration data.

## Known failure modes

- Invalid or malformed CNPJ format returns a 400 error
- CNPJ not found in Receita Federal registry may return empty results or a 404
- Temporary unavailability of one or more upstream government registries may return partial results
- Rate limiting or payment failure returns a 402 or 429 error
- Network timeout from upstream government APIs returns a 503

## How this service works

Sanctions and integrity screening for a Brazilian company (CNPJ) in ONE call, from official government registries updated daily: CEIS (debarred companies), CNEP (Anti-Corruption Law fines), CEPIM (nonprofits barred from federal agreements), the Labor Ministry slave-labor blacklist, and leniency agreements. Returns every match with category, authority, dates and legal basis, plus a clean-record flag. Free sample, no payment: https://api.brazilayer.com/v1/integridade/amostra

## Output

Returns a structured response listing every match found across CEIS (debarred/ineligible companies), CNEP (Anti-Corruption Law punishments with fine amounts), CEPIM (nonprofits barred from federal agreements), the Labor Ministry slave-labor blacklist, and leniency agreements. Each record includes the sanction category, issuing authority, start/end dates, and legal basis. Also includes a boolean clean-record flag indicating no matches found across all registries.

## 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": {
     "cnpj": {
      "type": "string",
      "description": "Brazilian company tax ID (CNPJ), 14 digits, with or without punctuation (e.g. 00000000000191 or 00.000.000/0001-91)"
     },
     "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/brazilayer-sanctions-screening-6b0e66c8/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from api.brazilayer.com](https://www.zero.xyz/host/api.brazilayer.com/llms.txt)
