Search for a jurisdiction by name. Returns matching jurisdictions with their IDs for use in legal.find() and other legal research endpoints.
curl --request POST \
--url https://api.case.dev/legal/v1/jurisdictions \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data '
{
"name": "<string>"
}
'{
"query": "<string>",
"found": 123,
"jurisdictions": [
{
"id": "<string>",
"name": "<string>",
"level": "federal",
"state": "<string>"
}
],
"hint": "<string>"
}API key starting with sk_case_
Jurisdiction search query
Jurisdiction name (e.g., "California", "US Federal", "NY")
2 - 100Was this page helpful?
curl --request POST \
--url https://api.case.dev/legal/v1/jurisdictions \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data '
{
"name": "<string>"
}
'{
"query": "<string>",
"found": 123,
"jurisdictions": [
{
"id": "<string>",
"name": "<string>",
"level": "federal",
"state": "<string>"
}
],
"hint": "<string>"
}