Payments API

A developer-friendly API for processing payments securely and seamlessly.

View API Docs

Key Features

Secure

Military-grade encryption and PCI compliance for safe transaction processing.

Flexible

Support for multiple currencies, payment methods, and subscription models.

Fast

Instant processing and settlement times for quick fund availability.

How to Get Started

  1. 1
    Create an account and obtain your API keys.
  2. 2
    Use our RESTful API or SDKs to integrate payments.
  3. 3
    Process charges, manage subscriptions, and handle disputes.

API Example


// 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);
  });

API Endpoints

Charges

Create one-time payments via API calls.

POST /v1/charges

Subscriptions

Handle recurring payments and billing.

POST /v1/subscriptions

Webhooks

Receive real-time notifications for payment events.

POST YOUR_ENDPOINT

Ready to Start Integrating?

Get your API keys and start processing payments seamlessly.

Get Started