Skip to main content

Documentation Index

Fetch the complete documentation index at: https://docs.croma.run/llms.txt

Use this file to discover all available pages before exploring further.

Checks a person’s Colombian criminal record (antecedentes judiciales) from the Policía Nacional. POST /co/policia/criminal-records/lookup/v1
FieldTypeNotes
document_numberstringRequired. 3–30 chars.
document_typeenumColombian document type (CC, CE, PA, DPO). Defaults to CC.
curl https://api.croma.run/co/policia/criminal-records/lookup/v1 \
  -H "Authorization: Bearer $CROMA_API_KEY" \
  -d '{ "document_number": "1234567890" }'
The response reports whether the person has pending matters with the judicial authorities, alongside the portal’s verbatim verdict:
FieldNotes
has_recordsfalse for a clean record (“NO TIENE ASUNTOS PENDIENTES…”); true when records exist.
statusVerbatim verdict sentence shown by the portal.
full_nameRegistered name, or null when the portal omits it.
checked_atConsultation timestamp the portal prints, or null if absent.
This lookup runs on demand against the Policía Nacional portal and may take longer than a typical request. The accepted document_type values are enumerated in the API reference.

Full reference

Accepted document types, schemas, and an interactive playground.