Skip to main content

Endpoints

  • List codes only: GET /api/v1/firms/jurisdictions/list
  • Detailed metadata: GET /api/v1/firms/jurisdictions

Sample Response

{
  "success": true,
  "data": [
    {
      "code": "CA",
      "name": "California",
      "type": "state"
    },
    {
      "code": "NY",
      "name": "New York",
      "type": "state"
    }
  ]
}

Use Cases

  • Power dropdowns when creating cases.
  • Validate inputs client-side before calling /api/v1/cases.
  • Combine with firm specialties to filter destinations.
Jurisdiction codes follow standard postal abbreviations. Use uppercase strings in requests.