eToro · Schema

GetOrderInfoAsset

Asset information associated with the order.

Social TradingCopy TradingInvestingMarket DataPortfolio ManagementFintechTradingStocksCryptocurrencyETFs

Properties

Name Type Description
symbol string The asset ticker symbol.
instrumentId integer The eToro instrument identifier.
currency string The asset's base currency.
settlementType string Settlement type. Possible values: cfd, real, realFutures, marginTrade.
leverage integer The leverage applied to the order.
side string The position side. Possible values: long, short.
View JSON Schema on GitHub

JSON Schema

GetOrderInfoAsset.json Raw ↑
{
  "$schema": "http://json-schema.org/draft-07/schema#",
  "$id": "https://raw.githubusercontent.com/api-evangelist/etoro/refs/heads/main/json-schema/GetOrderInfoAsset.json",
  "title": "GetOrderInfoAsset",
  "type": "object",
  "description": "Asset information associated with the order.",
  "properties": {
    "symbol": {
      "type": "string",
      "description": "The asset ticker symbol."
    },
    "instrumentId": {
      "type": "integer",
      "format": "int32",
      "description": "The eToro instrument identifier."
    },
    "currency": {
      "type": "string",
      "description": "The asset's base currency."
    },
    "settlementType": {
      "type": "string",
      "description": "Settlement type. Possible values: cfd, real, realFutures, marginTrade."
    },
    "leverage": {
      "type": "integer",
      "format": "int32",
      "description": "The leverage applied to the order."
    },
    "side": {
      "type": "string",
      "description": "The position side. Possible values: long, short."
    }
  }
}