Extract all legal citations and references from a document URL. Returns structured citation data including case citations, statute references, and regulatory citations.
curl --request POST \
--url https://api.case.dev/legal/v1/citations-from-url \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data '
{
"url": "<string>"
}
'{
"url": "<string>",
"title": "<string>",
"totalCitations": 123,
"citations": {
"cases": [
{
"type": "<string>",
"citation": "<string>",
"count": 123
}
],
"statutes": [
{
"type": "<string>",
"citation": "<string>",
"count": 123
}
],
"regulations": [
{
"type": "<string>",
"citation": "<string>",
"count": 123
}
]
},
"externalLinks": [
"<string>"
],
"hint": "<string>"
}API key starting with sk_case_
Document URL to extract citations from
URL of the legal document to extract citations from
Was this page helpful?
curl --request POST \
--url https://api.case.dev/legal/v1/citations-from-url \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data '
{
"url": "<string>"
}
'{
"url": "<string>",
"title": "<string>",
"totalCitations": 123,
"citations": {
"cases": [
{
"type": "<string>",
"citation": "<string>",
"count": 123
}
],
"statutes": [
{
"type": "<string>",
"citation": "<string>",
"count": 123
}
],
"regulations": [
{
"type": "<string>",
"citation": "<string>",
"count": 123
}
]
},
"externalLinks": [
"<string>"
],
"hint": "<string>"
}