eToro · Schema

WebinarsResponse

Upcoming and past webinars

Social TradingCopy TradingInvestingMarket DataPortfolio ManagementFintechTradingStocksCryptocurrencyETFs

Properties

Name Type Description
upcomingWebinars array List of upcoming webinars the user can join
previousWebinars array List of past webinars with recordings
View JSON Schema on GitHub

JSON Schema

WebinarsResponse.json Raw ↑
{
  "$schema": "http://json-schema.org/draft-07/schema#",
  "$id": "https://raw.githubusercontent.com/api-evangelist/etoro/refs/heads/main/json-schema/WebinarsResponse.json",
  "title": "WebinarsResponse",
  "type": "object",
  "description": "Upcoming and past webinars",
  "properties": {
    "upcomingWebinars": {
      "type": "array",
      "description": "List of upcoming webinars the user can join",
      "items": {
        "$ref": "#/components/schemas/Webinar"
      }
    },
    "previousWebinars": {
      "type": "array",
      "description": "List of past webinars with recordings",
      "items": {
        "$ref": "#/components/schemas/Webinar"
      }
    }
  }
}