Production-ready payment API with Coinflow integration. Built for AI assistants, designed for developers.
API Endpoints
Currencies
Uptime
JWT-based authentication with refresh tokens and API key generation
Accept crypto and fiat payments via Coinflow integration
Real-time balance tracking and payout management
Complete transaction tracking with advanced filtering
Built-in KYC workflow for compliance
Optimized for Claude, ChatGPT, and Gemini
// 1. Authenticate
const response = await fetch('https://hedge-payments-api.onrender.com/api/auth/login', {
method: 'POST',
headers: { 'Content-Type': 'application/json' },
body: JSON.stringify({
email: 'your@email.com',
password: 'your-password',
merchantId: 'your-merchant-id'
})
});
const { token } = await response.json();
// 2. Create Payment
const payment = await fetch('https://hedge-payments-api.onrender.com/api/payments', {
method: 'POST',
headers: {
'Authorization': `Bearer ${token}`,
'Content-Type': 'application/json'
},
body: JSON.stringify({
amount: 100.00,
currency: 'USD',
customerEmail: 'customer@example.com',
description: 'Product purchase'
})
});
const result = await payment.json();
console.log(result); // Payment created!