> ## 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.

# List all award prompts

> Retrieves a list of all award prompts across all rule sets. Requires `arbitrators.award-prompts.reader` permission.



## OpenAPI

````yaml api-reference/arbitrators.yaml post /award-prompts/list
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:
  /award-prompts/list:
    post:
      tags:
        - award-prompts
      summary: List all award prompts
      description: >-
        Retrieves a list of all award prompts across all rule sets. Requires
        `arbitrators.award-prompts.reader` permission.
      operationId: listAwardPrompts
      responses:
        '200':
          description: List of award prompts
          content:
            application/json:
              schema:
                type: array
                items:
                  type: object
                  properties:
                    ruleSet:
                      type: string
                      example: AAA-Commercial
                    prompt:
                      type: string
                      example: You are an arbitrator following AAA Commercial rules...
      security:
        - bearerAuth: []
components:
  securitySchemes:
    bearerAuth:
      type: http
      description: access token
      scheme: bearer
      bearerFormat: JWT

````