Skip to main content

Documentation Index

Fetch the complete documentation index at: https://docs.judit.io/llms.txt

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

Public beta. Per-court coverage may grow during beta. To always get the current list at runtime, use GET /tribunals (free route).
Every court covered by Miner has an internal numeric identifier (tribunal_id) — that’s the value you pass in the tribunals field when filtering a query. The IDs are not the acronyms and they are not the tribunal_acronym returned by Judit’s standard lawsuit-query products. To filter by court:
{
  "kind": "judgement-bond",
  "tribunals": [10, 18, 1, 193]
}
Or, at runtime, fetch the up-to-date list:
curl --request GET \
  --url 'https://miner.production.judit.io/tribunals' \
  --header 'api-key: '"$JUDIT_API_KEY"

Full list (sorted by acronym)

The list below mirrors what GET /tribunals returns. Use the tribunal_id in the tribunals field of your request.

Superior Court

tribunal_idAcronymCourt
927126STJSuperior Tribunal de Justiça (Superior Court of Justice)

State Courts (TJ)

tribunal_idAcronymCourt
538384TJACCourt of Justice of Acre
477825TJALCourt of Justice of Alagoas
511165TJAMCourt of Justice of Amazonas
586715TJAPCourt of Justice of Amapá
511221TJBACourt of Justice of Bahia
5028TJCECourt of Justice of Ceará
510788TJDFCourt of Justice of the Federal District
5468TJESCourt of Justice of Espírito Santo
581028TJGOCourt of Justice of Goiás
510756TJMACourt of Justice of Maranhão
23480TJMGCourt of Justice of Minas Gerais
173TJMSCourt of Justice of Mato Grosso do Sul
510571TJMTCourt of Justice of Mato Grosso
512372TJPACourt of Justice of Pará
477557TJPBCourt of Justice of Paraíba
477564TJPECourt of Justice of Pernambuco
815112TJPICourt of Justice of Piauí
456559TJPRCourt of Justice of Paraná
18TJRJCourt of Justice of Rio de Janeiro
477866TJRNCourt of Justice of Rio Grande do Norte
510866TJROCourt of Justice of Rondônia
1045760TJRRCourt of Justice of Roraima
583514TJRSCourt of Justice of Rio Grande do Sul
3768TJSCCourt of Justice of Santa Catarina
477577TJSECourt of Justice of Sergipe
10TJSPCourt of Justice of São Paulo
581271TJTOCourt of Justice of Tocantins

Military State Courts (TJM)

tribunal_idAcronymCourt
1330350TJMMGMilitary Court of Justice of Minas Gerais
4531239TJMRSMilitary Court of Justice of Rio Grande do Sul
906456TJMSPMilitary Court of Justice of São Paulo

Federal Courts (TRF)

tribunal_idAcronymCourt
193TRF1Federal Court of the 1st Region
37524TRF2Federal Court of the 2nd Region
1TRF3Federal Court of the 3rd Region
482427TRF4Federal Court of the 4th Region
64TRF5Federal Court of the 5th Region
633695TRF6Federal Court of the 6th Region

Labor Courts (TRT)

tribunal_idAcronymCourt
510443TRT1Labor Court — 1st Region (RJ)
150610TRT2Labor Court — 2nd Region (SP capital)
510432TRT3Labor Court — 3rd Region (MG)
510516TRT4Labor Court — 4th Region (RS)
510783TRT5Labor Court — 5th Region (BA)
510900TRT6Labor Court — 6th Region (PE)
511096TRT7Labor Court — 7th Region (CE)
511317TRT8Labor Court — 8th Region (PA/AP)
510720TRT9Labor Court — 9th Region (PR)
510976TRT10Labor Court — 10th Region (DF/TO)
511188TRT11Labor Court — 11th Region (AM/RR)
511091TRT12Labor Court — 12th Region (SC)
511153TRT13Labor Court — 13th Region (PB)
511228TRT14Labor Court — 14th Region (RO/AC)
510428TRT15Labor Court — 15th Region (SP interior)
511213TRT16Labor Court — 16th Region (MA)
511043TRT17Labor Court — 17th Region (ES)
510950TRT18Labor Court — 18th Region (GO)
511269TRT19Labor Court — 19th Region (AL)
511245TRT20Labor Court — 20th Region (SE)
511337TRT21Labor Court — 21st Region (RN)
527067TRT22Labor Court — 22nd Region (PI)
511127TRT23Labor Court — 23rd Region (MT)
511211TRT24Labor Court — 24th Region (MS)

Electoral Courts (TRE)

tribunal_idAcronymCourt
1151652TRE-SPRegional Electoral Court of São Paulo

Useful patterns

Cover the entire Southeast state axis

{
  "tribunals": [10, 18, 23480, 5468]
}
(TJSP, TJRJ, TJMG, TJES)

Cover every federal TRF

{
  "tribunals": [193, 37524, 1, 482427, 64, 633695]
}

Cover the largest labor capitals (TRT2 + TRT15)

{
  "tribunals": [150610, 510428]
}
(TRT2 — São Paulo capital; TRT15 — São Paulo interior)

Next steps

Concepts

How to combine tribunals with kind, natures, tags and amount ranges.

Quickstart

See tribunals in action inside a complete flow.

GET /tribunals (Reference)

Interactive spec for the runtime endpoint that returns this list.

Overall Judit coverage

Court coverage on the other Judit products (Tracking, Lawsuits, Requests).