Skip to content

Credits & Billing

All AI generation in CutX is powered by credits. New accounts start with 25 free credits.

GET /api/credits/balance
Authorization: Bearer <token>

Response (200):

{
"balance": 120,
"lifetime_purchased": 250,
"lifetime_used": 155
}
GET /api/checkout/session
Authorization: Bearer <token>

Response (200):

{
"creditPacks": [
{ "id": "starter_50", "credits": 50, "price": 9.99 },
{ "id": "pro_150", "credits": 150, "price": 24.99 },
{ "id": "agency_500", "credits": 500, "price": 69.99 },
{ "id": "mega_1000", "credits": 1000, "price": 119.99 }
],
"subscriptionPlans": [
{ "id": "starter", "credits": 120, "price": 24.99, "period": "month" },
{ "id": "pro", "credits": 350, "price": 44.99, "period": "month" },
{ "id": "agency", "credits": 1000, "price": 84.99, "period": "month" }
]
}
POST /api/checkout/session
Authorization: Bearer <token>
Content-Type: application/json

One-time credit pack:

{
"type": "one_time",
"pack": "pro_150"
}

Subscription:

{
"type": "subscription",
"plan": "starter"
}

Response (200):

{
"sessionId": "cs_...",
"url": "https://checkout.stripe.com/..."
}

Redirect the user to url to complete payment. After successful payment, credits are automatically added to their balance.

Generation TypeCreditsApprox. API Cost
Ad Copy (5 variants)1~$0 (Workers AI)
Static Ad Image3~$0.04
TTS Audio (30s)2~$0.045
UGC Video (TTS + lip sync)40~$4.50
Image-to-Video10~$0.75
Video Reframe20~$2.50
Product Scrape0Free
TierPriceCredits/moAd Spend FeePlatforms
Starter$24.99/mo1206%Meta + TikTok
Pro$44.99/mo3506%All
Agency$84.99/mo1,0004%All + API + white-label
StatusMeaning
402Insufficient credits — balance too low
503Stripe not configured