Turn Usage Into Revenue

A billing platform built for AI companies

— 01

Payments, Usage & Billing

Sell SaaS with flexible pricing models or bill users for usage like AI token consumption.

— 02

Customer Management

Advanced customer lifecycle management with detailed profiles & analytics.

— 03

Global Merchant of Record

Sit back, relax, while we handle all headaches & tax compliance. No sales tax to worry about.

Billing Pipeline

Event to revenue.
End-to-end.

Aureon makes it incredibly easy to monetize your software. Usage billing using event ingestion, SaaS tiers or one-off purchases.

  • CHECKOUT

    Secure & robust checkouts that converts users to customers

  • USAGE EVENTS

    Capture API calls, token consumption & custom events

  • METERING

    Aggregate usage, enforce rate limits & quotas per customer

  • INVOICING

    Generate itemized invoices for each billing period

Pay Now
billing = fn(events)

Usage Billing on Autopilot

terminalnvimapi/ai/route.ts
import { generateText } from "ai";
import { openai } from "@ai-sdk/openai";

/**
 * Track AI usage via Aureon's standard Ingestion API.
 * This replaces proprietary SDKs with a flexible, standard fetch call.
 */
const trackUsage = async (customerId: string, usage: any) => {
  await fetch("https://api.payaureon.com/v1/ingestion/ingest", {
    method: "POST",
    headers: {
      "Authorization": "Bearer YOUR_Aureon_TOKEN",
      "Content-Type": "application/json",
    },
    body: JSON.stringify({
      external_customer_id: customerId,
      event_name: "openai_usage",
      properties: {
        prompt_tokens: usage.promptTokens,
        completion_tokens: usage.completionTokens,
        total_tokens: usage.totalTokens,
        model: "gpt-4o",
      },
    }),
  });
};

export async function POST(req: Request) {
  const { prompt } = await req.json();

  // Execute AI generation using Vercel AI SDK
  const { text, usage } = await generateText({
    model: openai("gpt-4o"),
    system: "You are a helpful assistant.",
    prompt,
  });

  // Track usage in your Aureon-powered billing system
  await trackUsage("user_123", usage);

  return Response.json({ text });
}
curl -X POST https://payaureon.com/api/ai \
-H "Content-Type: application/json" \
-d '{"prompt": "Tell me a joke"}'
Live Events
38,471 ingested
INFERENCEopenai-usageuser_123
15,834 tokens
INFERENCEopenai-usageuser_123
12,603 tokens
INFERENCEopenai-usageuser_123
6,268 tokens
INFERENCEopenai-usageuser_123
1,367 tokens
INFERENCEopenai-usageuser_123
4,354 tokens
INFERENCEopenai-usageuser_123
6,177 tokens
INFERENCEopenai-usageuser_123
11,134 tokens
INFERENCEopenai-usageuser_123
3,562 tokens
U
user_123
Pro
Tier 2 · Token Usage6.1M / 10M
$0.002 / 1k tokens
Pro Subscription$49.00
Token Overages$10.20
Total this period$59.20

Next.js Adapter

Payments and Checkouts made dead simple with Next.js

  • Secure & Simple Checkouts

  • Integrated Customer Portal

  • Granular & Reliable Webhook Handler

  • Global Merchant of Record

terminalnvimapi/checkout/route.ts
import { redirect } from "next/navigation";

/**
 * Handle checkout by calling Aureon REST API directly.
 * No external SDK required.
 */
export async function GET() {
  const response = await fetch("https://api.payaureon.com/v1/checkouts", {
    method: "POST",
    headers: {
      "Content-Type": "application/json",
      "Authorization": `Bearer ${process.env.Aureon_ACCESS_TOKEN}`,
    },
    body: JSON.stringify({
      products: [process.env.NEXT_PUBLIC_PRODUCT_ID],
      success_url: `${process.env.NEXT_PUBLIC_APP_URL}/success`,
    }),
  });

  const checkout = await response.json();

  // Redirect to the hosted checkout page
  return redirect(checkout.url);
}
~ % pnpm dev
✓ Starting...
✓ Compiled in 135ms
Benefits Engine
9b
user_7f2a9bSubscribed
PRO
Granted automatically
advanced_analytics
priority_support
api.rate_limit_10k

Define tiers.
Ship feature flags.

Define feature flags as benefits and attach them to your subscription tiers. Aureon automatically enables and revokes them as customers subscribe and churn.

The Most Affordable Payment Platform for Your Business

Seamlessly integrate global payments with the lowest processing fees on the market. Scale your SaaS without worrying about monthly fees or hidden setup costs.

4.9%+ 40¢
per transaction
  • Seamless global payment integration
  • Advanced fraud detection & security
  • Volume discounts for high-growth teams
  • No monthly or setup fees

Modern billing.
Built for the AI era.