eToro · Schema
EquityDetailsData
Provider-specific balance details, returned only when the request includes expand=equityDetails. All fields are nullable; only fields relevant to the account's provider are populated. Trading accounts populate available/frozenCash/currentPNL/totalUsedMargin; Crypto accounts populate cryptoId, the balance variants, fiatConversionCurrency, and orderIndex.
Social TradingCopy TradingInvestingMarket DataPortfolio ManagementFintechTradingStocksCryptocurrencyETFs
Properties
| Name | Type | Description |
|---|---|---|
| available | number | Available balance or buying power (Trading, Options, MoneyFarm, Cash). |
| frozenCash | number | Cash frozen by the platform pending settlement (Trading). |
| currentPNL | number | Current unrealized profit and loss on open positions (Trading). |
| totalUsedMargin | number | Total margin used by open positions (Trading). |
| cryptoId | integer | eToro internal crypto asset identifier (Crypto). |
| balance | number | Balance in native crypto units (Crypto). |
| totalBalance | number | Total balance in native crypto units, including pending (Crypto). |
| spendableBalance | number | Spendable balance in native crypto units (Crypto). |
| balanceInFiat | number | Balance converted to fiat (Crypto). |
| totalBalanceInFiat | number | Total balance converted to fiat, including pending (Crypto). |
| spendableBalanceInFiat | number | Spendable balance converted to fiat (Crypto). |
| fiatConversionCurrency | string | ISO 4217 currency code used for the InFiat values (Crypto). |
| orderIndex | integer | Display order index for sorting (Crypto). |
JSON Schema
{
"$schema": "http://json-schema.org/draft-07/schema#",
"$id": "https://raw.githubusercontent.com/api-evangelist/etoro/refs/heads/main/json-schema/EquityDetailsData.json",
"title": "EquityDetailsData",
"type": "object",
"description": "Provider-specific balance details, returned only when the request includes expand=equityDetails. All fields are nullable; only fields relevant to the account's provider are populated. Trading accounts populate available/frozenCash/currentPNL/totalUsedMargin; Crypto accounts populate cryptoId, the balance variants, fiatConversionCurrency, and orderIndex.",
"properties": {
"available": {
"type": "number",
"format": "double",
"nullable": true,
"description": "Available balance or buying power (Trading, Options, MoneyFarm, Cash)."
},
"frozenCash": {
"type": "number",
"format": "double",
"nullable": true,
"description": "Cash frozen by the platform pending settlement (Trading)."
},
"currentPNL": {
"type": "number",
"format": "double",
"nullable": true,
"description": "Current unrealized profit and loss on open positions (Trading)."
},
"totalUsedMargin": {
"type": "number",
"format": "double",
"nullable": true,
"description": "Total margin used by open positions (Trading)."
},
"cryptoId": {
"type": "integer",
"format": "int32",
"nullable": true,
"description": "eToro internal crypto asset identifier (Crypto)."
},
"balance": {
"type": "number",
"format": "double",
"nullable": true,
"description": "Balance in native crypto units (Crypto)."
},
"totalBalance": {
"type": "number",
"format": "double",
"nullable": true,
"description": "Total balance in native crypto units, including pending (Crypto)."
},
"spendableBalance": {
"type": "number",
"format": "double",
"nullable": true,
"description": "Spendable balance in native crypto units (Crypto)."
},
"balanceInFiat": {
"type": "number",
"format": "double",
"nullable": true,
"description": "Balance converted to fiat (Crypto)."
},
"totalBalanceInFiat": {
"type": "number",
"format": "double",
"nullable": true,
"description": "Total balance converted to fiat, including pending (Crypto)."
},
"spendableBalanceInFiat": {
"type": "number",
"format": "double",
"nullable": true,
"description": "Spendable balance converted to fiat (Crypto)."
},
"fiatConversionCurrency": {
"type": "string",
"nullable": true,
"description": "ISO 4217 currency code used for the InFiat values (Crypto)."
},
"orderIndex": {
"type": "integer",
"format": "int32",
"nullable": true,
"description": "Display order index for sorting (Crypto)."
}
},
"additionalProperties": false
}