List static wallet deposits
Static WalletsAPI REFERENCE

List static wallet deposits

GET/v1/static-wallets/{staticWalletId}/deposits

Paginated 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

NameTypeRequiredDescription
staticWalletIdstringyesStatic wallet ID

Query Parameters

NameTypeRequiredDescription
ordernoSort order (asc/desc)
limitintegernoLimit (default 20, max 100)
lastIdstringnoLast ID for pagination

Response

NameTypeRequiredDescription
hasMorebooleannoTrue when more deposits exist beyond this page. To fetch the next page, pass the last item's id as the lastId query parameter.
itemsnoPage of static-wallet deposits, ordered per the request's order parameter.
Response · JSON
{
"hasMore": false,
"items": []
}