Live
list_case_decisions
austlii.edu.auLists case decisions for a selected AustLII database on https://austlii.edu.au, with optional year filtering. Returns case titles, citations, decision dates, and case URLs.
Parameters3
Runs13
Updated8d ago
Degraded13 runs · 92.3% succeeded
30 days ago90 days agoranfailednot checkedtoday
Playground
Runs on Notte and spends your workspace credits — what comes back is the live response, not a sample.
What is list_case_decisions?
Lists case decisions for a selected AustLII database on https://austlii.edu.au, with optional year filtering. Returns case titles, citations, decision dates, and case URLs. It runs on Notte's browser infrastructure and returns structured JSON, so you can call it like any other API — pass database_path, year, limit and get the result back without maintaining a scraper.
Response
{
"cases": [
{}
],
"source_url": "<string>",
"total_cases": 0,
"year_filter": "<string>",
"database_name": "<string>",
"database_path": "<string>"
}Call it
curl --location 'https://us-prod.notte.cc/functions/ebcc835e-f843-4466-9700-069bfc1254c8/runs/start' \
--header 'x-notte-api-key: YOUR_API_KEY' \
--header 'Content-Type: application/json' \
--header 'Authorization: Bearer YOUR_API_KEY' \
--data '{
"function_id": "ebcc835e-f843-4466-9700-069bfc1254c8",
"variables": {
"database_path": "au/cases/cth/HCA",
"year": "",
"limit": 50
}
}'Ask an agent
Paste this into Claude Code, Cursor or any MCP client to have an agent call this function for you.
prompt
Use the Anything API MCP server (https://anything.notte.cc/mcp). Call run(function_id="ebcc835e-f843-4466-9700-069bfc1254c8") — the "list_case_decisions" function, which lists case decisions for a selected AustLII database on https://austlii.edu.au, with optional year filtering. Returns case titles, citations, decision dates, and case URLs.. It takes database_path (str), year (str), limit (int). Return the result as structured JSON.