APIXO
OpenAI-compatible gateway

Use OpenAI models through APIXO

Keep the OpenAI SDK and request format. Change the baseURL, use your APIXO key, and choose any OpenAI model ID from the table.

Base URL

https://llm.apixo.ai/v1

API key

APIXO_API_KEY

Model ID

gpt-5.5

Official upstream route

Selected model, matching upstream model.

APIXO routes each request to the corresponding upstream model, so stability, capability, and output quality stay aligned with official model behavior.

Official or compliant channels
Provider-native format
No reverse-engineered API access
No spoofing, mixing, or fallback

Official SDK quick start

The request body stays provider-native. Replace the baseURL and API key only.

cURL
curl https://llm.apixo.ai/v1/responses \
  -H "Authorization: Bearer $APIXO_API_KEY" \
  -H "content-type: application/json" \
  -d '{
    "model": "gpt-5.5",
    "input": "Write a concise product launch brief."
  }'
JavaScript
import OpenAI from 'openai'

const client = new OpenAI({
  apiKey: process.env.APIXO_API_KEY,
  baseURL: 'https://llm.apixo.ai/v1',
})

const response = await client.responses.create({
  model: 'gpt-5.5',
  input: 'Write a concise product launch brief.',
})
Python
import os
from openai import OpenAI

client = OpenAI(
    api_key=os.environ["APIXO_API_KEY"],
    base_url="https://llm.apixo.ai/v1",
)

response = client.responses.create(
    model="gpt-5.5",
    input="Write a concise product launch brief.",
)

Cursor and compatible tools

Use the same three fields in Cursor, IDE extensions, gateway switchers, or any tool that supports a custom provider endpoint.

Provider profile

OpenAI-compatible

Base URL

https://llm.apixo.ai/v1

API key

APIXO_API_KEY

Model ID

gpt-5.5

Recharge your APIXO balance, then create an API key in the dashboard.

Paste the base URL and API key into the tool's custom provider settings.

Use the selected model ID exactly; switch models by changing only that value.

OpenAI models and pricing

Prices are USD per 1M tokens. Select a row to update the examples above.

ModelInputOutputCache writeCache readSavings
GPT-5.5gpt-5.5$3$18$0.3Save 40%
GPT-5.4gpt-5.4$1.5$9$0.15Save 40%
GPT-5.4 Minigpt-5.4-mini$0.45$2.7$0.045Save 40%
GPT-5.3-Codexgpt-5.3-codex$1.05$8.4$0.105Save 40%
GPT-5.2gpt-5.2$1.05$8.4$0.105Save 40%
GPT-5.2-Codexgpt-5.2-codex$1.05$8.4$0.105Save 40%
GPT-5 Minigpt-5-mini$0.15$1.2$0.015Save 40%
GPT-4.1gpt-4.1$1.2$4.8$0.3Save 40%