eToro · Schema
ExposureItem
Social TradingCopy TradingInvestingMarket DataPortfolio ManagementFintechTradingStocksCryptocurrencyETFs
Properties
| Name | Type | Description |
|---|---|---|
| instrumentId | integer | |
| symbol | string | Trading symbol for this instrument (e.g. AAPL, TSLA) |
| netExposurePct | number | Net exposure for this instrument as a ratio of total equity. Signed - positive = long, negative = short. Decimal fraction: 0.5 = 50%. |
| absExposurePct | number | Absolute exposure for this instrument as a ratio of total equity. Always positive. Decimal fraction: 0.5 = 50%. |
JSON Schema
{
"$schema": "http://json-schema.org/draft-07/schema#",
"$id": "https://raw.githubusercontent.com/api-evangelist/etoro/refs/heads/main/json-schema/ExposureItem.json",
"title": "ExposureItem",
"type": "object",
"required": [
"instrumentId",
"symbol",
"netExposurePct",
"absExposurePct"
],
"properties": {
"instrumentId": {
"type": "integer"
},
"symbol": {
"type": "string",
"description": "Trading symbol for this instrument (e.g. AAPL, TSLA)"
},
"netExposurePct": {
"type": "number",
"description": "Net exposure for this instrument as a ratio of total equity. Signed - positive = long, negative = short. Decimal fraction: 0.5 = 50%."
},
"absExposurePct": {
"type": "number",
"description": "Absolute exposure for this instrument as a ratio of total equity. Always positive. Decimal fraction: 0.5 = 50%."
}
}
}