eToro · Schema

CreatePriceAlertRequest

Request body for creating a new price alert

Social TradingCopy TradingInvestingMarket DataPortfolio ManagementFintechTradingStocksCryptocurrencyETFs

Properties

Name Type Description
symbol string Trading symbol to identify the instrument (e.g. AAPL, TSLA)
targetPrice number Target price at which the alert should trigger. Must be greater than 0.
View JSON Schema on GitHub

JSON Schema

CreatePriceAlertRequest.json Raw ↑
{
  "$schema": "http://json-schema.org/draft-07/schema#",
  "$id": "https://raw.githubusercontent.com/api-evangelist/etoro/refs/heads/main/json-schema/CreatePriceAlertRequest.json",
  "title": "CreatePriceAlertRequest",
  "type": "object",
  "description": "Request body for creating a new price alert",
  "required": [
    "symbol",
    "targetPrice"
  ],
  "properties": {
    "symbol": {
      "type": "string",
      "description": "Trading symbol to identify the instrument (e.g. AAPL, TSLA)",
      "example": "AAPL"
    },
    "targetPrice": {
      "type": "number",
      "format": "decimal",
      "description": "Target price at which the alert should trigger. Must be greater than 0.",
      "exclusiveMinimum": true,
      "example": 185.5,
      "minimum": 0
    }
  }
}