> ## 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 Episode Request Watch

> Return live/replay targets when the caller can read the enclosing resource.



## OpenAPI

````yaml https://softmax.com/api/observatory/openapi.json get /v2/episode-requests/{episode_request_id}/watch
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/episode-requests/{episode_request_id}/watch:
    get:
      tags:
        - v2
        - v2
      summary: Get Episode Request Watch
      description: >-
        Return live/replay targets when the caller can read the enclosing
        resource.
      operationId: >-
        get_episode_request_watch_v2_episode_requests__episode_request_id__watch_get
      parameters:
        - name: episode_request_id
          in: path
          required: true
          schema:
            type: string
            pattern: >-
              ^ereq_[0-9a-f]{8}-[0-9a-f]{4}-[0-9a-f]{4}-[0-9a-f]{4}-[0-9a-f]{12}$
            title: Episode Request Id
      responses:
        '200':
          description: Successful Response
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/EpisodeWatchTarget'
        '422':
          description: Validation Error
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/HTTPValidationError'
      security:
        - BearerAuth: []
        - {}
components:
  schemas:
    EpisodeWatchTarget:
      properties:
        id:
          type: string
          title: Id
        status:
          $ref: '#/components/schemas/EpisodeRequestStatus'
        live_url:
          anyOf:
            - type: string
            - type: 'null'
          title: Live Url
        replay_url:
          anyOf:
            - type: string
            - type: 'null'
          title: Replay Url
        coworld_id:
          anyOf:
            - type: string
            - type: 'null'
          title: Coworld Id
        coworld_name:
          anyOf:
            - type: string
            - type: 'null'
          title: Coworld Name
        coworld_version:
          anyOf:
            - type: string
            - type: 'null'
          title: Coworld Version
        episode_id:
          anyOf:
            - type: string
              format: uuid
            - type: 'null'
          title: Episode Id
      type: object
      required:
        - id
        - status
      title: EpisodeWatchTarget
      description: Live or replay target for an episode request visible to the caller.
    HTTPValidationError:
      properties:
        detail:
          items:
            $ref: '#/components/schemas/ValidationError'
          type: array
          title: Detail
      type: object
      title: HTTPValidationError
    EpisodeRequestStatus:
      type: string
      enum:
        - pending
        - submitted
        - running
        - completed
        - failed
        - cancelled
      title: EpisodeRequestStatus
    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

````