> ## Documentation Index
> Fetch the complete documentation index at: https://docs.arb.inc/llms.txt
> Use this file to discover all available pages before exploring further.

# List docket entries for a case

> Gets a list of entries in a cases docket.



## OpenAPI

````yaml /api-reference/api.yaml post /docket/entries/list
openapi: 3.0.3
info:
  title: api
  description: >-
    The API service is the secure public gateway to our platform, letting people
    access features without touching our private internal APIs. It authenticates
    clients with its own internal tokens and then routes their requests to the
    right internal services behind the scenes.
  version: 1.0.0
servers:
  - url: https://api.platform.arb.inc
security: []
tags:
  - name: cases
  - name: docket
  - name: evidence
  - name: filings
  - name: organization
  - name: participants
  - name: schemas
  - name: service-of-notice
paths:
  /docket/entries/list:
    post:
      tags:
        - docket
      summary: List docket entries for a case
      description: Gets a list of entries in a cases docket.
      operationId: listDocketEntries
      requestBody:
        required: true
        content:
          application/json:
            schema:
              type: object
              required:
                - caseID
              properties:
                caseID:
                  type: string
                  description: The case identifier to list entries for. Max length 36.
                  example: 2025-08-00125
      responses:
        '200':
          description: Docket entries successfully retrieved.
          content:
            application/json:
              schema:
                type: object
                properties:
                  entries:
                    type: array
                    description: The docket entries for the case.
                    items:
                      type: object
                      properties:
                        entryID:
                          type: string
                          description: ID for this docket entry (unique within the case).
                          example: '52'
                        enteredAt:
                          type: string
                          format: date-time
                          description: When the entry was officially filed.
                          example: '2025-08-01T14:23:45Z'
                        userID:
                          type: string
                          description: User ID of the participant who authored the entry.
                          example: a2c4b6d8-1122-3344-5566-77889900aa11
                        organizationID:
                          type: string
                          nullable: true
                          description: >-
                            Organization ID of the user, or null for personal
                            accounts.
                          example: 51d3c8c2-9c0a-4a2e-8a9b-3e2f1d0c7b6a
                        phaseID:
                          type: string
                          description: Case phase at the time of filing.
                          example: caseInitiation
                        documentID:
                          type: string
                          description: Type ID of the document filed.
                          example: statementOfClaim
                        partyID:
                          type: string
                          description: >-
                            Role of the participant (e.g., claimant,
                            respondent).
                          example: claimant
                        filingID:
                          type: string
                          description: ID of the filed document.
                          example: '42'
                        title:
                          type: string
                          description: Short title or description of the entry.
                          example: Statement of Claim Filed
                        supersedes:
                          type: string
                          nullable: true
                          description: Optional docket number this filing supersedes.
                          example: '12'
                example:
                  entries:
                    - entryID: '52'
                      enteredAt: '2025-08-01T14:23:45Z'
                      userID: a2c4b6d8-1122-3344-5566-77889900aa11
                      organizationID: 51d3c8c2-9c0a-4a2e-8a9b-3e2f1d0c7b6a
                      phaseID: caseInitiation
                      documentID: statementOfClaim
                      partyID: claimant
                      filingID: '25'
                      title: Statement of Claim Filed
                    - entryID: '55'
                      enteredAt: '2025-08-03T10:05:12Z'
                      userID: c3d5e7f9-0011-2233-4455-66778899aabb
                      organizationID: null
                      phaseID: caseInitiation
                      documentID: noticeOfArbitration
                      partyID: caseManager
                      filingID: '91'
                      title: Notice of Arbitration
                      supersedes: '12'
        '410':
          description: The case could not be found.
          content:
            text/plain:
              schema:
                type: string
                example: The specified case could not be found.
        '411':
          description: Not a participant.
          content:
            text/plain:
              schema:
                type: string
                example: Not a participant in this case.
      security:
        - bearerAuth: []
components:
  securitySchemes:
    bearerAuth:
      type: http
      description: access token
      scheme: bearer
      bearerFormat: JWT

````