Fetch Withdrawals by Address

This endpoint retrieves the details of a specific Crypto withdrawal using the sender address

GET / crypto-withdrawals/address?{sender_address}

The response should include the following query parameters to filter :

sender_address

Headers

Name
Value

Token

<token>

Response

{
    "success": true,
    "message": "1 Withdrawal found for Sender 0x929b08b7a0042D99D342132e1c7280496BE47c45",
    "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