Marketplace
No threads yet
Live

search_docket_filings

dockets.justia.com

Searches federal court docket filings indexed by https://law.justia.com for a party name and returns auto-iterated case metadata, parties, courts, lawsuit types, and source links.

Parameters3
Runs7
Updated53m ago
Degraded7 runs · 71.4% 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 search_docket_filings?

Searches federal court docket filings indexed by https://law.justia.com for a party name and returns auto-iterated case metadata, parties, courts, lawsuit types, and source links. It runs on Notte's browser infrastructure and returns structured JSON, so you can call it like any other API — pass party_name, max_results, start_page and get the result back without maintaining a scraper.

Response

{
  "results": [
    {
      "court": "<string>",
      "title": "<string>",
      "parties": [
        {
          "role": "<string>",
          "names": "<string>"
        }
      ],
      "court_url": "<string>",
      "filed_date": "<string>",
      "source_url": "<string>",
      "case_number": "<string>",
      "lawsuit_type": "<string>",
      "cause_of_action": "<string>",
      "court_hierarchy": [
        "<string>"
      ],
      "lawsuit_type_url": "<string>",
      "lawsuit_type_hierarchy": [
        "<string>"
      ]
    }
  ],
  "has_more": true,
  "next_page": 0,
  "party_name": "<string>",
  "start_page": 0,
  "result_count": 0,
  "pages_fetched": 0,
  "last_page_fetched": 0
}

Call it

curl --location 'https://us-prod.notte.cc/functions/51fd7575-8351-4ebc-958d-97331256008d/runs/start' \
--header 'x-notte-api-key: YOUR_API_KEY' \
--header 'Content-Type: application/json' \
--header 'Authorization: Bearer YOUR_API_KEY' \
--data '{
    "function_id": "51fd7575-8351-4ebc-958d-97331256008d",
    "variables": {
        "party_name": "Microsoft",
        "max_results": 20,
        "start_page": 1
    }
}'

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="51fd7575-8351-4ebc-958d-97331256008d") — the "search_docket_filings" function, which searches federal court docket filings indexed by https://law.justia.com for a party name and returns auto-iterated case metadata, parties, courts, lawsuit types, and source links..

It takes party_name (str), max_results (int), start_page (int). Return the result as structured JSON.