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

# List Models



## OpenAPI

````yaml GET /models
openapi: 3.1.0
info:
  title: eomer.ai Forecasting API
  description: >-
    Production-grade time series forecasting and natural-language forecasting
    agent
  version: 0.1.0
servers: []
security: []
tags:
  - name: forecasting
    description: Time-series forecasting jobs
  - name: agent
    description: >-
      Natural-language forecasting: extract intent from a prompt, profile and
      recommend a model, and auto-submit a forecast.
  - name: tabular
    description: Classification and regression
  - name: fine-tuning
    description: Custom model training
  - name: storage
    description: Cloud dataset storage
  - name: estimates
    description: Cost and runtime estimation
  - name: system
    description: Health checks and model catalog
paths:
  /models:
    get:
      tags:
        - system
      summary: List Models
      operationId: list_models_models_get
      responses:
        '200':
          description: Successful Response
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ModelsResponse'
      security:
        - HTTPBearer: []
components:
  schemas:
    ModelsResponse:
      properties:
        available_presets:
          items:
            type: string
          type: array
          title: Available Presets
        note:
          type: string
          title: Note
      type: object
      required:
        - available_presets
        - note
      title: ModelsResponse
      description: Available model presets response.
  securitySchemes:
    HTTPBearer:
      type: http
      scheme: bearer

````