List Models (OpenAI Native Format)
List the models available to your account — useful for populating a model dropdown in your client. See also the Gemini native format.
Gateway merges Seedance
Call this on the Gateway. The response is the account LLM list ∪ all Seedance models on the allowlist (video uses Ark Seedance). Seedance rows include group_name.
List models
GET /v1/modelsRequest
bash
curl https://ai.youqi.tech/v1/models \
-H "Authorization: Bearer sk-YOUR_API_KEY"Response
json
{
"object": "list",
"data": [
{
"id": "gpt-4o-mini",
"object": "model",
"created": 1715367049,
"owned_by": "youqi"
},
{
"id": "deepseek-chat",
"object": "model",
"created": 1715367049,
"owned_by": "youqi"
},
{
"id": "seedance-2.0",
"object": "model",
"created": 1715367049,
"owned_by": "nwai",
"group_name": "North China"
}
]
}Retrieve a model
GET /v1/models/{model}Request
bash
curl https://ai.youqi.tech/v1/models/gpt-4o-mini \
-H "Authorization: Bearer sk-YOUR_API_KEY"Response
json
{
"id": "gpt-4o-mini",
"object": "model",
"created": 1715367049,
"owned_by": "youqi"
}Response fields
| Field | Type | Description |
|---|---|---|
id | string | Model identifier; pass it as the model parameter |
object | string | Always model |
created | integer | Creation time (Unix timestamp) |
owned_by | string | Model owner |
group_name | string | Seedance only: customer-facing group name (multiple Seedance rows may differ) |
TIP
The set returned by /v1/models depends on your account and plan. For the full list and live pricing, see the Models page in the console.