eToro · Example Payload

Getassetshistory Response 200

Social TradingCopy TradingInvestingMarket DataPortfolio ManagementFintechTradingStocksCryptocurrencyETFs

Getassetshistory Response 200 is an example object payload from eToro, with 5 top-level fields. It illustrates the shape of data this provider's APIs accept or return.

Top-level fields

pathmethodstatustypeexample

Example Payload

getAssetsHistory-response-200.json Raw ↑
{
  "path": "/api/v2/portfolios/{username}/assets/history",
  "method": "get",
  "status": "200",
  "type": "response",
  "example": {
    "userName": "john.smith",
    "results": [
      {
        "date": "2024-01-31",
        "cashPct": 0.28,
        "cashOfTotalEquityPct": 0.24,
        "assets": [
          {
            "instrumentId": 1001,
            "symbol": "AAPL",
            "investedPct": 0.45,
            "valuePct": 0.51
          }
        ]
      }
    ]
  }
}