Rendra Docs / Abrechnung und Nutzung

Abrechnung und Nutzung

Rendra offers a free tier to get started and a Pro plan for production workloads. All plans are billed monthly via Stripe.

Plans

Kostenlos
€0 / month
Perfect for experimentation and side projects.
  • 50 images per month
  • 5 requests per minute
  • PNG & JPEG output
  • All dimensions supported
  • Community-Support

Usage Tracking

Monitor your usage via the dashboard API or the web dashboard.

Via API

curl https://rendra.alphabros.eu/api/v1/dashboard \
  -H "Authorization: Bearer YOUR_API_KEY"
{
  "plan": "free",
  "usage": {
    "current_period": 23,
    "limit": 50,
    "resets_at": "2026-05-01T00:00:00Z"
  },
  "total_generations": 147
}

Usage resets at the start of each calendar month.

Via SDK

const dashboard = await rendra.getDashboard();
const remaining = dashboard.usage.limit - dashboard.usage.current_period;
console.log(`${remaining} images remaining this month`);

Ratenbegrenzungen

PlanImages / MonthRequests / Minute
Kostenlos505
Pro1,00030

When you exceed the per-minute rate limit, requests return 429 Too Many Requests with a Retry-After header (in seconds). Implement exponential backoff in your client.

When you reach your monthly image limit, requests return 402 Payment Required with a message explaining that you've exhausted your allocation for the month.

Upgrading to Pro

Upgrade programmatically via the API, or manage your subscription through the Stripe billing portal.

Create a checkout session

curl -X POST https://rendra.alphabros.eu/api/v1/billing/checkout \
  -H "Authorization: Bearer YOUR_API_KEY"

# Response:
# { "url": "https://checkout.stripe.com/pay/cs_test_xxx" }

# Redirect your user to the URL to complete payment.

Via SDK

// Redirect to Stripe checkout
const { url } = await rendra.createCheckout();
window.location.href = url;

Managing Your Subscription

Access the Stripe billing portal to update your payment method, view invoices, or cancel your subscription.

curl -X POST https://rendra.alphabros.eu/api/v1/billing/portal \
  -H "Authorization: Bearer YOUR_API_KEY"

# Response:
# { "url": "https://billing.stripe.com/p/session/xxx" }

Downgrading

You can downgrade from Pro to Free at any time via the billing portal. Your Pro plan remains active until the end of the current billing period. After that, your account reverts to the Free tier limits.

Note: Images already generated are not deleted when you downgrade. However, new generation requests will be subject to the Free plan's monthly limit (50 images) once your Pro period ends.

Billing FAQ

When does my usage reset?

Usage resets at 00:00 UTC on the first day of each calendar month, regardless of when you signed up.

Is there a free trial for Pro?

The Free plan itself serves as your trial — you get 50 images per month at no cost. Upgrade to Pro when you need more volume.

What happens if I go over my monthly limit?

Generation requests will return 402 Payment Required until the next reset period or until you upgrade your plan.

Do unused images roll over?

No — unused images do not roll over to the next month.

How do I get an invoice?

Invoices are automatically sent to your registered email after each successful payment. You can also download past invoices from the Stripe billing portal.