Payment Proxy Demo
Unified payment proxy for all partners. Same products, same flow.
Simple Integration
- 1Call API with productIndex (0, 1, or 2) and your userId
- 2Redirect customer to the returned checkout URL
- 3Customer completes payment on TokTools page
- 4Receive webhook with full Waffo event data
API Example
POST /api/billing/proxy
X-API-Key: your_api_key
{
"productIndex": 1,
"externalUserId": "user_123",
"successUrl": "...",
"cancelUrl": "..."
}
Products
Index 0 - Pro Weekly$2.90
Index 1 - Pro Monthly$9.90
Index 2 - Pro Yearly$79.90
Try It Live
Select a plan and test the payment flow.
Select a Plan:
This is a demo. Use test card 4576 7500 0000 0110 for success.
Webhook (Direct Pass-through)
We forward the entire Waffo event to your webhook URL with minimal wrapping.
{
"eventType": "payment.completed",
"proxyToken": "proxy_xxx",
"externalUserId": "user_123",
"productIndex": 1,
"productName": "Pro Monthly",
"amount": 9.9,
"currency": "USD",
"rawEvent": { /* Full Waffo event */ }
}