Retrive Wallet Transactions by ID

GET /wallet/{id}/transactions

Get all transactions for wallet by ID.

Headers

Name
Value

Content-Type

application/json

X-API-KEY

<token>

Query params

Name
Type
Description

start_date

date, datetime

Start date for transactions

end_date

date, datetime

End date for transactions

Response

[
  {
    "id": 0,
    "source_type": "wallet",
    "source": {
      "id": 0,
      "label": "Order #123",
      "postback_url": null,
      "currency": "USDTBEP20",
      "address": "0x...",
      "created_at": "2025-06-20T15:22:10.345678Z",
      "expires_at": "2025-07-20T15:22:10.345678Z"
    },
    "currency": {
      "name": "USDTBEP20",
      "token": "USDT",
      "network": "BEP20",
      "contract": "0x55d398326f99059fF775485246999027B3197955",
      "decimals": 18,
      "confirmations": 5,
      "network_fee": 0,
      "min_deposit": 1
    },
    "amount": 0,
    "amount_usd": 0,
    "network_fee": 0,
    "network_fee_usd": 0,
    "service_fee": 0,
    "service_fee_usd": 0,
    "tx_hash": "0x...",
    "is_paid": true,
    "is_postback_sended": false,
    "created_at": "2025-06-20T17:22:10.345678Z"
  },
  ...
]

Example

curl -X GET "https://api.nord-pay.com/wallet/your-wallet-id/transactions" \
     -H "Content-Type: application/json" \
     -H "X-API-KEY: YOUR_API_KEY"
curl -X GET "https://api.nord-pay.com/wallet/your-wallet-id/transactions?start_date=2025-06-01&end_date=2025-06-10" \
     -H "Content-Type: application/json" \
     -H "X-API-KEY: YOUR_API_KEY"

Last updated