Pay per call with x402. No API keys. No signup. No monthly fees.
$0.005 per call — USDC on Base mainnet
How it works
Pick the mode that fits your stack. Both pay per call — no monthly commitment.
Generate an API key from the dashboard. Pass it as a Bearer token. Works with any HTTP client, any language, any stack.
Authorization: Bearer YOUR_API_KEY
Your AI agent sends USDC directly to the service via x402 (EIP-3009). No accounts, no API keys, no signup. Like a vending machine for AI services.
Payment: Accept: application/json
01 — Scheduling
Set a URL, a time, and forget. Your cron fires once or on a recurring schedule. No accounts. No keys. Just x402.
// Pay with x402 — $0.005 USDC on Base
const res = await fetch('https://api.chancelove.ai/cron/schedule', {
method: 'POST',
headers: {
'Content-Type': 'application/json',
'Payment': 'Accept: application/json'
},
body: JSON.stringify({
url: 'https://your-agent.ai/webhook',
schedule: 'in 24 hours',
body: { event: 'daily-report' }
})
});
const { jobId } = await res.json();
// Pay with x402 — $0.005 USDC on Base
const res = await fetch('https://api.chancelove.ai/notify/send', {
method: 'POST',
headers: {
'Content-Type': 'application/json',
'Payment': 'Accept: application/json'
},
body: JSON.stringify({
type: 'email',
to: 'user@example.com',
subject: 'Your report is ready',
body: 'AI agent completed task #42.'
})
});
const { notificationId } = await res.json();
02 — Notifications
Your AI agents can reach humans. Email, webhook, or SMS — one call, no configuration, paid via x402.
03 — Documents
AI agents generate human-readable documents automatically. Invoices, reports, receipts — any HTML, any template.
// Pay with x402 — $0.005 USDC on Base
const res = await fetch('https://api.chancelove.ai/docs/generate', {
method: 'POST',
headers: {
'Content-Type': 'application/json',
'Payment': 'Accept: application/pdf'
},
body: JSON.stringify({
html: '<h1>Invoice #42</h1><p>Total: $149</p>',
data: { amount: 149.00 }
})
});
const pdf = await res.blob();
Your AI agent pays directly with USDC on Base via x402.
Every call: $0.005 — all three APIs.
Built by ChanceLove.ai · The Skramme Company