eToro · Schema

CuratedList

Represents a curated investment list

Social TradingCopy TradingInvestingMarket DataPortfolio ManagementFintechTradingStocksCryptocurrencyETFs

Properties

Name Type Description
uuid string Unique identifier of the curated list
name string Display name of the curated list
description string Description of the curated list
listImageUrl string URL of the list's image
items array Items in the curated list
View JSON Schema on GitHub

JSON Schema

CuratedList.json Raw ↑
{
  "$schema": "http://json-schema.org/draft-07/schema#",
  "$id": "https://raw.githubusercontent.com/api-evangelist/etoro/refs/heads/main/json-schema/CuratedList.json",
  "title": "CuratedList",
  "type": "object",
  "description": "Represents a curated investment list",
  "properties": {
    "uuid": {
      "type": "string",
      "description": "Unique identifier of the curated list",
      "example": "12345"
    },
    "name": {
      "type": "string",
      "description": "Display name of the curated list",
      "example": "Tech Watchlist"
    },
    "description": {
      "type": "string",
      "description": "Description of the curated list",
      "example": "A list of tech stocks"
    },
    "listImageUrl": {
      "type": "string",
      "description": "URL of the list's image",
      "example": "https://example.com/tech-watchlist.jpg"
    },
    "items": {
      "type": "array",
      "description": "Items in the curated list",
      "items": {
        "$ref": "#/components/schemas/CuratedListItem"
      },
      "example": [
        {
          "instrumentId": 12345
        }
      ]
    }
  }
}