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

# List Models

> List available LLM models with extended metadata.



## OpenAPI

````yaml https://api.edenai.run/v3/docs/openapi.json get /v3/models
openapi: 3.1.0
info:
  title: Eden AI API V3
  version: 3.0.0
servers:
  - url: https://api.edenai.run
    description: Production server
security: []
paths:
  /v3/models:
    get:
      tags:
        - Models
      summary: List Models
      description: List available LLM models with extended metadata.
      operationId: list_models_v3_models_get
      responses:
        '200':
          description: Successful Response
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ListModelsResponse'
components:
  schemas:
    ListModelsResponse:
      properties:
        object:
          type: string
          const: list
          title: Object
          description: Object type
          default: list
        data:
          items:
            $ref: '#/components/schemas/ModelObject'
          type: array
          title: Data
          description: List of models
      type: object
      required:
        - data
      title: ListModelsResponse
      description: List models response.
    ModelObject:
      properties:
        id:
          type: string
          title: Id
          description: Model identifier (e.g., 'openai/gpt-4')
        object:
          type: string
          const: model
          title: Object
          description: Object type
          default: model
        created:
          type: integer
          title: Created
          description: Unix timestamp of model creation/release
        owned_by:
          type: string
          title: Owned By
          description: Provider/organization that owns the model
        model_name:
          type: string
          title: Model Name
          description: Model name without provider prefix
        context_length:
          anyOf:
            - type: integer
            - type: 'null'
          title: Context Length
          description: Maximum context length in tokens
        description:
          anyOf:
            - type: string
            - type: 'null'
          title: Description
          description: Model description
        source:
          anyOf:
            - type: string
            - type: 'null'
          title: Source
          description: Model source URL
        capabilities:
          additionalProperties: true
          type: object
          title: Capabilities
          description: Model capabilities
        pricing:
          additionalProperties: true
          type: object
          title: Pricing
          description: Pricing information
        regions:
          items:
            $ref: '#/components/schemas/RegionObject'
          type: array
          title: Regions
          description: Regions where this model is available
      type: object
      required:
        - id
        - created
        - owned_by
        - model_name
      title: ModelObject
      description: Extended model object with full metadata.
    RegionObject:
      properties:
        code:
          type: string
          title: Code
          description: Region code (e.g., 'us-east-1')
        name:
          type: string
          title: Name
          description: Region display name
      type: object
      required:
        - code
        - name
      title: RegionObject
      description: Region where a model is available.

````