Trading 212 · Schema

MarketRequest

Trading 212 MarketRequest schema

InvestingFinanceTradingStocksPortfolioCommission-FreeISA

Properties

Name Type Description
extendedHours boolean
quantity number
ticker string
View JSON Schema on GitHub

JSON Schema

MarketRequest.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "https://raw.githubusercontent.com/api-evangelist/trading212/refs/heads/main/json-schema/MarketRequest.json",
  "title": "MarketRequest",
  "description": "Trading 212 MarketRequest schema",
  "properties": {
    "extendedHours": {
      "default": false,
      "example": true,
      "type": "boolean"
    },
    "quantity": {
      "example": 0.1,
      "type": "number"
    },
    "ticker": {
      "example": "AAPL_US_EQ",
      "type": "string"
    }
  },
  "type": "object"
}