List static wallets
Static WalletsAPI REFERENCE

List static wallets

GET/v1/static-wallets

List the project's static wallets, newest first. Paginated via limit and lastId.

Example request

A minimal request you can copy and run.

curl https://api.suward.com/v1/static-wallets \
-H "X-Api-Key: $SUWARD_API_KEY"

Query Parameters

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

Response

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