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

# List available models with pricing and capabilities



## OpenAPI

````yaml /api-reference/openapi.json get /v1/model-router/models
openapi: 3.1.0
info:
  title: Feather API
  description: >-
    Unified customer experience platform API. Manages identity, conversations,
    memory, agents, procedures, policies, model routing, knowledge bases,
    integrations, and runtime execution.
  version: 1.21.0
servers:
  - url: https://api-sandbox.featherhq.com
    description: Sandbox
  - url: http://localhost:8000
    description: Local dev
security: []
paths:
  /v1/model-router/models:
    get:
      tags:
        - model-router
      summary: List available models with pricing and capabilities
      operationId: listAvailableModels
      responses:
        '200':
          description: Successful Response
          content:
            application/json:
              schema:
                items:
                  $ref: '#/components/schemas/AvailableModel'
                type: array
                title: Response Listavailablemodels
        '400':
          description: Bad request
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ErrorResponse'
        '401':
          description: Authentication required
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ErrorResponse'
      security:
        - APIKeyHeader: []
components:
  schemas:
    AvailableModel:
      properties:
        model_identifier:
          type: string
          title: Model Identifier
        provider:
          type: string
          title: Provider
        supports_streaming:
          type: boolean
          title: Supports Streaming
        supports_tools:
          type: boolean
          title: Supports Tools
          default: true
        supports_vision:
          type: boolean
          title: Supports Vision
          default: false
        max_context_window:
          type: integer
          title: Max Context Window
        regions:
          items:
            type: string
          type: array
          title: Regions
        family:
          type: string
          title: Family
          default: default
        supports_json_schema:
          type: boolean
          title: Supports Json Schema
          default: true
        supports_reasoning_effort:
          type: boolean
          title: Supports Reasoning Effort
          default: false
        supports_temperature:
          type: boolean
          title: Supports Temperature
          default: true
        supports_thinking:
          type: boolean
          title: Supports Thinking
          default: false
        supports_audio:
          type: boolean
          title: Supports Audio
          default: false
        compliance_tags:
          items:
            type: string
          type: array
          title: Compliance Tags
        input_price_per_1m:
          type: number
          title: Input Price Per 1M
        output_price_per_1m:
          type: number
          title: Output Price Per 1M
      type: object
      required:
        - model_identifier
        - provider
        - supports_streaming
        - max_context_window
        - input_price_per_1m
        - output_price_per_1m
      title: AvailableModel
    ErrorResponse:
      properties:
        error:
          type: string
          title: Error
        message:
          type: string
          title: Message
      type: object
      required:
        - error
        - message
      title: ErrorResponse
      description: Standard error response returned by all API error handlers.
  securitySchemes:
    APIKeyHeader:
      type: apiKey
      in: header
      name: x-api-key

````