Get a list of transactions
Last updated
Last updated
Getting a list of orphan transactions with the ability to filter by certain criteria
Public API-key
Signing the request body with a private API-key
Request content type
application/json
Transaction ID in the system
23851d1e-f304-4c90-ac0d-ec5387136185
The ID of the order to which the address was linked at the time of the transaction discovery
af9e4cff-b389-464c-96ae-ee3b8008da18
The current stage of the transaction. There are 2 values available: DEPOSIT
and WITHDRAWAL
DEPOSIT
Possible values: Status of the current stage of the transaction
PROCESSED
Possible values: Offset (for pagination)
Limit (for pagination)
POST /api-gateway/orphan-deposits/get-deposits HTTP/1.1
Host: app.apollopayment.io
Content-Type: application/json
Accept: */*
Content-Length: 154
{
"id": "23851d1e-f304-4c90-ac0d-ec5387136185",
"orderId": "af9e4cff-b389-464c-96ae-ee3b8008da18",
"stage": "DEPOSIT",
"status": "PROCESSED",
"offset": 1,
"limit": 1
}
{
"success": true,
"response": [
{
"id": "876d7547-9643-4d92-b503-5d40d29ad897",
"organizationId": "a68fa430-705f-4626-9da6-a6f6217d88db",
"orderId": "81b47dd6-b0b8-4f05-bcf8-ed58049aec5b",
"stage": "WITHDRAWAL",
"status": "PENDING",
"message": null,
"currency": "BUSD",
"network": "bsc",
"amount": "200",
"canWithdrawal": true,
"inTransaction": {
"addressType": "PAY_IN",
"addressId": "c4179377-b199-455b-ab08-16c517bb3f1b",
"address": "0x00000005707Bf50EfA35a2db020eDe9Ac0780b9f",
"txId": "0x123456...",
"amount": "200",
"status": "processed"
},
"outTransactions": {
"address": "0x00000005707Bf50EfA35a2db020eDe9Ac0780b9f",
"txId": "0x123456...",
"amount": "200",
"status": "processed",
"feeAmount": "1.2",
"feeAmountUSD": "1.22",
"withdrawalId": "12e664e4-ad4c-4353-b7c8-68e1c176b766",
"createdAt": "2025-06-10T13:18:29.425Z"
},
"createdAt": "2025-06-09T13:18:29.426Z"
}
]
}