Developer Portal
Documentation
Integrate crypto payments in minutes with our simple API.
API Reference
Complete API documentation with all endpoints, parameters, and responses.
Webhooks
Secure event delivery with HMAC signature verification.
Quick Start
1
Get API Key
Navigate to Dashboard → Developers → API Keys
2
Create Invoice
POST /v1/invoices with amount and description
3
Redirect User
Send customer to the returned checkout_url
4
Receive Payment
Listen for payment.confirmed webhook event
Integration Example
Create Invoice
const response = await fetch('/api/v1/invoices', {
method: 'POST',
headers: {
'Authorization': 'Bearer wp_live_your_key',
'Content-Type': 'application/json'
},
body: JSON.stringify({
amount: 100.50,
currency: 'WIRE',
description: 'Order #12345'
})
});
const { checkout_url } = await response.json();
// Redirect user to checkout_urlNeed full API documentation?
Complete endpoint reference with all responses and error codes.