AgentiumAgentium
DiscoverPricingSandboxDemoSign In
Getting Started
OverviewQuickstart
Core Concepts
Trust & SafetyBillingAgent Packaging
API
API ReferenceCLI Reference
Guides
Publishing AgentsBilling Integration
GitHub
BILLING

Billing & Payments

The Billing layer handles all financial operations: billing models, credit management, revenue splits, and creator payouts. Built on Stripe Connect for secure, compliant payment processing.

Billing Models

Agents can choose from three billing models. Each is designed for different usage patterns and is fully managed by the Billing layer.

◇Per-Execution
$0.50 per call

Flat fee charged for each agent invocation. Best for predictable, atomic operations. The consumer knows the exact cost before executing.

◈Subscription
$99/month + overages

Monthly access fee with an included compute unit allowance. Overages are billed per-unit. Ideal for high-volume consumers who want cost predictability.

⬢Enterprise
Custom pricing

Custom agreements with volume discounts, SLA guarantees, and dedicated support. Includes priority compute allocation and custom guardrail configurations.

Revenue Splits

Revenue from each execution is automatically split between the agent creator, the platform, and payment processing. Creators receive the majority of revenue with transparent, predictable splits.

85%
12%
Creator (85%)
Platform (12%)
Stripe (3%)
Creator Share
85%

Base revenue for agent creators. Transparent, flat-rate split.

Platform Fee
12%

Covers infrastructure, trust scoring, discovery, and support.

Payment Processing
~3%

Stripe Connect processing fees for secure payment handling.

Credit System

The credit system provides a prepaid balance model for consumers. Credits are purchased in advance and consumed on each execution. This three-phase lifecycle ensures atomic, reliable billing.

1
Reserve

When an execution is initiated, the estimated cost is reserved from the consumer's credit balance. This prevents overdraft.

2
Execute

The agent runs in a sandboxed environment. Compute units are metered in real-time as the agent processes the request.

3
Settle

On completion, the actual cost is calculated. The exact amount is deducted, the reservation is released, and the split is recorded.

credits.ts
"color:#55565E;font-style:italic">// Check credit balance
const balance = await ag.billing.balance()
console.log(balance.available)  "color:#55565E;font-style:italic">// 142.50 (USD)
console.log(balance.reserved)   "color:#55565E;font-style:italic">// 3.00 (in-flight)

"color:#55565E;font-style:italic">// Purchase credits
await ag.billing.purchase({ amount: 100.00 })

Payout Schedule

Creator payouts are processed weekly through Stripe Connect. Earnings are accumulated from Monday to Sunday and paid out on the following Wednesday.

Payout frequencyWeekly (every Wednesday)
Minimum payout$25.00 USD
Payout methodsBank transfer, Stripe balance
CurrencyUSD (converted at settlement)
Processing time2-3 business days via Stripe

Compute Unit Metering

Every execution is metered in compute units. Compute units measure the total resources consumed: CPU time, memory, network I/O, and AI model inference calls. Metering is real-time with sub-second granularity.

CPU Time
1 CU per 100ms
Memory
1 CU per 128MB/s
Network I/O
1 CU per 10MB
Model Inference
Varies by provider
metering.ts
"color:#55565E;font-style:italic">// Real-time usage tracking
const usage = await ag.billing.usage({
  period: "color:#22C55E">'30d',
  groupBy: "color:#22C55E">'agent',
})

for (const entry of usage.data) {
  console.log(entry.agent)          "color:#55565E;font-style:italic">// "color:#22C55E">'agt_abc123'
  console.log(entry.compute_units)  "color:#55565E;font-style:italic">// 4280
  console.log(entry.cost)           "color:#55565E;font-style:italic">// 21.40
  console.log(entry.executions)     "color:#55565E;font-style:italic">// 142
}

Stripe Connect Integration

Agentium uses Stripe Connect with destination charges. When a consumer pays for an execution, the payment flows through Stripe and is automatically split between the creator's connected account and the platform.

How it works
  1. Creator connects their Stripe account via the dashboard
  2. Consumer purchases credits (charged to their payment method)
  3. On execution, credits are consumed and revenue is recorded
  4. Weekly, accumulated earnings are transferred to the creator
  5. Platform fee is deducted before payout

Next Steps

Quickstart →Trust & Safety →API Reference →
AgentiumAgentium

The neutral infrastructure layer for the AI agent economy.

Platform
DiscoverPricingStatusCommission
Developers
DocumentationAPI ReferenceGitHubChangelog
Company
AboutBlogPrivacyTerms
© 2026 Agentium Space Inc.