JavaScript
import GetimgAI from "getimg-ai"; const client = new GetimgAI(); const models = await client.models.list(); // Optionally filter by type: const videoModels = await client.models.list({ type: "video" });
200
all_models
[ { "id": "seedream-5-lite", "name": "Seedream 5 Lite", "type": "image", "created_at": "2026-04-17T10:20:30.000Z" }, { "id": "seedance-v1-pro", "name": "Seedance v1 Pro", "type": "video", "created_at": "2026-04-16T09:10:00.000Z" } ]
List available developer models for the authenticated project.
Send your API key as a bearer token: Authorization: Bearer sk_<secret>.
Authorization: Bearer sk_<secret>
Optional model type filter.
image
video
Developer models list.
The model identifier.
The model display name.
The generation type supported by the model.
Timestamp when the model was created.