Solutions · AI Tools
Charge for API usage, credits, and subscriptions in crypto. Instant settlement, no intermediaries, no geographic restrictions on who can pay you.
Create a checkout for each API call or credit bundle. Webhook fires on confirmation — top up credits instantly.
Payment confirmed on-chain triggers your webhook in under a second. No polling, no delays.
Accept payments from developers worldwide. No KYC, no geographic blocks, no bank account required.
// Create a credit top-up checkout
const res = await fetch('/api/v1/checkout', {
method: 'POST',
headers: { 'Authorization': 'Bearer sk_live_...' },
body: JSON.stringify({
amount: 50.00, // $50 = 500 credits
metadata: { user_id: 'usr_123', credits: 500 },
webhook_url: 'https://yourapi.com/billing/webhook',
}),
});
// On checkout.completed webhook:
// → Add 500 credits to user_id: usr_123