Every billing feature.
One platform.
From usage metering to subscription management to digital product delivery, Orvlin handles the entire billing lifecycle.
Charge for exactly what your customers use
Metered / Usage-Based Billing
Report token counts, API calls, compute seconds, or any custom metric. Orvlin meters usage in real-time and bills customers based on their actual consumption.
- Real-time usage ingestion via API
- Tiered pricing (volume-based discounts)
- Prepaid credits with auto-topup
- Per-token, per-request, per-second billing
- Usage alerts and threshold notifications
- Custom unit names (tokens, requests, GB-hours)
Metered / Usage-Based Billing
Recurring revenue, handled
Subscription Management
Monthly, annual, and custom billing intervals. Free trials, proration, upgrades, downgrades, and cancellations — all automated.
- Monthly, annual, and custom intervals
- Free trials with automatic conversion
- Proration on plan changes
- Dunning management for failed payments
- Subscription pauses and scheduling
- Bulk operations via API
Subscription Management
Sell templates, licenses, and software
Digital Product Sales
Sell Framer templates, SaaS licenses, AI software, and digital goods. Instant delivery with automatic license key generation.
- Instant download delivery
- Automatic license key generation
- Bundled product packages
- Versioned delivery URLs
- Customer email capture at checkout
- Fulfillment webhooks
Digital Product Sales
Bill customers the traditional way
Invoicing
Generate branded invoices with payment links. Customers pay via secure hosted checkout. Automatic payment confirmation and receipt emails.
- Branded invoice templates
- One-click payment links
- Automatic receipt emails
- Multi-currency support
- Invoice reminders and overdue tracking
- PDF export
Invoicing
Real numbers, in real-time
No stale dashboards. Revenue, subscriptions, and customer metrics update live.
MRR / ARR
Monthly and annual recurring revenue from all sources
Churn Rate
Customer and revenue churn with cohort analysis
LTV / ARPU
Lifetime value and average revenue per user
Revenue by Plan
Breakdown of revenue by product and pricing tier
Customer Growth
12-month customer acquisition trends
Usage Analytics
Per-customer token/request consumption
Built by developers, for developers
Clean REST API with predictable responses. Typed SDKs for Python, JavaScript, and PHP. Comprehensive webhooks for every billing event. No SDK lock-in.
- REST API with OpenAPI spec
- Webhooks for every billing event
- Customer portal with self-service
- Email notifications via Resend
- SOC 2 Type II compliant
POST /webhooks/orvlin
{
"event": "checkout.completed",
"data": {
"session_id": "cs_abc123",
"customer_email": "user@example.com",
"amount": 49.00,
"currency": "usd",
"items": [{
"product_id": "prod_ai_pro",
"pricing_type": "metered",
"quantity": 50000,
"unit_name": "tokens"
}],
"fulfillment": [{
"download_url": "https://...",
"license_key": "OVLIN-A1B2C3..."
}]
}
}