v1

latestOpenAPI 3.1.02026-07-241695611.0 MB
Litigation & Bankruptcy

Get Adhoc Docket Search By Search Request Id

Fetches the most recent dockets for a given docket search request ID and returns all the associated dockets.

get/docket_searches/adhoc/{search_request_id}

Path parameters

search_request_idstring uuid required

The unique identifier of the adhoc docket search request to fetch all dockets for.

Example:45f6844a-fe9f-4bc6-8055-0c68fe15d19a

The unique identifier of the adhoc docket search request to fetch all dockets for.

Response

Response

idstring uuid required

ID of the docket search request

namestring required

The name used for the ad-hoc docket search.

state'PENDING' | 'EXECUTING' | 'COMPLETED' | 'FAILED' | 'CANCELLED' required
errorstring nullable

Any errors that occurred during the docket search request.

last_updated_atstring date required

Date the search was last updated

Example response

{
  "dockets": [
    {
      "docket_number": "A19284",
      "court": "Supreme Court of Orange County",
      "division": "Civil Court Division",
      "judges": [
        "Honorable Paul Shaw"
      ],
      "title": "Doe v. City of New York",
      "case_type": "Civil",
      "status": "Pending",
      "parties": [
        {
          "party_type": "Complaintant",
          "counsel": [
            "Robin Keller"
          ]
        }
      ],
      "updates": [
        {
          "title": "Update 2",
          "contents": "New details about the case.",
          "date": "2024-06-01",
          "exhibits": [
            {
              "title": "Exhibit 1A"
            }
          ]
        }
      ]
    }
  ]
}