eToro · Schema

ClubDashboardDataResponse

Club dashboard data for a user

Social TradingCopy TradingInvestingMarket DataPortfolio ManagementFintechTradingStocksCryptocurrencyETFs

Properties

Name Type Description
clubs array List of club tiers with equity thresholds
contacts object Account manager contact information for eligible users
downgradeRisk object Club tier downgrade risk assessment
offers object Club benefit offers categorized by tier availability
webinars object Upcoming and past club webinars
View JSON Schema on GitHub

JSON Schema

ClubDashboardDataResponse.json Raw ↑
{
  "$schema": "http://json-schema.org/draft-07/schema#",
  "$id": "https://raw.githubusercontent.com/api-evangelist/etoro/refs/heads/main/json-schema/ClubDashboardDataResponse.json",
  "title": "ClubDashboardDataResponse",
  "type": "object",
  "description": "Club dashboard data for a user",
  "properties": {
    "clubs": {
      "type": "array",
      "description": "List of club tiers with equity thresholds",
      "items": {
        "$ref": "#/components/schemas/ClubInfo"
      }
    },
    "contacts": {
      "description": "Account manager contact information for eligible users",
      "$ref": "#/components/schemas/ContactsResponse"
    },
    "downgradeRisk": {
      "description": "Club tier downgrade risk assessment",
      "$ref": "#/components/schemas/DowngradeRiskResponse"
    },
    "offers": {
      "description": "Club benefit offers categorized by tier availability",
      "$ref": "#/components/schemas/UserOffersData"
    },
    "webinars": {
      "description": "Upcoming and past club webinars",
      "$ref": "#/components/schemas/WebinarsResponse"
    }
  }
}