eToro · Schema

PaginationCursor

Social TradingCopy TradingInvestingMarket DataPortfolio ManagementFintechTradingStocksCryptocurrencyETFs

Properties

Name Type Description
pageSize integer
nextPageToken string
hasNext boolean
View JSON Schema on GitHub

JSON Schema

PaginationCursor.json Raw ↑
{
  "$schema": "http://json-schema.org/draft-07/schema#",
  "$id": "https://raw.githubusercontent.com/api-evangelist/etoro/refs/heads/main/json-schema/PaginationCursor.json",
  "title": "PaginationCursor",
  "type": "object",
  "required": [
    "pageSize",
    "hasNext"
  ],
  "properties": {
    "pageSize": {
      "type": "integer"
    },
    "nextPageToken": {
      "type": "string",
      "nullable": true
    },
    "hasNext": {
      "type": "boolean"
    }
  }
}