Live
get_docket_details
dockets.justia.comRetrieves a federal docket detail page indexed by https://law.justia.com with parties, judges, court, filing date, suit and action metadata, PACER link, and docket entries.
Parameters1
Runs3
Updated1h ago
Operational3 runs · 100% 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 get_docket_details?
Retrieves a federal docket detail page indexed by https://law.justia.com with parties, judges, court, filing date, suit and action metadata, PACER link, and docket entries. It runs on Notte's browser infrastructure and returns structured JSON, so you can call it like any other API — pass docket_url and get the result back without maintaining a scraper.
Response
{
"court": "<string>",
"title": "<string>",
"judges": [
{
"name": "<string>",
"role": "<string>"
}
],
"parties": [
{
"role": "<string>",
"names": "<string>"
}
],
"rss_url": "<string>",
"pacer_url": "<string>",
"source_url": "<string>",
"case_number": "<string>",
"filing_date": "<string>",
"docket_entries": [
{
"date_filed": "<string>",
"document_text": "<string>",
"filing_number": "<string>",
"document_links": [
{
"url": "<string>",
"title": "<string>"
}
]
}
],
"nature_of_suit": "<string>",
"cause_of_action": "<string>",
"metadata_fields": [
{
"label": "<string>",
"value": "<string>"
}
],
"jury_demanded_by": "<string>",
"docket_last_retrieved": "<string>"
}Call it
curl --location 'https://us-prod.notte.cc/functions/e98ea4a6-83df-458d-92ad-8a166159efe0/runs/start' \
--header 'x-notte-api-key: YOUR_API_KEY' \
--header 'Content-Type: application/json' \
--header 'Authorization: Bearer YOUR_API_KEY' \
--data '{
"function_id": "e98ea4a6-83df-458d-92ad-8a166159efe0",
"variables": {
"docket_url": "https://dockets.justia.com/docket/indiana/insdce/2:2026cv00587/231811"
}
}'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="e98ea4a6-83df-458d-92ad-8a166159efe0") — the "get_docket_details" function, which retrieves a federal docket detail page indexed by https://law.justia.com with parties, judges, court, filing date, suit and action metadata, PACER link, and docket entries.. It takes docket_url (str). Return the result as structured JSON.