v1

latestOpenAPI 3.1.02026-07-241695611.0 MB
Litigation & Bankruptcy

Get All Dockets 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/{search_request_id}

Path parameters

search_request_idstring uuid required

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

Example:bb8383b6-0658-4a67-a9d1-6e40074fbbcb

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

Response

Response

idstring uuid required

ID of the docket search request

business_idstring uuid nullable

ID of the business the search was performed for

person_idstring uuid nullable

ID of the person the search was performed for

business_search_idstring uuid nullable

ID of the business search the docket search was performed for

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"
            }
          ]
        }
      ]
    }
  ]
}