# Docket Entry

A docket lists, in chronological order, every document filed with the court in a case. Each document and its accompanying information is a "docket entry." For more information about dockets, see [Docket](/api-reference-v2/objects/docket.md).

Dockets can be saved one of two ways in the Clearinghouse: (1) as parsed docket entries, or (2) as a PDF. This docket entry object is for parsed docket entries. For PDF dockets, the docket is saved as a document (see [Documents](/api-reference-v2/objects/case/documents.md)).

For federal docket entries from RECAP, some entries might be taken from PACER's RSS feed. These "RSS" entries have incomplete information.

## row\_number

(*number*)

The position of the docket entry within the docket, where the docket is a zero-indexed array of entries.

## entry\_number

(*number*)

For dockets that are numbered by the court, the number assigned to the docket entry. Unlike [#row\_number](#row_number "mention"), these numbers start with 1.

In federal court, this is known as an "ECF number," and every federal docket entry should have an ECF number. If the docket entry is part of a federal docket but `entry_number` is `null`, then the docket entry is likely an "RSS entry" (see above).

For state courts, states vary as to whether they assign numbers to docket entries, so whether `entry_number` is `null` depends on the state.

## date\_filed

(*string*)

The date of the docket entry, i.e. when the document was filed. This is in the format `"YYYY-MM-DDTHH:MM:ssTZ"`.

## description

(*string*)

The text that describes the document in a docket entry.

For RSS entries in federal dockets (see above), this will be an abbreviated version of the actual docket entry description (often just the type of document).

## attachments

(*array\[object]*)

Sometimes documents are attached to another document in PACER/RECAP. If so, the attached documents ("attachments") are gathered in an array associated with a docket entry.

Attachments have the following fields:

| Field              | Description                                                                                                                         |
| ------------------ | ----------------------------------------------------------------------------------------------------------------------------------- |
| recap\_id          | The ID number given by RECAP.                                                                                                       |
| pacer\_url         | The URL to the document in PACER.                                                                                                   |
| description        | A short description of the document. Unlike a docket entry's overall description, an attachment description tends to be very short. |
| attachment\_number | Starting from 1, position of the attachment among the attachments for the docket entry.                                             |

## url

(*string*)

A URL to a page that embeds the document. For federal cases, this is a link to a [CourtListener (RECAP)](https://www.courtlistener.com) page. For state cases, this is a link to a [Docket Alarm](https://www.docketalarm.com) page.

For RSS entries in federal dockets (see above), this link is simply `"https://www.courtlistener.com"`.

## recap\_pdf\_url

(*string*)

A URL to the document (i.e. the PDF itself). If there is no such URL available or if this an RSS entry in a federal docket (see above), this field is `null`.

## pacer\_doc\_id

(*string*)

The ID of the document in PACER. PACER, which stands for Public Access to Court Electronic Records, is the federal government's electronic system for providing access to federal court records.

For RSS entries in federal dockets (see above), this field is `null`.

## id

(*number*)

The ID of the docket entry in the Clearinghouse.


---

# Agent Instructions: Querying This Documentation

If you need additional information that is not directly available in this page, you can query the documentation dynamically by asking a question.

Perform an HTTP GET request on the current page URL with the `ask` query parameter:

```
GET https://api.clearinghouse.net/api-reference-v2/objects/docket-entry.md?ask=<question>
```

The question should be specific, self-contained, and written in natural language.
The response will contain a direct answer to the question and relevant excerpts and sources from the documentation.

Use this mechanism when the answer is not explicitly present in the current page, you need clarification or additional context, or you want to retrieve related documentation sections.
