Stablecoins Payment

Capture a stablecoin payment.

Capture

POST /payment-sessions/{payment_id}
request param
description
type

chain

The blockchain network for the chosen crypto currency stablecoin. e.g TRX, ETH, SOL, XLM

String

currency

currency to receive. options are USDC, BUSD, USDT

String

Currently Supported Stable coins payments

Currency
Supported Chains

USDC

ETH, MATIC, AVAXC

USDT

ETH, TRX, TRX

Sample Request

{"crypto_address": {
		"chain": "",
		"currency": "USDC | USDT | BUSD"
	}
}

Sample Response

{
    "data": {
        "status": "captured",
        "message": "",
        "payment": {
            "id": ,
            "currency": ,
            "amount": ,
            "description": ,
            "payment_method": {
                "address": "TAd3A1MPNb3xhWrCpmi9x7UdqtwigWcdea",
                "chain": "TRX",
                "currency": "USDT",
                "id": "f1ce6d0f-b30b-4c53-810d-77584f2a36fb",
                "type": "crypto_address"
            },
            "status": "captured",
            "date": ,
            "mode": ,
            "customer": {
                "first_name": ,
                "last_name": ,
                "email": ,
                "billing_address": {
                    "line1": ,
                    "line2": ,
                    "city": ,
                    "state": ,
                    "zip_code": ,
                    "country": ,
                }
            },
            "reference": ,
            "metadata": {}
        }
    }
}

Last updated