Skip to main content
X-API-Key
string
required
Your API key. Requires the debarment module.

Request body

identifier
string
required
Company CNPJ (e.g. 12.345.678/0001-90). Formatting is optional.
country
string
required
ISO 3166-1 alpha-2 country code. Supported: BR.

Response

identifier
string
The queried CNPJ, as provided.
country
string
Country code.
is_debarred
boolean
true if any records were found in CEIS or CNEP. false if no records found.
records
array
List of debarment records. Empty array if is_debarred is false.
records[].source
string
Registry that contains this record: CEIS or CNEP.
records[].sanction_type
string
Type of sanction (e.g. SUSPENSÃO, INIDONEIDADE, MULTA).
records[].sanctioning_body
string
Body that issued the sanction (e.g. TCU, CGU, ANTT).
records[].date_start
string | null
ISO date when the sanction began.
records[].date_end
string | null
ISO date when the sanction ends. null if indefinite.
records[].process_id
string | null
Administrative process number associated with the sanction.
records[].fine_amount
number | null
Fine in BRL. Only present in CNEP records — null for CEIS.
sources_checked
array
Registries checked in this request: ["CEIS", "CNEP"].
checked_at
string
ISO 8601 datetime of this specific check.
curl -X POST https://api.enrichlatam.com/v1/debarment \
  -H "X-API-Key: YOUR_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{"identifier": "12.345.678/0001-90", "country": "BR"}'
{
  "identifier": "12.345.678/0001-90",
  "country": "BR",
  "is_debarred": false,
  "records": [],
  "sources_checked": ["CEIS", "CNEP"],
  "checked_at": "2026-04-15T12:00:00+00:00"
}