Get a list of transactions

Getting a list of orphan transactions with the ability to filter by certain criteria

Get a list of transactions

post
Header parameters
x-api-public-keystringOptional

Public API-key

x-api-signaturestringOptional

Signing the request body with a private API-key

Content-typestringOptional

Request content type

Example: application/json
Body
idstringOptional

Transaction ID in the system

Example: 23851d1e-f304-4c90-ac0d-ec5387136185
orderIdstring | nullOptional

The ID of the order to which the address was linked at the time of the transaction discovery

Example: af9e4cff-b389-464c-96ae-ee3b8008da18
stagestring · enumOptional

The current stage of the transaction. There are 2 values available: DEPOSIT and WITHDRAWAL

Example: DEPOSITPossible values:
statusstring · enumOptional

Status of the current stage of the transaction

Example: PROCESSEDPossible values:
offsetintegerOptional

Offset (for pagination)

limitintegerOptional

Limit (for pagination)

Responses
200Success
application/json
post
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
}
200Success
{
  "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"
    }
  ]
}

Last updated