> ## Documentation Index
> Fetch the complete documentation index at: https://modelrunner.ai/docs/llms.txt
> Use this file to discover all available pages before exploring further.

# List Models

> Paginated public model catalog with free-text search and structured filters. Private models are unlisted here (direct reads by endpoint still resolve them — 'private' means unlisted, not access-controlled).



## OpenAPI

````yaml /platform-openapi.json get /models
openapi: 3.1.0
info:
  title: ModelRunner Platform API
  version: 1.0.0
  description: >-
    Platform APIs: model catalog, search and collections; model pricing rate
    cards; the Serverless GPU catalog and deployment templates; file uploads and
    your asset library; account balance and usage; and webhook delivery
    management. Catalog reads are public; account-scoped routes authenticate
    with your API key (`Authorization: Key <MODELRUNNER_KEY>`). Request
    lifecycle endpoints (submit/status/result and the request list) live on the
    queue host — see the Queue API reference.
servers:
  - url: https://api.modelrunner.run
security: []
paths:
  /models:
    get:
      summary: List Models
      description: >-
        Paginated public model catalog with free-text search and structured
        filters. Private models are unlisted here (direct reads by endpoint
        still resolve them — 'private' means unlisted, not access-controlled).
      parameters:
        - name: search
          in: query
          schema:
            type: string
          description: >-
            Free-text search over name, alias, description, owner, category,
            tags.
        - name: owner
          in: query
          schema:
            type: string
        - name: category
          in: query
          schema:
            type: string
        - name: inputModality
          in: query
          schema:
            type: string
          description: e.g. text, image, video, audio.
        - name: outputModality
          in: query
          schema:
            type: string
        - name: capability
          in: query
          schema:
            type: array
            items:
              type: string
          style: form
          explode: true
        - name: featured
          in: query
          schema:
            type: boolean
        - name: sort
          in: query
          schema:
            type: string
        - name: page
          in: query
          schema:
            type: integer
            default: 1
        - name: limit
          in: query
          schema:
            type: integer
            default: 10
      responses:
        '200':
          description: One catalog page.
          content:
            application/json:
              schema:
                type: object
                properties:
                  page:
                    type: integer
                  limit:
                    type: integer
                  total:
                    type: integer
                  totalPages:
                    type: integer
                  data:
                    type: array
                    items:
                      $ref: '#/components/schemas/Model'
components:
  schemas:
    Model:
      type: object
      description: >-
        A catalog model. Provider-facing internals (provider schemas,
        request/extraction config, field mappings) are never present on public
        responses; `providerRequestConfig` appears only as `{"apiType":
        "chat_completions"}` on chat-servable models. Additional descriptive
        fields may appear beyond those listed.
      properties:
        id:
          type: string
          format: uuid
        ownerName:
          type: string
        alias:
          type: string
          description: May contain slashes. The user-facing endpoint is `ownerName/alias`.
        name:
          type:
            - string
            - 'null'
        category:
          type: string
        shortDescription:
          type: string
        description:
          type: string
        thumbnailUrl:
          type: string
        tags:
          type:
            - array
            - 'null'
          items:
            type: string
        useCases:
          type:
            - array
            - 'null'
          items:
            type: string
        inputModalities:
          type: array
          items:
            type: string
        outputModalities:
          type: array
          items:
            type: string
        capabilities:
          type: array
          items:
            type: string
        features:
          type: array
          items:
            type: string
        schema:
          type: object
          description: >-
            OpenAPI-style input/output schema for the model
            (`components.schemas.Input` / `Output`). The same document `GET
            /models/{owner}/{alias}/openapi.json` serves standalone.
          additionalProperties: true
        pricingMode:
          type: string
          enum:
            - per_second
            - per_output
            - resolution_tiered
            - per_output_second
            - per_megapixel
            - megapixel_tiered
            - per_token
        averageCost:
          type:
            - string
            - 'null'
          description: Observed average cost of one run (decimal string), where tracked.
        official:
          type: boolean
        featured:
          type: boolean
        examples:
          type: array
          items:
            type: string
          description: Curated example request ids — fetch via the model detail page.
        contextWindow:
          type:
            - integer
            - 'null'
          description: Chat-servable models only.
        maxOutputTokens:
          type:
            - integer
            - 'null'
          description: Chat-servable models only.
        providerRequestConfig:
          type:
            - object
            - 'null'
          description: >-
            Public callers see `{"apiType": "chat_completions"}` on
            chat-servable models, null otherwise.
        createdAt:
          type: string
          format: date-time
        updatedAt:
          type: string
          format: date-time
      additionalProperties: true

````