> ## 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 First Place



## OpenAPI

````yaml https://softmax.com/api/observatory/openapi.json get /v2/divisions/{division_id}/first-place
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}/first-place:
    get:
      tags:
        - v2
        - v2
      summary: Get Division First Place
      operationId: get_division_first_place_v2_divisions__division_id__first_place_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:
                anyOf:
                  - $ref: '#/components/schemas/FirstPlaceSummaryPublic'
                  - type: 'null'
                title: >-
                  Response Get Division First Place V2 Divisions  Division Id 
                  First Place Get
        '422':
          description: Validation Error
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/HTTPValidationError'
      security:
        - BearerAuth: []
        - {}
components:
  schemas:
    FirstPlaceSummaryPublic:
      properties:
        current:
          $ref: '#/components/schemas/FirstPlaceReignPublic'
        reign_count:
          type: integer
          title: Reign Count
        longest_prior_reign_started_at:
          anyOf:
            - type: string
              format: date-time
            - type: 'null'
          title: Longest Prior Reign Started At
        longest_prior_reign_ended_at:
          anyOf:
            - type: string
              format: date-time
            - type: 'null'
          title: Longest Prior Reign Ended At
      type: object
      required:
        - current
        - reign_count
      title: FirstPlaceSummaryPublic
    HTTPValidationError:
      properties:
        detail:
          items:
            $ref: '#/components/schemas/ValidationError'
          type: array
          title: Detail
      type: object
      title: HTTPValidationError
    FirstPlaceReignPublic:
      properties:
        player_id:
          type: string
          title: Player Id
        player_name:
          anyOf:
            - type: string
            - type: 'null'
          title: Player Name
        started_at:
          type: string
          format: date-time
          title: Started At
        rounds_held:
          type: integer
          title: Rounds Held
        score:
          type: number
          title: Score
        second_player_id:
          anyOf:
            - type: string
            - type: 'null'
          title: Second Player Id
        second_player_name:
          anyOf:
            - type: string
            - type: 'null'
          title: Second Player Name
        gap_to_second:
          anyOf:
            - type: number
            - type: 'null'
          title: Gap To Second
        taken_from_player_id:
          anyOf:
            - type: string
            - type: 'null'
          title: Taken From Player Id
        taken_from_player_name:
          anyOf:
            - type: string
            - type: 'null'
          title: Taken From Player Name
        gap_history:
          items:
            $ref: '#/components/schemas/FirstPlaceGapPointPublic'
          type: array
          title: Gap History
      type: object
      required:
        - player_id
        - started_at
        - rounds_held
        - score
        - gap_history
      title: FirstPlaceReignPublic
    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
    FirstPlaceGapPointPublic:
      properties:
        at:
          type: string
          format: date-time
          title: At
        score:
          type: number
          title: Score
        gap_to_second:
          anyOf:
            - type: number
            - type: 'null'
          title: Gap To Second
      type: object
      required:
        - at
        - score
      title: FirstPlaceGapPointPublic
  securitySchemes:
    BearerAuth:
      type: http
      scheme: bearer
      description: Bearer token issued by Softmax

````