Docs/Products
Gateway
OpenAI-compatible access to open-weight models, paid in $KYZN at host cost plus 10%.
- Interface
- OpenAI-compatible
- Price
- Host rate + 10%
- Margin
- Burned each window
- Models
- Open-weight only
Specification v1.4 · Revised 24 September 2026 · 9 sections
#Inference is paid in $KYZN
The Gateway sells AI inference for $KYZN. It serves open-weight models only, through hosts whose terms permit resale.
It has two surfaces. Programs call an OpenAI-compatible endpoint. People use the Gateway view in the app to issue a key, read the model list and copy a request.
Every request is metered and priced at the host's dollar rate plus a 10% margin, quoted in $KYZN. Each settlement window, the Gateway sells the $KYZN needed to pay the host bill and burns the rest. Its settlement address is exempt from the trade tax, so the sale pays no 4% and the full margin burns.
No part of the margin goes to the Reserve, to stakers or to the development wallet. It is removed from supply.
| Stage | Rule |
|---|---|
| Key | The wallet signs one message. The key is issued on signature and bound to that wallet. |
| Request | The client sends an OpenAI-format request with the key as a bearer token. |
| Metering | Each request is metered and priced at the host rate plus 10%, in $KYZN. |
| Payment | The request is paid in $KYZN from the wallet bound to the key. |
| Settlement | Per window, the Gateway sells the $KYZN needed for the host bill. |
| Burn | Per window, the $KYZN left after the host bill is burned. |
#Keys are wallet-signed
A Gateway key is issued against a wallet signature. The signature proves control of the wallet without moving funds or paying gas.
- 01ConnectOpen the Gateway view with MetaMask, Rabby or Phantom on Robinhood Chain, chain ID 4663. See Using the app.
- 02Sign one messageThe wallet signs a message. No transaction is sent and no gas is paid.
- 03Receive the keyThe key is issued on signature and bound to the signing wallet. The base URL is shown with the key.
- 04Pay in $KYZNEvery request made with the key is paid in $KYZN from the bound wallet.
Rate limits are enforced per wallet. A wallet's limit covers every request made with its key.
#Requests follow the OpenAI API
The endpoint accepts the OpenAI chat completions request at /v1/chat/completions. Any client that speaks the OpenAI API works after two changes: the base URL and the key.
The base URL is shown with your key. The samples read it from KYZN_GATEWAY_URL and read the key from KYZN_KEY.
The key travels as a bearer token in the Authorization header. The model field takes one identifier from the model table on this page.
curl $KYZN_GATEWAY_URL/v1/chat/completions \
-H "Authorization: Bearer $KYZN_KEY" \
-H "Content-Type: application/json" \
-d '{
"model": "deepseek-v4",
"messages": [{ "role": "user", "content": "Which supply-chain stage binds?" }]
}'The JavaScript and Python samples use the OpenAI SDKs with baseURL or base_url set to the Gateway. The model's answer is read from choices[0].message.content, as with any OpenAI-compatible endpoint.
Metering
Each request is metered on its token count. It is billed at the model's price per 1M tokens, set by the pricing rule on this page.
#Only open-weight models are served
| Model | Identifier |
|---|---|
| DeepSeek V4 | deepseek-v4 |
| Kimi K3 | kimi-k3 |
| GLM-5.3 | glm-5.3 |
| Qwen3.8 | qwen3.8 |
Model names appear exactly as published: DeepSeek V4, Kimi K3, GLM-5.3 and Qwen3.8. The identifier is the value of the model field.
Every model is served through a host whose terms permit resale: DeepInfra, Novita or an equivalent host.
Closed models
Closed models are not resold, because their providers' terms do not permit resale. A closed model enters the Gateway only through bring-your-own-key, where the request runs on the caller's own provider key.
#Capacity is prepaid inference
The Gateway's capacity is inference prepaid with third-party hosts.
A host qualifies only when its terms permit resale. DeepInfra and Novita meet this rule, and an equivalent host can replace either.
A window's host bill is the host's dollar rate applied to the tokens served in that window. The host bill is paid in dollars from the $KYZN sold at settlement.
The Gateway view shows Models online, the count of models serving requests, next to Requests served and Burned by usage.
#Prices add a 10% margin
The price of a model is the host's dollar rate for that model plus 10%. The Gateway quotes the price in $KYZN.
price_usd = host_rate × 1.10 price_kyzn = price_usd ÷ p margin = host_rate × 0.10 ÷ p
- host_rate
- Host dollar rate per 1M tokens for the model
- p
- Dollar price of 1 $KYZN used for the quote
- margin
- $KYZN burned per 1M tokens when p is unchanged at settlement
The margin is one eleventh of the price. At an unchanged $KYZN price, 90.9% of what a caller pays covers the host and 9.1% is burned.
- Host rate
- $0.80 per 1M tokens
- Price in dollars
- $0.80 × 1.10 = $0.88 per 1M tokens
- $KYZN price used
- $0.00002
- Price in $KYZN
- $0.88 ÷ $0.00002 = 44,000 $KYZN per 1M tokens
- Request size
- 250,000 tokens
- Charged
- 44,000 × 0.25 = 11,000 $KYZN ($0.22)
- Host share
- 10,000 $KYZN ($0.20)
- Margin, shown as burn
- 1,000 $KYZN ($0.02)
All inputs are illustrative. They are not a quote and not a reference price for $KYZN.
Display rules
- Model names appear exactly as published.
- Each model's price per 1M tokens appears in $KYZN and in dollars, side by side.
- The burn is shown per request.
- Numerals are set in monospace. Percentages carry one decimal and dollar values carry two.
With the inputs above, the Gateway view lists the model at 44,000 $KYZN and $0.88 per 1M tokens, and shows 1,000 $KYZN as the burn for the request.
#The margin is burned
Requests settle in windows. Each window closes with a sale and a burn.
- 01MeterEvery request in the window is metered and paid in $KYZN at its quoted price.
- 02SellThe Gateway sells the $KYZN needed to pay the window's host bill in dollars.
- 03BurnA burn transaction destroys the rest. Total supply falls by the burned amount.
sold = host_bill ÷ p_settle burned = received − sold
- received
- $KYZN paid by all requests in the window
- host_bill
- Dollar cost of the window at host rates
- p_settle
- Dollar price of 1 $KYZN at settlement
The burn equals the quoted margin when the $KYZN price at settlement equals the price used for the quotes. A lower price at settlement means more $KYZN is sold and less is burned. A higher price means less is sold and more is burned.
- Host bill
- $420.00 at host rates
- Margin
- $420.00 × 0.10 = $42.00
- Paid by requests
- $462.00 at $0.00002 = 23,100,000 $KYZN
- Settled at $0.00002
- 21,000,000 $KYZN sold · 2,100,000 $KYZN burned
- Settled at $0.00001875
- 22,400,000 $KYZN sold · 700,000 $KYZN burned
Illustrative inputs. The burn is what remains after the host bill, so it moves with the $KYZN price between quote and settlement.
#Burns reduce total supply
$KYZN has a fixed supply of 1,000,000,000 and no mint function. A burned token leaves total supply permanently. See Token and launch.
Backing per $KYZN is Reserve value divided by total supply. A Gateway burn lowers total supply and leaves Reserve value unchanged, so backing per $KYZN rises.
backing before = R ÷ S backing after = R ÷ ( S − b )
- R
- Reserve value in dollars
- S
- Total supply before the burn
- b
- $KYZN burned
Redemption pays a share measured against total supply. After a burn, each remaining $KYZN redeems for a larger share of every Reserve asset. See Redemption and The Reserve.
The Burned by usage counter totals every Gateway burn. It appears on the dashboard and in the app's Overview and Gateway views.
#Parameter sheet
| Parameter | Value |
|---|---|
| Interface | OpenAI-compatible endpoint and the Gateway view of the app at app.kyzen.network |
| Request path | /v1/chat/completions |
| Keys | Wallet-signed; no transaction, no gas |
| Rate limits | Per wallet |
| Models | DeepSeek V4, Kimi K3, GLM-5.3, Qwen3.8 |
| Model rule | Open weights; host terms permit resale |
| Hosts | DeepInfra, Novita or equivalent |
| Closed models | Only through bring-your-own-key |
| Capacity | Prepaid third-party inference |
| Metering | Per request |
| Price | Host dollar rate plus 10%, priced in $KYZN |
| Settlement | Per window: sell for the host bill, burn the rest |
| Margin | Burned; never paid to the Reserve, stakers or development |