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

# Get Statement of Claim

> Returns the Statement of Claim document filed by the claimant, including all field values and metadata.



## OpenAPI

````yaml api-reference/cases.yaml post /docket/entries/statement-of-claim
openapi: 3.0.3
info:
  title: cases
  description: >-
    The Cases Service is the main place where all case info lives, including who
    is involved and what files are attached. It lets you create new cases, view
    existing ones, upload documents or files, and manage service of notice
    delivery through multiple channels (mail, email, or manual attestation),
    while notifying other parts of the system when anything changes.
  version: 1.0.0
servers:
  - url: https://cases.platform.arb.inc
security: []
tags:
  - name: /
  - name: cases
  - name: docket
  - name: evidence
  - name: filings
  - name: internal
  - name: invites
  - name: participants
  - name: schemas
  - name: service-of-notice
  - name: tasks
  - name: timetables
paths:
  /docket/entries/statement-of-claim:
    post:
      tags:
        - docket
      summary: Get Statement of Claim
      description: >-
        Returns the Statement of Claim document filed by the claimant, including
        all field values and metadata.
      operationId: getStatementOfClaim
      requestBody:
        required: true
        content:
          application/json:
            schema:
              type: object
              required:
                - caseID
              properties:
                caseID:
                  type: string
                  description: Case identifier
                  example: 2025-08-00292
      responses:
        '200':
          description: Successfully retrieved Statement of Claim
          content:
            application/json:
              schema:
                type: object
                properties:
                  entryID:
                    type: string
                    example: '1'
                  userID:
                    type: string
                    format: uuid
                    example: 2720f109-0caf-4c62-af22-5d08c853711c
                  organizationID:
                    type: string
                    format: uuid
                    example: 2720f109-0caf-4c62-af22-5d08c853711c
                  fields:
                    type: object
                    additionalProperties:
                      type: string
                    example:
                      claimantName: John Smith
                      respondentName: Jane Doe
                      disputeAmount: '5000.00'
        '410':
          description: Document not filed yet
      security:
        - bearerAuth: []
components:
  securitySchemes:
    bearerAuth:
      type: http
      description: access token
      scheme: bearer
      bearerFormat: JWT

````