eToro · Schema

MarketRecommendationsResponse

Response containing market recommendations

Social TradingCopy TradingInvestingMarket DataPortfolio ManagementFintechTradingStocksCryptocurrencyETFs

Properties

Name Type Description
ResponseType string Type of recommendation response
Recommendations array List of recommended instrument IDs
View JSON Schema on GitHub

JSON Schema

MarketRecommendationsResponse.json Raw ↑
{
  "$schema": "http://json-schema.org/draft-07/schema#",
  "$id": "https://raw.githubusercontent.com/api-evangelist/etoro/refs/heads/main/json-schema/MarketRecommendationsResponse.json",
  "title": "MarketRecommendationsResponse",
  "type": "object",
  "description": "Response containing market recommendations",
  "properties": {
    "ResponseType": {
      "type": "string",
      "description": "Type of recommendation response",
      "example": "Instrument"
    },
    "Recommendations": {
      "type": "array",
      "description": "List of recommended instrument IDs",
      "items": {
        "type": "integer",
        "format": "int32"
      },
      "example": [
        12345,
        67890
      ]
    }
  }
}