EQGate

Introduction

EQGate - Accept crypto payments with instant forwarding

EQGate

EQGate is a crypto payment gateway that allows you to accept USDT payments on TRON and BSC networks with automatic forwarding to your wallet.

Features

  • Low Fees - Only 0.5% fee (minimum $1)
  • Instant Forwarding - Funds automatically swept to your wallet
  • Multi-Chain Support - TRON (TRC20) and BSC (BEP20)
  • CryptAPI Compatible - Easy migration from existing integrations
  • Webhook Callbacks - Real-time payment notifications
  • No Minimum Deposit - Accept any amount

Supported Tokens

ChainTokenContract
TRONUSDTTRC20
TRONUSDCTRC20
BSCUSDTBEP20
BSCUSDCBEP20

How It Works

  1. Create Address - Generate a unique deposit address for each payment
  2. Customer Pays - Customer sends crypto to the generated address
  3. Auto-Sweep - Funds are automatically forwarded to your wallet
  4. Webhook - Your server receives a callback with transaction details

Quick Example

curl -X POST "https://api.eqgate.com/v1/tron/usdt/create" \
  -H "X-API-Key: your_api_key" \
  -H "Content-Type: application/json" \
  -d '{
    "callback_url": "https://your-site.com/webhook",
    "expected_amount": 100
  }'

Response:

{
  "status": "success",
  "address_in": "TXabc123...",
  "address_out": "TYdef456...",
  "chain": "TRON",
  "token": "USDT",
  "fee_percent": 0.5,
  "min_fee": 1
}

On this page