eToro · Schema

InstrumentSearchResponse

Social TradingCopy TradingInvestingMarket DataPortfolio ManagementFintechTradingStocksCryptocurrencyETFs

Properties

Name Type Description
page integer The current page number.
pageSize integer The number of items per page.
totalItems integer The total number of instruments matching the search criteria.
items array
View JSON Schema on GitHub

JSON Schema

InstrumentSearchResponse.json Raw ↑
{
  "$schema": "http://json-schema.org/draft-07/schema#",
  "$id": "https://raw.githubusercontent.com/api-evangelist/etoro/refs/heads/main/json-schema/InstrumentSearchResponse.json",
  "title": "InstrumentSearchResponse",
  "type": "object",
  "properties": {
    "page": {
      "type": "integer",
      "description": "The current page number."
    },
    "pageSize": {
      "type": "integer",
      "description": "The number of items per page."
    },
    "totalItems": {
      "type": "integer",
      "description": "The total number of instruments matching the search criteria."
    },
    "items": {
      "type": "array",
      "items": {
        "$ref": "#/components/schemas/Instrument"
      }
    }
  }
}