> ## 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 Game Of Week Episodes

> The Game-of-the-Week coworld's freshest COMPLETED episodes that carry a
replay artifact — the office wall board's rotating "just played" buffer.

Completed episodes on purpose: a RUNNING episode is not watchable (its
viewer serves 503 while cold and 410 the moment it ends), while a stored
replay is always servable. Two pools, round episodes ranked before
experience-request episodes, both newest-first; the caller applies its own
freshness cut and viewer minting. Public-only like the coworld
participation feed above, and resolved through the is_game_of_week flag
every call — the wall flips automatically when the weekly pick changes.



## OpenAPI

````yaml https://softmax.com/api/observatory/openapi.json get /v2/leagues/game-of-week/episodes
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/leagues/game-of-week/episodes:
    get:
      tags:
        - v2
        - v2
      summary: Get Game Of Week Episodes
      description: >-
        The Game-of-the-Week coworld's freshest COMPLETED episodes that carry a

        replay artifact — the office wall board's rotating "just played" buffer.


        Completed episodes on purpose: a RUNNING episode is not watchable (its

        viewer serves 503 while cold and 410 the moment it ends), while a stored

        replay is always servable. Two pools, round episodes ranked before

        experience-request episodes, both newest-first; the caller applies its
        own

        freshness cut and viewer minting. Public-only like the coworld

        participation feed above, and resolved through the is_game_of_week flag

        every call — the wall flips automatically when the weekly pick changes.
      operationId: get_game_of_week_episodes_v2_leagues_game_of_week_episodes_get
      responses:
        '200':
          description: Successful Response
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/GotwEpisodesFeedPublic'
components:
  schemas:
    GotwEpisodesFeedPublic:
      properties:
        generated_at:
          type: string
          format: date-time
          title: Generated At
        coworld_name:
          anyOf:
            - type: string
            - type: 'null'
          title: Coworld Name
        league_name:
          anyOf:
            - type: string
            - type: 'null'
          title: League Name
        episodes:
          items:
            $ref: '#/components/schemas/GotwEpisodePublic'
          type: array
          title: Episodes
      additionalProperties: false
      type: object
      required:
        - generated_at
        - coworld_name
        - league_name
        - episodes
      title: GotwEpisodesFeedPublic
    GotwEpisodePublic:
      properties:
        episode_id:
          type: string
          format: uuid
          title: Episode Id
        replay_url:
          type: string
          title: Replay Url
        coworld_id:
          type: string
          title: Coworld Id
        round_number:
          anyOf:
            - type: integer
            - type: 'null'
          title: Round Number
        completed_at:
          type: string
          format: date-time
          title: Completed At
      additionalProperties: false
      type: object
      required:
        - episode_id
        - replay_url
        - coworld_id
        - round_number
        - completed_at
      title: GotwEpisodePublic

````