Marketplace
No threads yet
Live

get_case_document_details

austlii.edu.au

Retrieves detailed metadata and download options for a specific AustLII case document from https://austlii.edu.au. Returns prioritized links with preference order: RTF, eco-friendly print, then PDF.

Parameters1
Runs17
Updated8d ago
Degraded17 runs · 94.1% succeeded
30 days agotoday

Playground

Runs on Notte and spends your workspace credits — what comes back is the live response, not a sample.

What is get_case_document_details?

Retrieves detailed metadata and download options for a specific AustLII case document from https://austlii.edu.au. Returns prioritized links with preference order: RTF, eco-friendly print, then PDF. It runs on Notte's browser infrastructure and returns structured JSON, so you can call it like any other API — pass case_url and get the result back without maintaining a scraper.

Response

{
  "year": "<string>",
  "title": "<string>",
  "citation": "<string>",
  "database": "<string>",
  "metadata": {},
  "source_url": "<string>",
  "jurisdiction": "<string>",
  "canonical_url": "<string>",
  "download_links": [
    {}
  ],
  "preferred_download": {}
}

Call it

curl --location 'https://us-prod.notte.cc/functions/b40c6d2d-87ed-4f77-865b-2839345ef5e2/runs/start' \
--header 'x-notte-api-key: YOUR_API_KEY' \
--header 'Content-Type: application/json' \
--header 'Authorization: Bearer YOUR_API_KEY' \
--data '{
    "function_id": "b40c6d2d-87ed-4f77-865b-2839345ef5e2",
    "variables": {
        "case_url": "https://www.austlii.edu.au/cgi-bin/viewdoc/au/cases/cth/HCA/2025/1.html"
    }
}'

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="b40c6d2d-87ed-4f77-865b-2839345ef5e2") — the "get_case_document_details" function, which retrieves detailed metadata and download options for a specific AustLII case document from https://austlii.edu.au. Returns prioritized links with preference order: RTF, eco-friendly print, then PDF..

It takes case_url (str). Return the result as structured JSON.