POST /wallet/transactions
Returns the transactions that belong to a wallet you manage.
Request
Field | Type | Required | Notes |
---|---|---|---|
api_key | string | ✓ | Customer API key. |
wallet_id | string | ✓ | Accepts the 1151 wallet ID (w_<uuid> ) or on-chain address. |
Response
- Transactions are ordered newest to oldest.
- Each entry includes the same metadata returned from
POST /transaction/get
so you can search or filter by your own keys.
Errors
Status | Payload | When it happens |
---|---|---|
400 | { "error": "Missing required fields" } | api_key or wallet_id omitted. |
403 | { "error": "API key is not valid" } | API key fails validation. |
404 | { "error": "Wallet not found" } | Wallet does not belong to your account. |
500 | { "error": "<message>" } | Unexpected service error. |
SDK equivalents
- JavaScript:
client.getWalletTransactions({ walletId })
orwallet.transactions()
- Python:
client.get_wallet_transactions(wallet_id)
orwallet.transactions()