> ## 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 Featured Models

> The curated featured set, unpaginated. Same public projection as List Models — provider internals are never included.



## OpenAPI

````yaml /platform-openapi.json get /models/featured
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/featured:
    get:
      summary: List Featured Models
      description: >-
        The curated featured set, unpaginated. Same public projection as List
        Models — provider internals are never included.
      responses:
        '200':
          description: Featured models.
          content:
            application/json:
              schema:
                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

````