paradex_vault_balance
Retrieve detailed balance information for a specific vault, including available, locked, and total funds, to assess financial status before trades or withdrawals on the Paradex platform.
Instructions
Get the current balance of a specific vault.
Retrieves the current balance information for a specific vault, including available funds, locked funds, and total balance. This is essential for understanding the financial state of a vault before executing trades or withdrawals.
Input Schema
| Name | Required | Description | Default | 
|---|---|---|---|
| vault_address | Yes | The address of the vault to get balance for. | 
Input Schema (JSON Schema)
{
  "properties": {
    "vault_address": {
      "description": "The address of the vault to get balance for.",
      "title": "Vault Address",
      "type": "string"
    }
  },
  "required": [
    "vault_address"
  ],
  "title": "get_vault_balanceArguments",
  "type": "object"
}