List of Wallets
List of Wallets
POST /users
Returns a list of all wallets belonging to your project.
You can filter wallets by type (master, transit) or get all at once.
Headers
Name
Value
Content-Type
application/json
Signature
Signed request body
Merchant
Merchant ID
Body
Name
Type
Required
Description
type
string
false
Filter by wallet type: "master", "transit". If omitted — returns all types.
Response
[
{
"uuid": "bd0a5c93-5e3e-4a06-b3aa-2edc53ea59b4",
"type": "master",
"address": "0x12f34a9b8c7e56d0b98bcd00123456789abcdeff",
"frozen": false,
"network": "ethereum",
"created_at": string, // ISO-8601 order creation date/time
}
]
{
"data": null,
"error": {
"status": 400,
"name": "BadRequestError",
"message": "Bad request, type not exist",
"details": {}
}
}Last updated