A developer-friendly API for processing payments securely and seamlessly.
View API DocsMilitary-grade encryption and PCI compliance for safe transaction processing.
Support for multiple currencies, payment methods, and subscription models.
Instant processing and settlement times for quick fund availability.
// Create a charge
fetch('https://api.egeblog.com/charges', {
method: 'POST',
headers: {
'Authorization': 'Bearer YOUR_SECRET_KEY',
'Content-Type': 'application/json'
},
body: JSON.stringify({
amount: 2000,
currency: 'USD',
source: 'tok_123456',
description: 'Example transaction'
})
})
.then(res => res.json())
.then(data(data => {
console.log(data);
});
Create one-time payments via API calls.
POST /v1/charges
Handle recurring payments and billing.
POST /v1/subscriptions
Receive real-time notifications for payment events.
POST YOUR_ENDPOINT