Deposit funds
LLMTune uses a prepaid balance (your “wallet”). You add funds up front, then inference, fine-tuning, embeddings, and the Agent are deducted as you go. There are no end-of-cycle invoices — you only pay for what you use, in real time.This prepaid wallet is separate from Coding Plans, which are monthly subscriptions that include a fixed quota of AI requests for the CLI and IDEs. Wallet balance is only charged for usage outside your plan’s quota — non-plan models, fine-tuning, and embeddings.
Deposit funds
- Sign in to the platform at https://llmtune.io/login.
- Open Billing from the left sidebar (or go to https://llmtune.io/billing).
- Your current balance is shown at the top of the page.
- Click Add funds (or Top up).
- Choose your payment method.
- Enter the amount you want to deposit.
- Confirm the payment. Your balance updates immediately on success.
How balance is used
| Workload | How it charges |
|---|---|
Inference (/v1/chat/completions) | Per request, based on input + output tokens. |
Embeddings (/v1/embeddings) | Per request, based on input tokens. |
Fine-tuning (/api/training) | Per GPU hour, billed while the job runs (not while queued). |
| Agent | Per request / per step, like inference. |
What happens when balance runs out
When your balance can’t cover a request, the API returns 402 Payment Required:- Go to Billing → Add funds.
- Deposit enough to cover the request (the
Requiredfield shows the minimum). - Retry your request. No data is lost — the request simply didn’t run.
Even models marked Confidential (the free / own-your-data tier) go through the paid inference path. If your balance is
$0.00, confidential models will also return 402. Deposit any amount to unlock them.Best practices
- Deposit a buffer — Add more than your immediate need to avoid mid-job 402s during batch runs.
- Estimate before training — For fine-tuning, use the cost estimate in Fine-tune Studio before you launch, and make sure your balance covers the full GPU-hours estimate.
- Handle 402 in code — Treat
402as recoverable: pause, prompt the user to add funds, then retry. Don’t auto-retry in a tight loop. - Monitor usage — Check Billing & usage to track spend and spot unexpected drains early.
Next
- Balance and deductions — How deductions work and how to handle 402 in detail.
- Billing & usage — How token usage is calculated.