List static wallets
Static WalletsAPI REFERENCE
List static wallets
GET
/v1/static-walletsList 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
| 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 static wallets 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 wallets, ordered per the request's order parameter. |
Response · JSON
{ "hasMore": false, "items": []}