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

# View award prompt for rule set

> Retrieves the award prompt for a specific rule set. Requires `arbitrators.award-prompts.reader` permission.



## OpenAPI

````yaml api-reference/arbitrators.yaml post /award-prompts/view
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/view:
    post:
      tags:
        - award-prompts
      summary: View award prompt for rule set
      description: >-
        Retrieves the award prompt for a specific rule set. Requires
        `arbitrators.award-prompts.reader` permission.
      operationId: viewAwardPrompt
      requestBody:
        required: true
        content:
          application/json:
            schema:
              type: object
              required:
                - ruleSet
              properties:
                ruleSet:
                  type: string
                  minLength: 1
                  maxLength: 50
                  description: Rule set identifier
                  example: AAA-Commercial
      responses:
        '200':
          description: Award prompt successfully retrieved
          content:
            application/json:
              schema:
                type: object
                properties:
                  ruleSet:
                    type: string
                    example: AAA-Commercial
                  prompt:
                    type: string
                    example: You are an arbitrator following AAA Commercial rules...
        '404':
          description: Award prompt not found
          content:
            text/plain:
              schema:
                type: string
                example: award prompt not found for rule set
      security:
        - bearerAuth: []
components:
  securitySchemes:
    bearerAuth:
      type: http
      description: access token
      scheme: bearer
      bearerFormat: JWT

````