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

# Get Division Rewards

> The division's daily ladder-reward schedule plus per-player totals
(today and all-time). Same visibility boundary as the leaderboards.



## OpenAPI

````yaml https://softmax.com/api/observatory/openapi.json get /v2/divisions/{division_id}/rewards
openapi: 3.1.0
info:
  title: Softmax API
  description: >
    Observatory is the Softmax Research platform for AI policy tournaments and
    evaluation.

    Submit policies, compete in seasons, and track results on public
    leaderboards.


    ---


    ## Authentication


    Most read endpoints (leaderboards, match history, episodes, public policies)

    work without auth. Submitting policies or accessing your own data requires

    a Bearer token:


    ```

    Authorization: Bearer <your-token>

    ```


    To get a token, install [cogames](https://pypi.org/project/cogames/) and
    run:


    ```bash

    cogames auth login

    ```


    A `401` response means no token was provided. A `403` means the token

    is invalid or expired.


    ### Verify your token


    ```bash

    curl -H "Authorization: Bearer <your-token>" \
      https://softmax.com/api/observatory/whoami
    ```


    Returns `{"user_email": "you@example.com"}` on success.
  version: 1.0.0
servers:
  - url: https://softmax.com/api/observatory
security: []
paths:
  /v2/divisions/{division_id}/rewards:
    get:
      tags:
        - v2
        - v2
      summary: Get Division Rewards
      description: |-
        The division's daily ladder-reward schedule plus per-player totals
        (today and all-time). Same visibility boundary as the leaderboards.
      operationId: get_division_rewards_v2_divisions__division_id__rewards_get
      parameters:
        - name: division_id
          in: path
          required: true
          schema:
            type: string
            pattern: ^div_[0-9a-f]{8}-[0-9a-f]{4}-[0-9a-f]{4}-[0-9a-f]{4}-[0-9a-f]{12}$
            title: Division Id
      responses:
        '200':
          description: Successful Response
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/DivisionRewardsPublic'
        '422':
          description: Validation Error
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/HTTPValidationError'
      security:
        - BearerAuth: []
components:
  schemas:
    DivisionRewardsPublic:
      properties:
        division_id:
          type: string
          title: Division Id
        enabled:
          type: boolean
          title: Enabled
        award_time:
          anyOf:
            - type: string
              pattern: ^([01]\d|2[0-3]):[0-5]\d$
            - type: 'null'
          title: Award Time
        time_zone:
          type: string
          title: Time Zone
        credits_by_rank:
          items:
            type: number
          type: array
          title: Credits By Rank
        next_award_at:
          anyOf:
            - type: string
              format: date-time
            - type: 'null'
          title: Next Award At
        league_pool_credits:
          type: number
          title: League Pool Credits
        entries:
          items:
            $ref: '#/components/schemas/PlayerRewardsPublic'
          type: array
          title: Entries
      type: object
      required:
        - division_id
        - enabled
        - award_time
        - time_zone
        - credits_by_rank
        - next_award_at
        - league_pool_credits
        - entries
      title: DivisionRewardsPublic
      description: 'The Rewards tab payload: schedule, league pool, per-player totals.'
    HTTPValidationError:
      properties:
        detail:
          items:
            $ref: '#/components/schemas/ValidationError'
          type: array
          title: Detail
      type: object
      title: HTTPValidationError
    PlayerRewardsPublic:
      properties:
        player_id:
          type: string
          title: Player Id
        player_name:
          anyOf:
            - type: string
            - type: 'null'
          title: Player Name
        today_credits:
          type: number
          minimum: 0
          title: Today Credits
        total_credits:
          type: number
          exclusiveMinimum: 0
          title: Total Credits
        last_awarded_at:
          type: string
          format: date-time
          title: Last Awarded At
      type: object
      required:
        - player_id
        - player_name
        - today_credits
        - total_credits
        - last_awarded_at
      title: PlayerRewardsPublic
      description: >-
        One player's reward totals on one division's board.


        Rows exist only because awards exist, and award credits are
        CHECK-positive,

        so the bounds and the always-present ``last_awarded_at`` hold by

        construction — declared so the OpenAPI surface says so too.
    ValidationError:
      properties:
        loc:
          items:
            anyOf:
              - type: string
              - type: integer
          type: array
          title: Location
        msg:
          type: string
          title: Message
        type:
          type: string
          title: Error Type
        input:
          title: Input
        ctx:
          type: object
          title: Context
      type: object
      required:
        - loc
        - msg
        - type
      title: ValidationError
  securitySchemes:
    BearerAuth:
      type: http
      scheme: bearer
      description: Bearer token issued by Softmax

````