Search for legal sources including cases, statutes, and regulations from authoritative legal databases. Returns ranked candidates. Always verify with legal.verify() before citing.
curl --request POST \
--url https://api.case.dev/legal/v1/find \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data '
{
"query": "<string>",
"jurisdiction": "<string>",
"numResults": 10
}
'{
"query": "<string>",
"jurisdiction": "<string>",
"found": 123,
"candidates": [
{
"url": "<string>",
"title": "<string>",
"snippet": "<string>",
"source": "<string>"
}
],
"hint": "<string>"
}API key starting with sk_case_
Search query and filtering options
Search query (e.g., "fair use copyright", "Miranda rights")
3 - 1000Optional jurisdiction ID from resolveJurisdiction (e.g., "california", "us-federal")
Number of results 1-25 (default: 10)
1 <= x <= 25Was this page helpful?
curl --request POST \
--url https://api.case.dev/legal/v1/find \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data '
{
"query": "<string>",
"jurisdiction": "<string>",
"numResults": 10
}
'{
"query": "<string>",
"jurisdiction": "<string>",
"found": 123,
"candidates": [
{
"url": "<string>",
"title": "<string>",
"snippet": "<string>",
"source": "<string>"
}
],
"hint": "<string>"
}