Skip to main content
GET
/
v1
/
models
List available models (OpenAI format)
curl --request GET \
  --url https://api.getinfinityblue.com/v1/models \
  --header 'Authorization: Bearer <token>'
{
  "object": "list",
  "data": [
    {
      "id": "gpt-5.4",
      "object": "model",
      "created": 1700000000,
      "owned_by": "openai"
    },
    {
      "id": "gpt-5.4-mini",
      "object": "model",
      "created": 1700000001,
      "owned_by": "openai"
    },
    {
      "id": "gemini-3.1-pro-preview",
      "object": "model",
      "created": 1700000002,
      "owned_by": "google"
    },
    {
      "id": "gemini-2.5-pro",
      "object": "model",
      "created": 1700000003,
      "owned_by": "google"
    },
    {
      "id": "deepseek-v4-pro",
      "object": "model",
      "created": 1700000004,
      "owned_by": "deepseek"
    },
    {
      "id": "gpt-image-2",
      "object": "model",
      "created": 1700000005,
      "owned_by": "openai"
    },
    {
      "id": "doubao-seedance-2-0-260128",
      "object": "model",
      "created": 1700000006,
      "owned_by": "bytedance"
    }
  ]
}

Available models

A selection of real model IDs available today (full list is dynamic — use the API):
Model IDNotes
gpt-5.4GPT-5 flagship — top reasoning / coding / agentic, 1M context
gpt-5.4-miniLightweight and balanced — ideal for high-volume workloads
gemini-3.1-pro-previewGemini flagship — strong multimodal, 1M context
gemini-2.5-proGemini 2.5 Pro — strong reasoning and coding
deepseek-v4-proDeepSeek cost-effective reasoning model
gpt-image-2GPT Image generation model
doubao-seedance-2-0-260128ByteDance Seedance video generation model
See the pricing page for the full list.

Using the OpenAI SDK

from openai import OpenAI

client = OpenAI(
    api_key="YOUR_API_KEY",
    base_url="https://api.getinfinityblue.com/v1"
)

models = client.models.list()
for model in models.data:
    print(model.id)

Authorizations

Authorization
string
header
required

Bearer token authentication, format: Authorization: Bearer sk-xxxxxx. Get your API key in the console.

Response

Successfully returned the model list

OpenAI-format model list response.

object
string

Object type, always list.

Example:

"list"

data
object[]

The list of available models.