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

# List supported AI models

> Returns the supported AI model identifiers along with their provider metadata.



## OpenAPI

````yaml get /api/v2/models/supported
openapi: 3.0.0
info:
  version: 2.0.0
  title: Vida API
  description: Vida API Documentation
servers:
  - url: https://api.vida.dev
    description: Vida Production
    variables:
      baseUrl:
        default: api.vida.dev
        description: Production API Root
security: []
paths:
  /api/v2/models/supported:
    get:
      tags:
        - Models
      summary: List supported AI models
      description: >-
        Returns the supported AI model identifiers along with their provider
        metadata.
      responses:
        '200':
          description: List of supported model descriptors
          content:
            application/json:
              schema:
                type: object
                additionalProperties:
                  type: object
                  properties:
                    provider:
                      type: string
                      description: >-
                        Provider of the model (e.g., openai, google, anthropic,
                        groq)
                      example: openai
                    canReason:
                      type: boolean
                      description: Whether the model supports advanced reasoning
                      example: true
              example:
                claude-haiku-4-5-20251001:
                  provider: anthropic
                  canReason: true
                claude-opus-4-5-20251101:
                  provider: anthropic
                  canReason: true
                claude-sonnet-4-5-20250929:
                  provider: anthropic
                  canReason: true
                gemini-3-pro-preview:
                  provider: google
                  canReason: true
                gemini-2.5-flash:
                  provider: google
                  canReason: true
                gemini-2.5-pro:
                  provider: google
                  canReason: true
                openai/gpt-oss-120b:
                  provider: groq
                  canReason: true
                gpt-5.1:
                  provider: openai
                  canReason: true
                gpt-4.1:
                  provider: openai
                  canReason: false
        '500':
          description: Server error
          content:
            application/json:
              schema:
                type: object
                properties:
                  success:
                    type: boolean
                    example: false
                  message:
                    type: string
                    example: Internal error

````