HomeGuides → GPT-5.6 Terra in production

GPT-5.6 Terra in production

The mid-tier GPT-5.6, and in our own traffic the one that does most of the work for a fraction of the money. Numbers from 13 real billed calls.

The short version

Measured against its siblings

ModelCallsAvg cost / callAvg first token Avg output
gpt-6-astra14$0.10472,176 ms372 tok
gpt-5.6-sol29$0.079611,873 ms975 tok
gpt-5.6-terra13$0.02337,767 ms124 tok

Different workloads rather than a controlled benchmark — average output length varies eightfold across those rows, which moves both cost and duration. Read it as a directional signal from real traffic, not a lab result.

What it actually cost

Per callCost at list price
Cheapest$0.00774
Median$0.01807
Mean$0.02333
Most expensive$0.06118

13 calls · 116,781 input tokens · 1,612 output · 252,160 cache-read · $0.30 total at list price.

Where it belongs

Terra is the sensible default for work that is neither trivial nor the final product: agent loops, bulk transformation, structured extraction that needs some judgement, drafts a human will edit.

The spread from luna to sol is roughly ten times for the same API shape. Most pipelines that feel expensive are sending everything to one tier.

Calling it

from openai import OpenAI

client = OpenAI(api_key="YOUR_KEY", base_url="https://apiclan.us/v1")

resp = client.chat.completions.create(
    model="gpt-5.6-terra",
    messages=[{"role": "user", "content": "Hello"}],
)

Switching tiers is one word. Same endpoint, same key, same request shape — change gpt-5.6-terra to gpt-5.6-luna or gpt-5.6-sol and nothing else in your code moves. That makes per-stage routing cheap to try.

What you pay here

Per 1M tokensList priceAPICLANYou save
Input$2.00$0.40080%
Output$12.00$2.4080%

Calculator and the rest of the family on the price page.

Questions people actually ask

Is terra good enough to replace sol?

For most non-final work, in our experience yes. But this is exactly the question you should not take from a vendor page — run both on twenty real inputs from your own product and read the outputs.

How do I route between tiers?

Split on deciding versus doing. Classification, extraction and routing go to luna; the work itself to terra; only the final user-visible answer to sol. Each is a one-word change.

Start using it

No subscription, no monthly minimum, no sales call. Top up with USDT and spend what you use — 1 USDT gives you 2 credits of API balance.

Read the 30-second quickstart

Prices quoted on this page are regenerated automatically from live billing data. Third-party terms are quoted from that party's own published documentation.