Dashboard
Manage your API keys, view usage, and manage your subscription.
API Key
The free tier doesn't require an API key. Upgrade to a paid plan to get a managed API key with higher limits.
Quick Start
Free Tier (No API Key)
curl -X POST https://aither-api-38g2.onrender.com
/api/v1/optimize/bandit \
-H 'Content-Type: application/json' \
-d '{"arms":[{"id":"A","pulls":10,"totalReward":7},{"id":"B","pulls":10,"totalReward":5}],"algorithm":"ucb1"}'With API Key (Paid Plans)
curl -X POST https://aither-api-38g2.onrender.com
/api/v1/optimize/bandit \
-H 'Content-Type: application/json' \
-H 'Authorization: Bearer ok_live_your_key_here' \
-d '{"arms":[{"id":"A","pulls":10,"totalReward":7},{"id":"B","pulls":10,"totalReward":5}],"algorithm":"ucb1"}'npm SDK
npm install @oraclaw/bandit
import { bandit } from '@oraclaw/bandit';
const result = await bandit({
arms: [{ id: 'A', pulls: 10, totalReward: 7 }, { id: 'B', pulls: 10, totalReward: 5 }],
algorithm: 'ucb1',
});Pay-per-call Billing
No monthly subscription needed. Pay just $0.005 per call (half a cent), billed monthly via Stripe. Perfect for variable workloads or getting started without commitment.
Switch to Pay-per-callSubscription Management
Manage your subscription, update payment methods, view invoices, and change plans through the Stripe Customer Portal. Pay-per-call usage is also visible in your Stripe dashboard.