> ## 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 Reporter Run Search Fields



## OpenAPI

````yaml https://softmax.com/api/observatory/openapi.json get /v2/reporters/runs/search/fields
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/reporters/runs/search/fields:
    get:
      tags:
        - v2
        - v2
      summary: Get Reporter Run Search Fields
      operationId: get_reporter_run_search_fields_v2_reporters_runs_search_fields_get
      responses:
        '200':
          description: Successful Response
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ReporterRunSearchFieldsResponse'
      security:
        - BearerAuth: []
components:
  schemas:
    ReporterRunSearchFieldsResponse:
      properties:
        fields:
          items:
            $ref: '#/components/schemas/ReporterRunQueryableField'
          type: array
          title: Fields
        includes:
          items:
            type: string
          type: array
          title: Includes
        limits:
          additionalProperties:
            type: integer
          type: object
          title: Limits
      type: object
      required:
        - fields
        - includes
        - limits
      title: ReporterRunSearchFieldsResponse
    ReporterRunQueryableField:
      properties:
        name:
          type: string
          title: Name
        type:
          type: string
          enum:
            - string
            - number
            - boolean
            - datetime
          title: Type
        operators:
          items:
            type: string
          type: array
          title: Operators
      type: object
      required:
        - name
        - type
        - operators
      title: ReporterRunQueryableField
  securitySchemes:
    BearerAuth:
      type: http
      scheme: bearer
      description: Bearer token issued by Softmax

````