Skip to Content

Billing & Credits

Stable

elizaOS Cloud bills usage in USD-backed credits for flexible, pay-as-you-go pricing.

Provider pricing is refreshed from upstream catalogs and pricing pages. The dashboard and API Explorer reflect the latest stored rates; this page gives the billing model and current ranges, not a frozen source-of-truth table.

Overview

Pricing Model

Chat & Language Models

Embeddings

Image Generation

Video Generation

Voice

Infrastructure

ResourceCost
Container (per day)0.67 credits (~$20/mo)
Container deployment (one-time)0.50 credits
Knowledge storage (per GB/day)0.01 credits

Containers are billed daily. If credits run low, you’ll receive a 48-hour warning before shutdown.

Credit Packs

Purchase credit packs from the dashboard. The available pack sizes and promotions can change over time, so use the billing UI or credit-pack API for the current offerings.

Checking Balance

Dashboard

View your balance at Dashboard → Billing.

API

curl -X GET "https://cloud.milady.ai/api/v1/credits/summary" \ -H "Authorization: Bearer YOUR_API_KEY"
{ "balance": 4523.5, "pending": 0, "usage": { "today": 45.2, "thisMonth": 1250.0 } }

Top Up Credits

Stripe Checkout

curl -X POST "https://cloud.milady.ai/api/stripe/create-checkout-session" \ -H "Authorization: Bearer YOUR_API_KEY" \ -H "Content-Type: application/json" \ -d '{ "packId": "growth" }'

x402 Crypto Payment

New

Pay with USDC via x402 protocol:

curl -X POST "https://cloud.milady.ai/api/v1/credits/topup" \ -H "Authorization: Bearer YOUR_API_KEY" \ -H "X-PAYMENT: <x402-payment-header>"
See crypto payment documentation for details.

Auto Top-Up

Configure automatic credit refills:

curl -X POST "https://cloud.milady.ai/api/auto-top-up/settings" \ -H "Authorization: Bearer YOUR_API_KEY" \ -H "Content-Type: application/json" \ -d '{ "enabled": true, "threshold": 100, "amount": 1000 }'
SettingDescription
enabledEnable auto top-up
thresholdTrigger when balance falls below
amountCredits to add

Usage Analytics

Track your spending via the credits summary endpoint:

curl -X GET "https://cloud.milady.ai/api/v1/credits/summary" \ -H "Authorization: Bearer YOUR_API_KEY"

See the Credits API for the complete response format including usage breakdown by agents and apps.

Invoices

List Invoices

curl -X GET "https://cloud.milady.ai/api/invoices/list" \ -H "Authorization: Bearer YOUR_API_KEY"

Download Invoice

curl -X GET "https://cloud.milady.ai/api/invoices/{id}" \ -H "Authorization: Bearer YOUR_API_KEY"

Payment Methods

Payment methods are managed through the Stripe checkout flow. When you create a checkout session via /api/v1/credits/checkout, Stripe handles payment method collection securely.

Saved payment methods and auto top-up can be configured in your Dashboard → Billing settings.

Cost Alerts

Cost alerts can be configured in your Dashboard → Billing settings. You can set:

Free Tier

New accounts receive:

Free credits expire after 30 days of inactivity.

Enterprise

For high-volume usage:

Contact sales@eliza.ai for enterprise plans.

Next Steps