> ## 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.

# List Coworld Episode Request Summaries



## OpenAPI

````yaml https://softmax.com/api/observatory/openapi.json get /v2/coworlds/{coworld_id}/episode-requests
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/coworlds/{coworld_id}/episode-requests:
    get:
      tags:
        - v2
        - v2
      summary: List Coworld Episode Request Summaries
      operationId: >-
        list_coworld_episode_request_summaries_v2_coworlds__coworld_id__episode_requests_get
      parameters:
        - name: coworld_id
          in: path
          required: true
          schema:
            type: string
            pattern: ^cow_[0-9a-f]{8}-[0-9a-f]{4}-[0-9a-f]{4}-[0-9a-f]{4}-[0-9a-f]{12}$
            title: Coworld Id
        - name: source
          in: query
          required: false
          schema:
            anyOf:
              - type: string
              - type: 'null'
            description: Optional Coworld-local workflow source, such as coworld_upload.
            title: Source
          description: Optional Coworld-local workflow source, such as coworld_upload.
        - name: limit
          in: query
          required: false
          schema:
            type: integer
            maximum: 100
            minimum: 1
            default: 50
            title: Limit
        - name: cursor
          in: query
          required: false
          schema:
            anyOf:
              - type: string
              - type: 'null'
            title: Cursor
      responses:
        '200':
          description: Successful Response
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/EpisodeRequestSummaryPage'
        '422':
          description: Validation Error
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/HTTPValidationError'
      security:
        - BearerAuth: []
components:
  schemas:
    EpisodeRequestSummaryPage:
      properties:
        entries:
          items:
            $ref: '#/components/schemas/V2EpisodeRequestSummary'
          type: array
          title: Entries
        next_cursor:
          anyOf:
            - type: string
            - type: 'null'
          title: Next Cursor
      type: object
      required:
        - entries
        - next_cursor
      title: EpisodeRequestSummaryPage
    HTTPValidationError:
      properties:
        detail:
          items:
            $ref: '#/components/schemas/ValidationError'
          type: array
          title: Detail
      type: object
      title: HTTPValidationError
    V2EpisodeRequestSummary:
      properties:
        id:
          type: string
          title: Id
        status:
          $ref: '#/components/schemas/EpisodeRequestStatus'
        coworld_id:
          anyOf:
            - type: string
            - type: 'null'
          title: Coworld Id
        round_id:
          anyOf:
            - type: string
            - type: 'null'
          title: Round Id
        replay_url:
          anyOf:
            - type: string
            - type: 'null'
          title: Replay Url
        policy_version_ids:
          items:
            type: string
            format: uuid
          type: array
          title: Policy Version Ids
        created_at:
          type: string
          format: date-time
          title: Created At
      type: object
      required:
        - id
        - status
        - policy_version_ids
        - created_at
      title: V2EpisodeRequestSummary
      description: >-
        Small row for parent-scoped episode-request lists.


        The detail endpoint owns participants, scores, errors, costs, and
        runtime

        configuration. Keeping those fields out of collection responses lets one

        indexed seek and one page-sized policy lookup serve every list.
    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
    EpisodeRequestStatus:
      type: string
      enum:
        - pending
        - submitted
        - running
        - completed
        - failed
        - cancelled
      title: EpisodeRequestStatus
  securitySchemes:
    BearerAuth:
      type: http
      scheme: bearer
      description: Bearer token issued by Softmax

````