Fetch Crypto Withdrawals

This endpoint retrieves Crypto withdrawals of a specific user .

GET / crypto-withdrawals

The response should include the following query parameters to filter :

currency, status, date_from, date_to

Headers

Name
Value

Token

<token>

Response

{
    "success": true,
    "message": "Crypto withdrawals fetched successfully",
    "status_code": 200,
    "data": [
        {
 
            "sending_address": "0x929b08b7a0042D99D342132e1c7280496BE47c45",
            "receiving_address": "0x3089A1832Dbed44EBF7A21ab65a5C835671Cbb34",
            "network": "Ethereum",
            "hash":"0xaebb2d18ccff005e5b0e5407d40d4d58cfdbdb5ed33071a0957c000fa358065f",
            "merchant_reference":"qwerty124",
            "currency_code": "USDC",
            "amount" :10,
            "transaction_code": "FC1UCM3CWT",
            "transaction_charge": 0,
            "transaction_status": "Successful"
        }
    ]
}

Last updated