eToro · Schema

CopiersCurrentResponse

Current copiers snapshot and AUM tier for portfolio display.

Social TradingCopy TradingInvestingMarket DataPortfolio ManagementFintechTradingStocksCryptocurrencyETFs

Properties

Name Type Description
copiers integer Current number of copiers.
aumTier integer Assets-under-management tier level.
aumTierDesc string Human-readable AUM tier label; null when not provided upstream.
View JSON Schema on GitHub

JSON Schema

CopiersCurrentResponse.json Raw ↑
{
  "$schema": "http://json-schema.org/draft-07/schema#",
  "$id": "https://raw.githubusercontent.com/api-evangelist/etoro/refs/heads/main/json-schema/CopiersCurrentResponse.json",
  "title": "CopiersCurrentResponse",
  "type": "object",
  "description": "Current copiers snapshot and AUM tier for portfolio display.",
  "required": [
    "copiers",
    "aumTier"
  ],
  "properties": {
    "copiers": {
      "type": "integer",
      "format": "int32",
      "minimum": 0,
      "description": "Current number of copiers."
    },
    "aumTier": {
      "type": "integer",
      "format": "int32",
      "minimum": 0,
      "description": "Assets-under-management tier level."
    },
    "aumTierDesc": {
      "type": "string",
      "nullable": true,
      "description": "Human-readable AUM tier label; null when not provided upstream."
    }
  }
}