Payment Processing for the AI Era

Production-ready payment API with Coinflow integration. Built for AI assistants, designed for developers.

24+

API Endpoints

7

Currencies

99.9%

Uptime

Everything You Need

🔐

Secure Authentication

JWT-based authentication with refresh tokens and API key generation

💳

Payment Processing

Accept crypto and fiat payments via Coinflow integration

💰

Balance Management

Real-time balance tracking and payout management

📊

Transaction History

Complete transaction tracking with advanced filtering

KYC Verification

Built-in KYC workflow for compliance

🤖

AI-Ready

Optimized for Claude, ChatGPT, and Gemini

Multi-Currency Support

💵 USD
💶 EUR
💷 GBP
₿ Bitcoin
Ξ Ethereum
💎 USDC
💲 USDT

Simple to Integrate

Create a Payment
// 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!

Ready to Get Started?

Join hundreds of businesses using Hedge Payments

Create Free Account