List Models
List all available AI models.
List Models
http
GET /api/v1/modelsReturns a list of all available AI models.
Query Parameters
| Parameter | Type | Description |
|---|---|---|
category | string | Filter by category (image, video, audio) |
output_type | string | Filter by output type |
highlighted | boolean | Only show featured models |
limit | number | Results per page (max: 200) |
offset | number | Pagination offset |
Example Request
bash
curl -H "Authorization: Bearer bnn_live_xxx" \
"https://banan0.com/api/v1/models?category=image&limit=10"Example Response
json
{
"data": {
"models": [
{
"id": "fal-ai/flux-pro",
"name": "FLUX Pro",
"description": "Professional quality image generation",
"category": "image",
"outputs_image": true,
"outputs_video": false,
"outputs_audio": false,
"estimated_tokens": 5,
"status": "active"
}
],
"total": 150,
"limit": 10,
"offset": 0
}
}Get Single Model
http
GET /api/v1/models/:modelIdReturns detailed information about a specific model, including its input schema.
bash
curl -H "Authorization: Bearer bnn_live_xxx" \
"https://banan0.com/api/v1/models/fal-ai/flux-pro"