---
title: "List available models"
method: GET
path: "/models"
tags: ["Models"]
---

# List available models

`GET /models`

Returns the public model catalog visible to API clients. Use the optional type filter to narrow results to image, video, audio, or text models.

## Query parameters

- `type` 'image' | 'video' | 'audio' | 'text' — Model type

## Response `200`

Available models returned.

- object
  - `models` object[], required
    - `model_id` string, required — Model identifier
    - `name` string, required — Model name
    - `type` 'image' | 'video' | 'audio' | 'text', required — Model type
    - `provider` string, required — Model provider
    - `capabilities` string[], required — Model capabilities
    - `estimated_credits` integer, required — Estimated credits
    - `estimated_seconds` integer, required — Estimated seconds
    - `params` object[], required — Supported generation parameters for this model
      - `name` string, required — Parameter name to pass in generation params
      - `type` 'string' | 'string[]' | 'bool' | 'int' | 'int?' | 'seed' | 'float' | 'dict', required — Parameter value type
      - `required` boolean, required — Whether the model requires this parameter
      - `default` unknown
      - `min` number — Minimum numeric value
      - `max` number — Maximum numeric value
      - `label` string — Human-readable parameter label
      - `description` string — Parameter help text
      - `options` object[] — Allowed values for enum-like parameters
        - `label` string, required — Displayed option label
        - `value` string, required — Option value to pass in generation params
        - `description` string — Option description
      - `properties` object — Nested numeric properties for object parameters
    - `beta` boolean — Whether this model is in beta

## Other responses

- `400` — 400
- `401` — 401
- `402` — 402
- `403` — 403
- `404` — 404
- `409` — 409
- `429` — 429
- `500` — 500

---

[API](https://skmtc.net/florafauna-ai/apis/flora-ai-api.md) · [All operations](https://skmtc.net/florafauna-ai/apis/flora-ai-api/llms.txt) · [OpenAPI document](https://skmtc-service-staging.skmtc.workers.dev/v1/apis/florafauna-ai/flora-ai-api/versions/2f4a714f8ce9/schema)
