Skip to main content
GET
/
v2
/
models
Node.js
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" });
[
  {
    "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"
  }
]

Authorizations

Authorization
string
header
required

Send your API key as a bearer token: Authorization: Bearer sk_<secret>.

Query Parameters

type
enum<string>

Optional model type filter.

Available options:
image,
video

Response

Developer models list.

id
string
required

The model identifier.

name
string
required

The model display name.

type
enum<string>
required

The generation type supported by the model.

Available options:
image,
video
created_at
string<date-time>
required

Timestamp when the model was created.