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.

Rama Judicial is Colombia’s national judicial branch registry. Croma exposes two endpoints over it: search processes by party, and resolve a case by its registration number (radicación), which returns case metadata plus action history in a single call.

Search processes

POST /co/rama-judicial/cases/search/v1 finds processes by person or business name.
FieldTypeNotes
namestringRequired. 3–200 chars. Party name to search.
person_typeenumnat (natural person) or jur (legal entity). Default nat.
active_onlybooleanRestrict to processes with activity in the last 30 days. Default false.
court_codestringNarrow to a specific court.
pageinteger1–1000. Default 1.
curl https://api.croma.run/co/rama-judicial/cases/search/v1 \
  -H "Authorization: Bearer $CROMA_API_KEY" \
  -d '{ "name": "PEDRO CIFUENTES", "person_type": "nat", "page": 1 }'

Resolve by radicación

POST /co/rama-judicial/cases/lookup/v1 resolves a case by its 23-digit registration number and returns metadata plus the first page of action history (~40 entries).
FieldTypeNotes
registration_numberstringRequired. 20–25 digits (radicación).
curl https://api.croma.run/co/rama-judicial/cases/lookup/v1 \
  -H "Authorization: Bearer $CROMA_API_KEY" \
  -d '{ "registration_number": "11001600001720180327700" }'
Rama Judicial is a live upstream and can be slow or briefly unavailable. These endpoints may return 502 upstream_error; retry with backoff.

Full reference

Schemas, all response fields, and an interactive playground.