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

# Search Catalog

> Unified free-text search across models and wrappers, with match provenance, comparable relevance scores, pricing context, and real example prompts. Recall-first: prefer 2-4 plain keywords over long natural-language phrases.



## OpenAPI

````yaml /platform-openapi.json get /search
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:
  /search:
    get:
      summary: Search Catalog
      description: >-
        Unified free-text search across models and wrappers, with match
        provenance, comparable relevance scores, pricing context, and real
        example prompts. Recall-first: prefer 2-4 plain keywords over long
        natural-language phrases.
      parameters:
        - name: q
          in: query
          required: true
          schema:
            type: string
        - name: limit
          in: query
          schema:
            type: integer
            default: 25
      responses:
        '200':
          description: Ranked results.
          content:
            application/json:
              schema:
                type: object
                properties:
                  query:
                    type: string
                  results:
                    type: array
                    items:
                      $ref: '#/components/schemas/SearchResultItem'
                additionalProperties: true
components:
  schemas:
    SearchResultItem:
      type: object
      properties:
        type:
          type: string
          enum:
            - model
            - wrapper
        endpoint:
          type: string
          description: '`ownerName/alias` — the value you submit requests to.'
        name:
          type: string
        shortDescription:
          type: string
        category:
          type: string
        tags:
          type: array
          items:
            type: string
        useCases:
          type: array
          items:
            type: string
        inputModalities:
          type: array
          items:
            type: string
        outputModalities:
          type: array
          items:
            type: string
        capabilities:
          type: array
          items:
            type: string
          description: Models only.
        thumbnailUrl:
          type: string
        rootModel:
          type: string
          description: >-
            Model family key — results sharing it are variants (price/speed
            tiers).
        defaultBaseModel:
          type: string
          description: 'Wrappers only: the default base model''s endpoint.'
        pricing:
          type: object
          properties:
            mode:
              type: string
            averageCost:
              type:
                - number
                - 'null'
        score:
          type: number
          description: Full-text rank, comparable across models and wrappers.
        matchedOn:
          type: array
          items:
            type: string
          description: Which fields matched the query ('fulltext' = stemmed match only).
        collections:
          type: array
          items:
            type: object
            properties:
              slug:
                type: string
              title:
                type: string
        examplePrompts:
          type: array
          items:
            type: string
          description: Real prompts from curated example runs.
      additionalProperties: true

````