Credits
Everything in blogAIzer costs credits. Credits come with your plan subscription.
Credit Costs
| Action | Credits |
|---|---|
| Generate full article | 1 |
| Generate 10 curated ideas | 2 |
| Analytics insights report | 1 |
| Follow-up ideas from analytics | 2 |
| Research only (no article) | 0.5 |
| Uniqueness/deduplication check | 0.5 |
| Featured image only | 0.5 |
| Social posts only | 0.25 |
Plans
| Plan | Price | Articles/mo | Credits | Rate Limit |
|---|---|---|---|---|
| Free Trial | Free | 5 | 5 | 5 req/min |
| Starter | $49/mo | 50 | 50 | 20 req/min |
| Growth | $149/mo | 200 | 200 | 60 req/min |
| Scale | $499/mo | 1,000 | 1,000 | 200 req/min |
Checking Your Balance
bash
curl https://blogaizer.com/api/v1/account/usage \
-H "Authorization: Bearer sk_live_..."
Response includes credits_remaining and breakdown by type.
When Credits Run Out
If you attempt an operation without enough credits:
json
{
"error": "credits_exhausted",
"message": "No credits remaining",
"credits_remaining": 0,
"upgrade_url": "https://blogaizer.com/dashboard"
}
HTTP status: 402 Payment Required
Credits reset at the start of each billing period. Unused credits do not roll over.
Subscribing
bash
curl -X POST https://blogaizer.com/api/v1/account/subscribe \
-H "Authorization: Bearer sk_live_..." \
-H "Content-Type: application/json" \
-d '{"plan": "api_growth"}'
Returns a Stripe Checkout URL to complete payment.
