One API for every model

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.

Get an API key Read the docs
USDPrepaid balance
10⁻⁶Micro-dollar accounting
One lineTo move off OpenAI
$0Subscription

Change the base URL. That is the whole integration.

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="")

Built around a balance, not a bill

Most of the engineering sits in the part nobody shows: what happens to your money when a request fails halfway through.

Reserved Charged Returned
Reserve → settle

Prepaid, with no surprises

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.

gpt-5.6-sol 1,204 in 318 out gpt-5.6-terra 842 in 210 out o3 2,010 in 640 out $0.023 $0.006 $0.013
Per request

Priced to the micro-dollar

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.

api-prod models:invoke batch models:invoke laptop revoked
Scoped keys

A key per service

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.

Request No end Balance Reclaimed
Settled

Holds are reclaimed, not forgotten

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.

Three steps to your first token

01

Create an account

Sign in with a Google account. No sales call, and no procurement form.

02

Fund a balance

Top up in US dollars. What you fund is the ceiling on what you can spend.

03

Issue a key

The secret is shown once. Paste it into your client and send a request.

Get started