eToro · Schema

ExposureHistoryResponse

Social TradingCopy TradingInvestingMarket DataPortfolio ManagementFintechTradingStocksCryptocurrencyETFs

Properties

Name Type Description
userName string
results array Daily snapshots ordered ascending by date.
View JSON Schema on GitHub

JSON Schema

ExposureHistoryResponse.json Raw ↑
{
  "$schema": "http://json-schema.org/draft-07/schema#",
  "$id": "https://raw.githubusercontent.com/api-evangelist/etoro/refs/heads/main/json-schema/ExposureHistoryResponse.json",
  "title": "ExposureHistoryResponse",
  "type": "object",
  "required": [
    "userName",
    "results"
  ],
  "properties": {
    "userName": {
      "type": "string"
    },
    "results": {
      "type": "array",
      "description": "Daily snapshots ordered ascending by date.",
      "items": {
        "$ref": "#/components/schemas/ExposureHistoryEntry"
      }
    }
  }
}