Selected models are free to useView free models

OPENAI-COMPATIBLE API & CLIENT SETUP

The tools you knowThe models you need

Connect your app, Codex, or Claude Code to LanoX. Add your API key and choose an exact model ID from the live catalog.

API reference for text, image, and video

Text supports OpenAI Compatible and Claude Messages. Image and video APIs are grouped by provider and task type.

BASE HOSThttps://api.lanox.ai
Bearer TokenUse GET /v1/models for the live model listView models and pricing

Lists the models available to the current API key. A successful response uses the native OpenAI list shape without a business response envelope.

Jump to examples
Available models
gpt-5.6-sol

Request parameters

No request parameters

Response parameters

FieldTypeRequiredDescription
object"list"RequiredThe model-list object type. Always list.
dataobject[]RequiredThe array of models available to the current API key.
data[].idstringRequiredThe model identifier to send to model endpoints, such as gpt-5.6-sol.
data[].object"model"RequiredThe item object type. Always model.
data[].createdintegerRequiredThe model creation time as a Unix timestamp in seconds. The server uses the current time when a legacy configuration has no timestamp.
data[].owned_bystringRequiredThe model provider or owner. Defaults to api-transfer-server when provider is not configured.
data[].supported_endpoint_typesstring[]RequiredCompatible endpoint identifiers: chat.completions, responses, and messages.
data[].providerstringOptionalThe provider identifier. Omitted when it is not present in the model configuration.

Response example

{
  "object": "list",
  "data": [{
    "id": "gpt-5.6-sol",
    "object": "model",
    "created": 1785196800,
    "owned_by": "OpenAI",
    "supported_endpoint_types": ["chat.completions", "responses", "messages"],
    "provider": "OpenAI",
    "display_name": "GPT-5.6 Sol",
    "pricing_mode": "token",
    "input_mode": "multimodal",
    "rpm_limit": 60,
    "tpm_limit": 100000
  }]
}

Endpoint notes

  • The response is filtered by API-key permissions and is not wrapped in a data/code/codeMsg business envelope.

Check your first response and its cost

Every API call remains clear and traceable.

View usage details in console
01

Requested model

Confirm the model ID sent by the client.

02

Actual result

Check the returned model and result.

03

Usage record

Review tokens, images, or video duration.

04

Final charge

Match the charge to the model's real billing unit.

API and client setup FAQ

Find the right base URL, model ID, and settings for your client.

01What does OpenAI-compatible API mean?

It means the service supports one or more request and response formats used by the OpenAI API, often by changing the base URL and API key. Compatibility is endpoint-specific, so verify Chat Completions, Responses, images, and other APIs separately.

02What is the LanoX OpenAI-compatible base URL?

Use https://api.lanox.ai/v1 with an API key from your LanoX console. Claude Code uses a different URL format, so follow its client-specific guide.

03How do I retrieve available model IDs?

Use the live model directory or call GET /v1/models with your API key. Copy the exact model ID returned by the catalog into your client configuration.

04What endpoint should Codex use?

The current Codex setup guide uses https://api.lanox.ai/v1. Confirm the API mode and model ID in the matching client guide and live model directory.

05What endpoint should Claude Code use?

The current Claude Code guide uses https://api.lanox.ai with no /v1 path and no trailing slash. It follows a different API convention from Codex.

06How do I verify the first API call?

Check the requested model ID, returned result, token or media usage, and final charge. Then review the request-level record in the console usage details.

Ready to send your first request?

Create an API key, copy an exact model ID from the live catalog, and follow the guide for your client.