One OpenAI-compatible endpoint. One prepaid balance. A cost recorded on every single request — no subscription, and no invoice at the end of the month.
If your code already talks to OpenAI, it already talks to us.
# pip install openai from openai import OpenAI client = OpenAI( base_url="https://api.redactron.ai/v1", api_key="<AOR_API_KEY>", ) stream = client.chat.completions.create( model="gpt-5.6-sol", messages=[{"role": "user", "content": "Hello"}], stream=True, ) for chunk in stream: print(chunk.choices[0].delta.content or "", end="")
Most of the engineering sits in the part nobody shows: what happens to your money when a request fails halfway through.
A request reserves its worst-case cost before any provider is contacted, then the hold is released or settled once it ends. You cannot be charged more than you funded.
Every request records the model, the token counts, the price version it was charged under, and the exact amount. A request costing less than a cent is a real number, not a rounding error.
Issue a key for each workspace or each service, and give it only the scopes it needs. Every key stands alone, so revoking one leaves the rest untouched.
A worker sweeps the holds whose request never reached an end and returns them to your balance, so a restart in the middle of a request does not quietly cost you what it reserved.
Prices come from the catalogue the gateway charges against. This table is updated separately from that catalogue, so what is listed here is the line-up, not a promise of what your key can call today — the console shows exactly what is callable, and it is the reference your requests are priced against.
The strongest model we route to. Long context, and the best reasoning quality.
| Input | $8.00 / 1M |
| Output | $45.00 / 1M |
Most of the capability at a third of the cost. The default worth trying first.
| Input | $3.00 / 1M |
| Output | $18.00 / 1M |
Deliberate reasoning for the problems worth the extra tokens.
| Input | $3.00 / 1M |
| Output | $12.00 / 1M |
Sign in with a Google account. No sales call, and no procurement form.
Top up in US dollars. What you fund is the ceiling on what you can spend.
The secret is shown once. Paste it into your client and send a request.