list_legal_databases
austlii.edu.auLists all available legal databases on https://austlii.edu.au, organized by jurisdiction and category, with each database's name, URL, and reusable path identifier.
Playground
Runs on Notte and spends your workspace credits — what comes back is the live response, not a sample.
What is list_legal_databases?
Lists all available legal databases on https://austlii.edu.au, organized by jurisdiction and category, with each database's name, URL, and reusable path identifier. It runs on Notte's browser infrastructure and returns structured JSON, so you can call it like any other API — call it with no parameters and get the result back without maintaining a scraper.
Response
{
"source_url": "<string>",
"jurisdictions": [
{
"name": "<string>",
"categories": [
{
"name": "<string>",
"databases": [
{
"url": "<string>",
"name": "<string>",
"path": "<string>"
}
]
}
]
}
],
"total_databases": 0
}Call it
curl --location 'https://us-prod.notte.cc/functions/79b9f871-82c0-45f5-be90-57b127c04989/runs/start' \
--header 'x-notte-api-key: YOUR_API_KEY' \
--header 'Content-Type: application/json' \
--header 'Authorization: Bearer YOUR_API_KEY' \
--data '{
"function_id": "79b9f871-82c0-45f5-be90-57b127c04989",
"variables": {}
}'Ask an agent
Paste this into Claude Code, Cursor or any MCP client to have an agent call this function for you.
Use the Anything API MCP server (https://anything.notte.cc/mcp). Call run(function_id="79b9f871-82c0-45f5-be90-57b127c04989") — the "list_legal_databases" function, which lists all available legal databases on https://austlii.edu.au, organized by jurisdiction and category, with each database's name, URL, and reusable path identifier.. It takes no parameters. Return the result as structured JSON.