Pricing & Credits¶
IndoxHub uses a credit-based billing system with zero markup on provider costs.
How It Works¶
- Purchase credits — Add funds to your account ($10 minimum)
- Make API requests — Each request deducts credits based on the provider's actual cost
- Track spending — Every response includes exact cost in the
usageobject
Credit System¶
| Detail | Value |
|---|---|
| Exchange rate | $1 = 1,000 credits |
| Minimum purchase | $10 (10,000 credits) |
| Markup | None — provider cost is passed through directly |
| Low balance warning | 300 credits ($0.30 remaining) |
Zero Markup Pricing¶
IndoxHub does not add margin on top of provider costs. When you make a request, the cost you see in the response usage.cost field is the exact amount the provider charges.
For example, if OpenAI charges $0.15 per 1M input tokens for GPT-4o-mini, you pay $0.15 per 1M input tokens through IndoxHub. No hidden fees.
Per-Request Cost Tracking¶
Every API response includes detailed usage information:
{
"usage": {
"tokens_prompt": 25,
"tokens_completion": 150,
"tokens_total": 175,
"cost": 0.0052,
"latency": 1200.5,
"cache_read_tokens": 0,
"cache_write_tokens": 0,
"reasoning_tokens": 0,
"web_search_count": 0
}
}
The cost field shows the exact credit deduction for that request in dollars.
BYOK — Bring Your Own Key¶
With BYOK, you use your own provider API key. The request is routed through IndoxHub but billed directly by the provider. No IndoxHub credits are deducted.
response = requests.post(
"https://api.indoxhub.com/api/v1/chat/completions",
headers={"Authorization": "Bearer YOUR_INDOXHUB_KEY"},
json={
"model": "openai/gpt-4o",
"messages": [{"role": "user", "content": "Hello"}],
"byok_api_key": "sk-your-openai-key"
}
)
See BYOK Support for full details.
Model Pricing¶
Pricing varies by model and provider. Since IndoxHub passes through costs directly, refer to each provider's pricing page for current rates. You can also check real-time costs by examining the usage.cost field in any API response.
Payment Methods¶
IndoxHub accepts credit card payments through Stripe. All transactions are processed securely with no stored card data on IndoxHub servers.