GET
/api/v2/users/{userId}/walletsList crypto wallets for a user. Passing `userId = 0` returns master account wallets for the authenticated company.
Authentication
Send your API key in the x-api-key header on every request.
Parameters
| Field | Type | Required | Description |
|---|---|---|---|
| userId (path) | unknown | Yes | User ID (use 0 for master account) |
| id (query) | string | No | Optional wallet ID filter |
| nickname (query) | string | No | Optional wallet nickname filter |
| currency (query) | string | No | Optional currency filter |
| master (query) | boolean | No | Optional master wallet filter |
| referenceId (query) | string | No | Optional reference ID filter |
| limit (query) | unknown | No | Number of results per page (default: 10, max: 100) |
| page (query) | unknown | No | Page number (default: 1) |
Responses
200 — OK
| Field | Type | Required | Description |
|---|---|---|---|
| code | string | No | |
| message | string | No | |
| data | object | No |
400 — Bad Request
| Field | Type | Required | Description |
|---|---|---|---|
| Message | string | No | |
| Code | string | No | |
| Status | unknown | No | |
| ValidationErrors | object | No | |
| Details | string | No |
404 — Not Found
| Field | Type | Required | Description |
|---|---|---|---|
| Message | string | No | |
| Code | string | No | |
| Status | unknown | No | |
| ValidationErrors | object | No | |
| Details | string | No |
500 — Internal Server Error
| Field | Type | Required | Description |
|---|---|---|---|
| Message | string | No | |
| Code | string | No | |
| Status | unknown | No | |
| ValidationErrors | object | No | |
| Details | string | No |
Example request
curl -X GET "https://{base_url}/api/v2/users/{userId}/wallets" \
-H "x-api-key: YOUR_API_KEY"This page is generated from the live OpenAPI specification and always matches the current API.