---
title: Models | FLORA API
description: List available FLORA models.
---

Models are the AI model options available for supported generation workflows. Use the models endpoint when you need to discover available model IDs for a type of generation.

## List image models

Terminal window

```
curl "https://app.flora.ai/api/v1/models?type=image" \
  -H "Authorization: Bearer sk_live_XXXX"
```

Response:

```
{
  "models": [
    {
      "model_id": "model_...",
      "name": "Example Image Model",
      "type": "image"
    }
  ]
}
```

## Common endpoints

| Method | Path                        | Description       |
| ------ | --------------------------- | ----------------- |
| GET    | `/api/v1/models?type=image` | List image models |

## Notes

- Model availability can change over time.
- Store the `model_id` returned by the API rather than hard-coding a display name.
- If a workflow is technique-based, start from the [Techniques](/guides/techniques/index.md) page instead; technique inputs usually define what the workflow needs.
