eToro · Example Payload

Getcandles Response 200

Social TradingCopy TradingInvestingMarket DataPortfolio ManagementFintechTradingStocksCryptocurrencyETFs

Getcandles 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

getCandles-response-200.json Raw ↑
{
  "path": "/api/v1/market-data/instruments/{instrumentId}/history/candles/{direction}/{interval}/{candlesCount}",
  "method": "get",
  "status": "200",
  "type": "response",
  "example": {
    "interval": "OneMinute",
    "candles": [
      {
        "instrumentId": 12,
        "candles": [
          {
            "instrumentID": 12,
            "fromDate": "2025-03-05T10:34:00Z",
            "open": 1.70227,
            "high": 1.70277,
            "low": 1.70221,
            "close": 1.70253,
            "volume": 0.0
          },
          {
            "instrumentID": 12,
            "fromDate": "2025-03-05T10:35:00Z",
            "open": 1.70252,
            "high": 1.70276,
            "low": 1.70244,
            "close": 1.70276,
            "volume": 0.0
          }
        ],
        "rangeOpen": 1.70227,
        "rangeClose": 1.70276,
        "rangeHigh": 1.70277,
        "rangeLow": 1.70221,
        "volume": 0.0
      }
    ]
  }
}