Payment Methods

ModelBeam uses a prepaid credit system. Add credits to your account and pay per use.

Getting Started

New accounts automatically receive $5 in free credits. No payment method required.

Adding Credits

  1. Go to modelbeam.ai/dashboard
  2. Navigate to the Billing section
  3. Choose an amount and complete the payment

Supported Payment Methods

  • Credit and debit cards (Visa, Mastercard, American Express)
  • Additional payment methods via Stripe

Premium Tier

Making any payment automatically upgrades your account to Premium tier, which unlocks:
  • 300 requests per minute (all endpoints)
  • Unlimited daily requests
  • Priority support

Checking Your Balance

Use the API to check your current balance:
curl https://api.modelbeam.ai/api/v1/client/balance \
  -H "Authorization: Bearer YOUR_API_KEY" \
  -H "Accept: application/json"
Response:
{
  "data": {
    "balance": 4.52
  }
}