---
title: "DocketsFilingsResponse"
url: "https://console.9fin.com/apis/distressed-api/versions/6f7fc866-4490-4486-90ea-393120603830/schemas/DocketsFilingsResponse"
---

> Full API specification: https://console.9fin.com/apis/distressed-api/versions/6f7fc866-4490-4486-90ea-393120603830.md

# DocketsFilingsResponse

Cursor-paginated list of docket filings.

## OpenAPI definition

```yaml
openapi: 3.1.0
info:
  title: 9fin Distressed API
  version: 0.1.11
components:
  schemas:
    DocketsFilingListItem:
      description: Document filed on a docket case.
      properties:
        case_type:
          anyOf:
            - type: string
            - type: "null"
          description: Parent case type. E.g., `Chapter 11`, `Chapter 15`.
          title: Case Type
        case_uuid:
          description: The case the filing belongs to, addressable on the cases endpoint
            by its `uuid`. A docket number is only unique within a court, so the
            case is linked by uuid instead.
          format: uuid
          title: Case Uuid
          type: string
        company:
          anyOf:
            - $ref: "#/components/schemas/Entity"
            - type: "null"
          description: Linked company.
        date_filed:
          description: Date the filing's docket entry was filed with the court.
          format: date
          title: Date Filed
          type: string
        document_number:
          description: Document order within the docket entry.The main document is
            typically 1, with attachments numbered 2, 3, and so on.
          minimum: 1
          title: Document Number
          type: integer
        document_title:
          description: Document title.
          title: Document Title
          type: string
        document_uuid:
          description: Unique document identifier.
          format: uuid
          title: Document Uuid
          type: string
        filing_category:
          anyOf:
            - type: string
            - type: "null"
          description: Filing category. E.g., `First Day`, `Motion` etc.
          title: Filing Category
        filing_number:
          anyOf:
            - type: integer
            - type: "null"
          description: The filing's number on the docket; null where the court did not
            give one. The first filing of the case will have a filing_number of
            1.
          title: Filing Number
        filing_party:
          anyOf:
            - type: string
            - type: "null"
          description: Filing party. E.g., `Committee` `Debtor`, `Trustee` etc.
          title: Filing Party
        filing_purpose:
          anyOf:
            - type: string
            - type: "null"
          description: What the filing is for, e.g. `DIP Financing`. Determined by the
            filing type, so it is never set independently of it.
          title: Filing Purpose
        filing_type:
          anyOf:
            - type: string
            - type: "null"
          description: Filing type. E.g., `Complaint`, `DIP Financing Motion`,`Notice` etc.
          title: Filing Type
        industry:
          $ref: "#/components/schemas/Industry"
        judges:
          description: Judges assigned to the case.
          items:
            type: string
          title: Judges
          type: array
        venue:
          anyOf:
            - type: string
            - type: "null"
          description: Venue (court) where the docket is filed.
          title: Venue
      required:
        - document_uuid
        - document_title
        - date_filed
        - company
        - filing_type
        - filing_party
        - filing_purpose
        - filing_category
        - case_type
        - judges
        - venue
        - industry
        - filing_number
        - case_uuid
        - document_number
      title: DocketsFilingListItem
      type: object
    Entity:
      description: A 9fin entity (e.g. a company), identified by its `nf_id`.
      properties:
        name:
          description: Company name.
          title: Name
          type: string
        nf_id:
          description: Permanent opaque organisation id (`nf_ent_<hex>`).
          title: Nf Id
          type: string
      required:
        - nf_id
        - name
      title: Entity
      type: object
    Industry:
      description: A company's industry classification.
      properties:
        l2:
          anyOf:
            - type: string
            - type: "null"
          description: Level-2 industry name.
          title: L2
      required:
        - l2
      title: Industry
      type: object
    DocketsFilingsResponse:
      description: Cursor-paginated list of docket filings.
      properties:
        items:
          description: Filings that match the provided filter criteria.
          items:
            $ref: "#/components/schemas/DocketsFilingListItem"
          title: Items
          type: array
        next_cursor:
          anyOf:
            - type: string
            - type: "null"
          description: Cursor to pass in the next request to fetch the next page.
          title: Next Cursor
      required:
        - items
        - next_cursor
      title: DocketsFilingsResponse
      type: object
```
