Trading 212 · Schema

Instrument

Instrument information as given by /instruments endpoint.

InvestingFinanceTradingStocksPortfolioCommission-FreeISA

Properties

Name Type Description
currency string Instrument currency in ISO 4217 format.
isin string ISIN of the instrument.
name string Name of the instrument.
ticker string Unique instrument identifier.
View JSON Schema on GitHub

JSON Schema

Instrument.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "https://raw.githubusercontent.com/api-evangelist/trading212/refs/heads/main/json-schema/Instrument.json",
  "title": "Instrument",
  "description": "Instrument information as given by /instruments endpoint.",
  "properties": {
    "currency": {
      "description": "Instrument currency in ISO 4217 format.",
      "type": "string"
    },
    "isin": {
      "description": "ISIN of the instrument.",
      "type": "string"
    },
    "name": {
      "description": "Name of the instrument.",
      "type": "string"
    },
    "ticker": {
      "description": "Unique instrument identifier.",
      "example": "AAPL_US_EQ",
      "type": "string"
    }
  },
  "type": "object"
}