This API is in private preview. Target October 2026; timing is subject to change.
Returns the current equity a user has in each vault.
Available now. This read is served at the interim endpoint today.
POST /{apiKey}/info
| Parameter | Type | Required | Description |
|---|---|---|---|
type | string | Yes | Selects userVaultEquities. |
user | string | Yes | Master or sub-account address. |
{
"type": "userVaultEquities",
"user": "0x0000000000000000000000000000000000000000"
}| Field | Type | Description |
|---|---|---|
[] | array | Current equity positions across the user's vaults. |
[].vaultAddress | string | Onchain address that identifies the vault. |
[].equity | string | User's current vault equity as a decimal string. |
[
{
"vaultAddress": "0xdfc24b077bc1425ad1dea75bcb6f8158e10df303",
"equity": "742500.082809"
}
]