---
title: "Resolve jurisdiction"
method: POST
path: "/legal/v1/jurisdictions"
tags: ["Legal"]
---

# Resolve jurisdiction

`POST /legal/v1/jurisdictions`

Search for a jurisdiction by name. Returns matching jurisdictions with their IDs for use in legal.find() and other legal research endpoints.

## Request body

- object
  - `name` string, required — Jurisdiction name (e.g., "California", "US Federal", "NY")

## Response `200`

Jurisdictions found successfully

- object
  - `query` string — Original search query
  - `found` integer — Number of matching jurisdictions
  - `jurisdictions` object[]
    - `id` string — Jurisdiction ID to use in other endpoints
    - `name` string — Full jurisdiction name
    - `level` 'federal' | 'state' | 'county' | 'municipal' — Jurisdiction level
    - `state` string, nullable — State abbreviation (if applicable)
  - `hint` string — Usage guidance

## Other responses

- `400` — Bad request - invalid search term
- `401` — Unauthorized - invalid API key
- `403` — Forbidden - insufficient permissions

---

[API](https://skmtc.net/casemark/apis/case-dev-api.md) · [All operations](https://skmtc.net/casemark/apis/case-dev-api/llms.txt) · [OpenAPI document](https://skmtc-service-staging.skmtc.workers.dev/v1/apis/casemark/case-dev-api/revisions/5b7e64e6d6f9/schema)
