eToro · Schema

GetBalancesResponse

Aggregated balances for the authenticated user.

Social TradingCopy TradingInvestingMarket DataPortfolio ManagementFintechTradingStocksCryptocurrencyETFs

Properties

Name Type Description
gcid integer The user's global customer ID.
totalBalance number Sum of all account balances converted to the requested display currency.
displayCurrency string ISO 4217 currency code used for totalBalance and displayBalance values.
balances array Individual account balances.
View JSON Schema on GitHub

JSON Schema

GetBalancesResponse.json Raw ↑
{
  "$schema": "http://json-schema.org/draft-07/schema#",
  "$id": "https://raw.githubusercontent.com/api-evangelist/etoro/refs/heads/main/json-schema/GetBalancesResponse.json",
  "title": "GetBalancesResponse",
  "type": "object",
  "description": "Aggregated balances for the authenticated user.",
  "properties": {
    "gcid": {
      "type": "integer",
      "format": "int64",
      "description": "The user's global customer ID."
    },
    "totalBalance": {
      "type": "number",
      "format": "double",
      "description": "Sum of all account balances converted to the requested display currency."
    },
    "displayCurrency": {
      "type": "string",
      "nullable": true,
      "description": "ISO 4217 currency code used for totalBalance and displayBalance values."
    },
    "balances": {
      "type": "array",
      "items": {
        "$ref": "#/components/schemas/AccountBalanceData"
      },
      "nullable": true,
      "description": "Individual account balances."
    }
  },
  "additionalProperties": false
}