Get sub-user's balance
Get the balance for a sub-user.
The Market API will be discontinued, in Q3 2024 we will be sunsetting this product
Request Endpoint: reference
GET /users/{userId}/balance
Parameter | Param Type | Description | Data Type | Mandatory |
---|---|---|---|---|
{userId} | Path | The sub-user's ID | String | ✅ |
Example Request:
GET https://api.venly.market/users/8cf5f1a8-b3bb-4a81-9f1c-c1746d8eb59f/balance
Response Body:
{
"success": true,
"result": [
{
"currency": "USDC",
"balance": 10,
"lockedBalance": 0
}
]
}
Updated 6 months ago