Organization-owned keys
Create and revoke keys from the API Keys settings page. Keys belong to the current organization, not an individual user session.
Rebyte Model Proxy
One API key per organization for direct model calls. Use an OpenAI-compatible endpoint, route through Rebyte, and charge usage to the same organization credits that power agent runs.
Rebyte model keys are raw proxy keys for server-side use. The call goes directly to the model proxy; Rebyte attributes usage from the key metadata and deducts credits from the organization balance.
curl https://model.rebyte.ai/v1/chat/completions \
-H "Authorization: Bearer sk_your_model_proxy_key" \
-H "Content-Type: application/json" \
-d '{
"model": "gpt-5.4-mini",
"messages": [{"role": "user", "content": "Hello"}]
}' Create and revoke keys from the API Keys settings page. Keys belong to the current organization, not an individual user session.
The model proxy checks available credits before provider calls and records usage back to the organization ledger.
Use one endpoint while Rebyte handles model naming, provider credentials, and routing behind the proxy.
Your server calls model.rebyte.ai/v1 with the model key.
LiteLLM reads the organization metadata attached to the key.
Credits are checked, provider usage is logged, and the organization balance is updated.
Start with one organization-scoped key, then rotate or revoke it from Rebyte when access should stop.
Open API Keys