eToro · Schema

OfferInBundle

An offer included in a bundle

Social TradingCopy TradingInvestingMarket DataPortfolio ManagementFintechTradingStocksCryptocurrencyETFs

Properties

Name Type Description
type string Bundle offer type
offerLimit integer Maximum number of offers in this bundle
View JSON Schema on GitHub

JSON Schema

OfferInBundle.json Raw ↑
{
  "$schema": "http://json-schema.org/draft-07/schema#",
  "$id": "https://raw.githubusercontent.com/api-evangelist/etoro/refs/heads/main/json-schema/OfferInBundle.json",
  "title": "OfferInBundle",
  "type": "object",
  "description": "An offer included in a bundle",
  "properties": {
    "type": {
      "type": "string",
      "enum": [
        "Entertainment",
        "Gifts",
        "News",
        "Signals",
        "Tools",
        "Exclusive events",
        "Tickets",
        "Zoom meetings",
        "Educational",
        "Services",
        "Association Membership",
        "Financial",
        "Travel",
        "Gift card",
        "Client meetup",
        "Emotional",
        "Bundle"
      ],
      "description": "Bundle offer type",
      "example": "Services"
    },
    "offerLimit": {
      "type": "integer",
      "description": "Maximum number of offers in this bundle",
      "example": 3
    }
  }
}