Skip to main content

Documentation Index

Fetch the complete documentation index at: https://docs.docketlayer.ai/llms.txt

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

DocketLayer uses short court codes to identify courts. Pass the appropriate code in the court_code field of your API requests. The authoritative, real-time coverage list is always available free of charge:
curl https://api.docketlayer.ai/v2/status

US federal courts

Federal court codes follow PACER conventions. Examples:
CodeCourt
nysdSouthern District of New York
debDistrict of Delaware
candNorthern District of California
cacdCentral District of California
ilndNorthern District of Illinois
txsdSouthern District of Texas
nyebEastern District of New York
njbDistrict of New Jersey Bankruptcy
ca2US Court of Appeals, Second Circuit
ca9US Court of Appeals, Ninth Circuit
uscfcCourt of Federal Claims
citCourt of International Trade
All 94 district courts, 94 bankruptcy courts, and all 13 circuit courts of appeals are covered. The full list is in /v2/status. PACER code exceptions — some courts use a DocketLayer code that differs from their native PACER subdomain. The authoritative mapping is in /v2/status under each court’s court_code and notes fields.

US state courts

State court codes are short, lowercase, alphanumeric identifiers. All 50 states are covered. Examples:
CodeCourt
nyscefNew York State Courts Electronic Filing
fl_circFlorida Circuit Courts
ca_superiorCalifornia Superior Courts
tx_districtTexas District Courts
Note on Texas: All 37 Texas state courts carry coverage: "planned" status pending commercial access approval from the Texas Office of Court Administration. They appear in /v2/status but return 422 on docket queries until the agreement is in place. The full list of state court codes is in /v2/status.

Canadian courts

CodeCourt
fctFederal Court of Canada
fcaFederal Court of Appeal
tccTax Court of Canada
bc_scSupreme Court of British Columbia
on_scjSuperior Court of Justice (Ontario)
qc_csCour supérieure du Québec
ab_kbCourt of King’s Bench of Alberta
All 3 Canadian federal courts and 22 provincial/territorial superior courts are covered. The full list is in /v2/status.

Finding a court code

Before querying, confirm the court you need is covered and note its exact code:
curl -s https://api.docketlayer.ai/v2/status | jq '.courts[] | select(.name | test("Delaware"; "i")) | {code: .court_code, name: .name, coverage: .coverage}'
A court with "coverage": "full" is fully supported. A court with "coverage": "partial" is reachable but may have known gaps. Querying a court with "coverage": "planned" returns 422.

Case ID format

Each court’s expected case ID format is documented in /v2/status under case_id_format.pattern and case_id_format.example. See the case ID format guide for the US federal format convention.