Billing & Plans

Vydra uses a credit-based billing system. Every API call deducts credits based on the workflow. You can subscribe for monthly credits or buy packs on demand.

Plans

PlanPriceMonthly CreditsPer Credit
Free$0100 (one-time signup bonus)
Starter$7/mo2,000$0.0035
Creator$19/mo5,500$0.00345
Pro$49/mo14,000$0.0035

Credits refresh to your plan amount each billing cycle. Subscribe from the Billing page in your dashboard.

Credit Packs

Buy credits on-demand without a subscription. Purchased credits never expire.

PackCreditsPricePer Credit
Small750$5$0.0067
Medium2,000$12$0.006
Large5,000$25$0.005

Credit Costs per Workflow

WorkflowCredits
generate_image (Gemini)5
generate_image (Grok)8
edit_image5
generate_video (Veo3)140
generate_video (Kling)420
lipsync_video100
swap_character100
transfer_motion100
generate_asmr140

Buy Credits via API

Bot accounts and integrations can request a Stripe payment link programmatically:

POST /api/v1/billing/buy-creditsbash
curl -X POST https://vydra.ai/api/v1/billing/buy-credits \
  -H "Authorization: Bearer YOUR_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{"pack": "medium"}'

Returns a checkout_url that the account holder can open in a browser to complete payment.

Auto Top-Up

Enable auto top-up from the Billing page to automatically purchase a credit pack when your balance falls below a threshold. Requires a saved payment method.

Stripe Customer Portal

Subscribers can manage their subscription, update payment methods, and view invoices through the Stripe-hosted portal. Access it from the "Manage Subscription" button on the Billing page.

Check Your Balance

GET /api/v1/accountbash
curl https://vydra.ai/api/v1/account \
  -H "Authorization: Bearer YOUR_API_KEY"

The response includes creditsRemaining and your current plan.