eToro · Schema

AssetsHistoryAsset

Social TradingCopy TradingInvestingMarket DataPortfolio ManagementFintechTradingStocksCryptocurrencyETFs

Properties

Name Type Description
instrumentId integer
symbol string Trading symbol for this instrument (e.g. AAPL, TSLA)
investedPct number Amount invested in this instrument as a ratio of realized equity. Decimal fraction: 0.5 = 50%.
valuePct number Current value of this instrument as a ratio of total equity. Decimal fraction: 0.5 = 50%.
View JSON Schema on GitHub

JSON Schema

AssetsHistoryAsset.json Raw ↑
{
  "$schema": "http://json-schema.org/draft-07/schema#",
  "$id": "https://raw.githubusercontent.com/api-evangelist/etoro/refs/heads/main/json-schema/AssetsHistoryAsset.json",
  "title": "AssetsHistoryAsset",
  "type": "object",
  "required": [
    "instrumentId",
    "symbol",
    "investedPct",
    "valuePct"
  ],
  "properties": {
    "instrumentId": {
      "type": "integer"
    },
    "symbol": {
      "type": "string",
      "description": "Trading symbol for this instrument (e.g. AAPL, TSLA)"
    },
    "investedPct": {
      "type": "number",
      "description": "Amount invested in this instrument as a ratio of realized equity. Decimal fraction: 0.5 = 50%."
    },
    "valuePct": {
      "type": "number",
      "description": "Current value of this instrument as a ratio of total equity. Decimal fraction: 0.5 = 50%."
    }
  }
}