List static wallet deposits
Static WalletsAPI REFERENCE
List static wallet deposits
GET
/v1/static-wallets/{staticWalletId}/depositsPaginated list of the deposits received by a static wallet, newest first.
Example request
A minimal request you can copy and run.
curl https://api.suward.com/v1/static-wallets/<static_wallet_id>/deposits \ -H "X-Api-Key: $SUWARD_API_KEY"Path Parameters
| Name | Type | Required | Description |
|---|---|---|---|
| staticWalletId | string | yes | Static wallet ID |
Query Parameters
| Name | Type | Required | Description |
|---|---|---|---|
| order | no | Sort order (asc/desc) | |
| limit | integer | no | Limit (default 20, max 100) |
| lastId | string | no | Last ID for pagination |
Response
| Name | Type | Required | Description |
|---|---|---|---|
| hasMore | boolean | no | True when more deposits exist beyond this page. To fetch the next page, pass the last item's id as the lastId query parameter. |
| items | no | Page of static-wallet deposits, ordered per the request's order parameter. |
Response · JSON
{ "hasMore": false, "items": []}