Get all transactions

Returns all Onramp transactions

This endpoint will return all the onramp transactions

Get all Onramp transactions

POST https://integration.coinmena.com/onramp-bank/api/v1/onramp/allTransaction

Request Body

NameTypeDescription

pageSize*

String

Number of Transactions per page. Should be greater than 0 and less than 500

page*

String

Current page Number

Should be greater than 0

{
    "status": 1,
    "code": 200,
    "data": [
        {
            "transactionId": "635",
            "createdAt": "2023-12-08T00:31:45.000Z",
            "updatedAt": "2023-12-08T00:31:44.000Z",
            "fromAmount": "700",
            "toAmount": "18.32",
            "fromCurrency": "AED",
            "toCurrency": "usdc",
            "chain": "matic20",
            "paymentMethodType": "",
            "depositAddress": "0x2EAf174Bf1CD624eD63e3C8c74Dd66B66e5cb273",
            "status": "12",
            "transactionHash": null
        }
}

{
    "status": 1,
    "code": 200,
    "data": [
        {
            "transactionId": "635",
            "createdAt": "2023-12-08T00:31:45.000Z",
            "updatedAt": "2023-12-08T00:31:44.000Z",
            "fromAmount": "700",
            "toAmount": "18.32",
            "fromCurrency": "AED",
            "toCurrency": "usdc",
            "chain": "matic20",
            "paymentMethodType": "",
            "depositAddress": "0x2EAf174Bf1CD624eD63e3C8c74Dd66B66e5cb273",
            "status": "12",
            "transactionHash": null
        }
}

Last updated