Fetch Crypto Deposits by Address

This endpoint retrieves the Crypto deposits of a specific Address.

GET / crypto-deposits/address?{crypto_address}

The response should include the following query parameters to filter :

crypto_address

Headers

Name
Value

Token

<token>

Response

{
    "success": true,
    "status_code": 200,
    "message": "1 Crypto Deposits found for Address 0x05CdB1526F6e224e02919a4C018D9784Ea25eb3d",
    "data": [
        {
            "currency_code": "USDT",
            "transaction_code": "FCWXWB2BO0",
            "amount": 10,
            "crypto_address": "0x05CdB1526F6e224e02919a4C018D9784Ea25eb3d",
            "depositor_address": "0x929b08b7a0042D99D342132e1c7280496BE47c45",
            "hash": "0x96903fa2b1566b97cd2db81ffb83cd31410bf108fc985f135a3274386def8028",
            "transaction_status": "Successful"
        },
    ]
}

Last updated