> ## 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 AI-generated claims and counterclaims

> Retrieves the AI-generated analysis of claims and counterclaims for a specific case. The requesting user must be the arbitrator assigned to the case.



## OpenAPI

````yaml api-reference/arbitrators.yaml post /claims-counterclaims
openapi: 3.0.3
info:
  title: arbitrators
  description: >-
    The Arbitrators service manages and executes the tasks that arbitrators need
    to perform on our platform. It ensures that each task is created, tracked,
    and completed according to the platform's rules and workflows.
  version: 1.0.0
servers:
  - url: https://arbitrators.platform.arb.inc
security: []
tags:
  - name: /
  - name: award
  - name: award-prompts
  - name: case-summary
  - name: case-timeline
  - name: claims-counterclaims
  - name: key-issues
  - name: summary-of-positions
paths:
  /claims-counterclaims:
    post:
      tags:
        - claims-counterclaims
      summary: Get AI-generated claims and counterclaims
      description: >-
        Retrieves the AI-generated analysis of claims and counterclaims for a
        specific case. The requesting user must be the arbitrator assigned to
        the case.
      operationId: getClaimsCounterclaims
      requestBody:
        required: true
        content:
          application/json:
            schema:
              type: object
              required:
                - caseId
              properties:
                caseId:
                  type: string
                  minLength: 1
                  maxLength: 36
                  description: Case identifier
                  example: 2025-11-00079
      responses:
        '200':
          description: Claims and counterclaims successfully retrieved
          content:
            application/json:
              schema:
                type: object
                properties:
                  caseId:
                    type: string
                    example: 2025-11-00079
                  content:
                    type: string
                    example: >-
                      Claimant alleges breach of contract for failure to deliver
                      goods. Respondent counterclaims for payment delays...
        '403':
          description: Access denied or user is not an arbitrator
          content:
            text/plain:
              schema:
                type: string
                example: >-
                  Access denied - Only the assigned arbitrator can view this
                  content
        '404':
          description: Claims and counterclaims not found
          content:
            text/plain:
              schema:
                type: string
                example: Claims & counterclaims not found
      security:
        - bearerAuth: []
components:
  securitySchemes:
    bearerAuth:
      type: http
      description: access token
      scheme: bearer
      bearerFormat: JWT

````