Skip to content
AI Gateway

Models & pricing

The Clipia AI Gateway model catalog (GET /v1/models) and prices in rubles per 1M tokens — Claude, GPT, Gemini, DeepSeek, Grok.

Clipia AI Gateway provides access to flagship language models under one contract. GET /v1/models returns the catalog in an OpenAI-compatible format; the prices below are in rubles per 1M tokens, billed separately for input (prompt) and output (the model's response).

Catalog (GET /v1/models)

GET/v1/models
models = client.models.list()
for m in models.data:
    print(m.id)
const models = await client.models.list();
for (const m of models.data) console.log(m.id);
curl https://api.clipia.ai/v1/models \
  -H "Authorization: Bearer $CLIPIA_API_KEY"

The response is a data array in OpenAI-compatible form. Each item carries an id (the string for the model field), context length, supported parameters and per-token rates:

{
  "object": "list",
  "data": [
    {
      "id": "gpt-5.6-sol",
      "object": "model",
      "name": "GPT-5.6 Sol",
      "created": 1783555200,
      "owned_by": "openai",
      "context_length": 400000,
      "architecture": {
        "modality": "text+image->text",
        "input_modalities": ["text", "image"],
        "output_modalities": ["text"],
        "tokenizer": "GPT"
      },
      "pricing": { "prompt": "0.00000499875", "completion": "0.00003" },
      "supported_parameters": [
        "tools", "tool_choice", "response_format",
        "temperature", "top_p", "max_tokens", "stop", "seed"
      ]
    }
  ]
}

In pricing, values are per single token (prompt / response); the human-readable per-1M-token prices are in the table below. Clients use supported_parameters to detect which features a model supports (tools, response_format, etc.).

Pricing

Billing is per token, separately for input and output. Charges are taken in credits from the account balance; the prices below are shown in US dollars for clarity (1M = 1,000,000 tokens).

ModelmodelInput, $/1MOutput, $/1M
Claude Fable 5claude-fable-51050
GPT-5.6 Solgpt-5.6-sol530
GPT-5.6 Terragpt-5.6-terra2.5015
GPT-5.6 Lunagpt-5.6-luna16
Claude Opus 5claude-opus-5525
Claude Sonnet 4.6claude-sonnet-4-6315
Gemini 3.6 Flashgemini-3.6-flash1.507.50
Grok 4.5grok-4.526
DeepSeek V4 Prodeepseek-v4-pro0.571.13
Gemini 2.5 Flashgemini-2.5-flash0.393.25
DeepSeek V4 Flashdeepseek-v4-flash0.120.23
GPT-5 nanogpt-5.4-nano0.060.52
GPT-5.5 (legacy slug)gpt-5.5530
Grok 4.3 (legacy slug)grok-4.31.633.25

Billed in credits

Billing is in credits: every response carries usage.cost (the request cost in credits), and the exact cost of an already-completed request is returned by GET /v1/generation. The ruble prices are the public retail rate; top up your balance in the clipia.ai account area.

Verify against the live catalog

The model list and rates are updated periodically. Always take identifiers (model) and current prices from the live GET /v1/models — that is the source of truth. The values in the table are accurate as of publication.

How to choose a model

  • Flagships — hard tasks. claude-fable-5, gpt-5.6-sol and claude-opus-5 for reasoning, code, agents and long context, where quality matters more than price.
  • Quality/price balance. gpt-5.6-terra, claude-sonnet-4-6, gemini-3.6-flash, grok-4.5 — solid all-rounders for most product scenarios.
  • Volume and low cost. gpt-5.6-luna, deepseek-v4-pro, gemini-2.5-flash, deepseek-v4-flash, gpt-5.4-nano — for classification, data extraction, bulk processing and draft answers where a low per-token cost matters.

Start with a mid-tier model, measure quality on your own data, and move up to a flagship or down to a cheaper option as needed — you only change the model string.

Model deep dives

Specs, limits, request examples and cost math for a specific model:

  • Claude Opus 5 — 1,000,000-token context, for deep analysis, code and agent workloads.
  • Gemini 3.6 Flash — 1,048,576-token context, multimodal input and a low per-request cost.