> ## 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 Pairing Matrix

> How often each current champion policy shares a game with every other in this division.

Scoped to the division's current champions (competing + is_champion memberships) so the grid
stays the size of the live roster instead of every policy that ever appeared in a round — the
latter is both O(policies^2) to build and huge to render. We fan the division's rounds out to
their episodes (`episode_requests`) and read the seated policies (`episode_request_policies`),
restricted to champion policy versions. Two policies "played together" for each episode where
both sit in a non-filler seat; filler ("zombie") seats are excluded so the fairness grid
reflects real entrants only. The diagonal (`games_played`) is each champion's own distinct
non-filler episode count; a champion with no episodes yet is omitted entirely.



## OpenAPI

````yaml https://softmax.com/api/observatory/openapi.json get /v2/divisions/{division_id}/pairing-matrix
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}/pairing-matrix:
    get:
      tags:
        - v2
        - v2
      summary: Get Division Pairing Matrix
      description: >-
        How often each current champion policy shares a game with every other in
        this division.


        Scoped to the division's current champions (competing + is_champion
        memberships) so the grid

        stays the size of the live roster instead of every policy that ever
        appeared in a round — the

        latter is both O(policies^2) to build and huge to render. We fan the
        division's rounds out to

        their episodes (`episode_requests`) and read the seated policies
        (`episode_request_policies`),

        restricted to champion policy versions. Two policies "played together"
        for each episode where

        both sit in a non-filler seat; filler ("zombie") seats are excluded so
        the fairness grid

        reflects real entrants only. The diagonal (`games_played`) is each
        champion's own distinct

        non-filler episode count; a champion with no episodes yet is omitted
        entirely.
      operationId: >-
        get_division_pairing_matrix_v2_divisions__division_id__pairing_matrix_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/DivisionPairingMatrixPublic'
        '422':
          description: Validation Error
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/HTTPValidationError'
      security:
        - BearerAuth: []
components:
  schemas:
    DivisionPairingMatrixPublic:
      properties:
        policies:
          items:
            $ref: '#/components/schemas/PairingMatrixPolicyPublic'
          type: array
          title: Policies
        cells:
          items:
            $ref: '#/components/schemas/PairingMatrixCellPublic'
          type: array
          title: Cells
        total_games:
          type: integer
          title: Total Games
      type: object
      required:
        - policies
        - cells
        - total_games
      title: DivisionPairingMatrixPublic
      description: >-
        How often each policy shares a game with every other policy in a
        division.


        `policies` is the shared ordering for both axes; `cells` carries only
        the

        unordered upper-triangle pairs with a non-zero count (a<b by policy
        label

        then id, matching the `policies` order), so the client renders a
        symmetric

        grid. Filler ("zombie") seats are excluded so fairness reflects real

        entrants only.
    HTTPValidationError:
      properties:
        detail:
          items:
            $ref: '#/components/schemas/ValidationError'
          type: array
          title: Detail
      type: object
      title: HTTPValidationError
    PairingMatrixPolicyPublic:
      properties:
        policy_version_id:
          type: string
          format: uuid
          title: Policy Version Id
        policy_label:
          type: string
          title: Policy Label
        player_id:
          anyOf:
            - type: string
            - type: 'null'
          title: Player Id
        player_name:
          anyOf:
            - type: string
            - type: 'null'
          title: Player Name
        games_played:
          type: integer
          title: Games Played
      type: object
      required:
        - policy_version_id
        - policy_label
        - games_played
      title: PairingMatrixPolicyPublic
      description: >-
        One policy version that appears on both axes of the division matchup
        grid.
    PairingMatrixCellPublic:
      properties:
        a:
          type: string
          format: uuid
          title: A
        b:
          type: string
          format: uuid
          title: B
        games_together:
          type: integer
          title: Games Together
      type: object
      required:
        - a
        - b
        - games_together
      title: PairingMatrixCellPublic
      description: 'Unordered pair count: how many games these two policies played together.'
    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

````