Funds transferred to your wallet within seconds of payment confirmation. No waiting days for settlement.
Lowest fees in crypto payments. Compare to 2.9% for credit cards or 1%+ for other crypto gateways.
Blockchain payments are irreversible. No fraud disputes or chargeback fees eating into your profits.
Accept payments from anywhere in the world. No geographic restrictions or complex international setups.
Payments go directly to your wallet. We never hold your funds or have access to your private keys.
No technical knowledge needed. We use RESTful API and webhooks. Get started with just a few lines of code.
Chat with our bot to create your merchant account and get your API key instantly. No paperwork required.
Configure your Solana wallet address where you want to receive payments. All settlements go here instantly.
/wallet YOUR_SOLANA_ADDRESS
Integrate our API to create payment requests. Your customers pay, you get SOL instantly minus 0.3% fee.
POST /api/payments/create
{
"amount": 1.5,
"description": "Premium Plan Subscription",
"metadata": {
"userId": "user_123",
"planId": "premium_monthly"
}
}
// Response
{
"success": true,
"payment": {
"id": "pay_abc123",
"amount": 1.5,
"feeAmount": 0.0045,
"merchantAmount": 1.4955,
"address": "9WzDXwBbmkg8ZTbNMqUxvQRAyrZzDsGYdLVL9zYtAWWM",
"expiresAt": "2024-01-15T10:30:00Z",
"status": "pending"
}
}
// Response
{
"success": true,
"payment": {
"id": "pay_abc123",
"amount": 1.5,
"status": "completed",
"completedAt": "2024-01-15T10:25:33Z",
"transactions": {
"customer": "5VrF7...",
"fee": "3NgP2...",
"merchant": "8KmD4..."
}
}
}
// POST to your webhook URL
{
"event": "payment.completed",
"payment": {
"id": "pay_abc123",
"amount": 1.5,
"merchantAmount": 1.4955,
"feeAmount": 0.0045,
"status": "completed",
"metadata": {
"userId": "user_123",
"planId": "premium_monthly"
},
"completedAt": "2024-01-15T10:25:33Z"
}
}
Join merchants who save thousands on payment processing fees