List available models (OpenAI format)
curl --request GET \
--url https://api.getinfinityblue.com/v1/models \
--header 'Authorization: Bearer <token>'import requests
url = "https://api.getinfinityblue.com/v1/models"
headers = {"Authorization": "Bearer <token>"}
response = requests.get(url, headers=headers)
print(response.text)const options = {method: 'GET', headers: {Authorization: 'Bearer <token>'}};
fetch('https://api.getinfinityblue.com/v1/models', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));{
"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"
}
]
}{
"error": {
"message": "<string>",
"type": "<string>",
"param": "<string>",
"code": "<string>"
}
}{
"error": {
"message": "<string>",
"type": "<string>",
"param": "<string>",
"code": "<string>"
}
}{
"error": {
"message": "<string>",
"type": "<string>",
"param": "<string>",
"code": "<string>"
}
}{
"error": {
"message": "<string>",
"type": "<string>",
"param": "<string>",
"code": "<string>"
}
}Models
List available models (OpenAI format)
Return all InfinityBlue models in OpenAI-compatible format
GET
/
v1
/
models
List available models (OpenAI format)
curl --request GET \
--url https://api.getinfinityblue.com/v1/models \
--header 'Authorization: Bearer <token>'import requests
url = "https://api.getinfinityblue.com/v1/models"
headers = {"Authorization": "Bearer <token>"}
response = requests.get(url, headers=headers)
print(response.text)const options = {method: 'GET', headers: {Authorization: 'Bearer <token>'}};
fetch('https://api.getinfinityblue.com/v1/models', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));{
"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"
}
]
}{
"error": {
"message": "<string>",
"type": "<string>",
"param": "<string>",
"code": "<string>"
}
}{
"error": {
"message": "<string>",
"type": "<string>",
"param": "<string>",
"code": "<string>"
}
}{
"error": {
"message": "<string>",
"type": "<string>",
"param": "<string>",
"code": "<string>"
}
}{
"error": {
"message": "<string>",
"type": "<string>",
"param": "<string>",
"code": "<string>"
}
}Available models
A selection of real model IDs available today (full list is dynamic — use the API):| Model ID | Notes |
|---|---|
gpt-5.4 | GPT-5 flagship — top reasoning / coding / agentic, 1M context |
gpt-5.4-mini | Lightweight and balanced — ideal for high-volume workloads |
gemini-3.1-pro-preview | Gemini flagship — strong multimodal, 1M context |
gemini-2.5-pro | Gemini 2.5 Pro — strong reasoning and coding |
deepseek-v4-pro | DeepSeek cost-effective reasoning model |
gpt-image-2 | GPT Image generation model |
doubao-seedance-2-0-260128 | ByteDance Seedance video generation model |
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
⌘I