Symbol Information

GET /data/symbol-info

Symbol Information

Responds with a list of symbols and their information, such as descriptions and photos.

Query parameters

  • code string Required

    comma seperated list of symbols

Responses

  • Ok

    Hide response attributes Show response attributes array[object]
    • blurb string | null
    • code string Required
    • currency string Required

      Values are ARS, AUD, BWP, BRL, CAD, CNH, CNY, COP, CZK, DKK, DOP, EGP, EUR, GBP, HKD, HUF, IDR, INR, ISK, JPY, KZT, LTL, LUF, MXN, MYR, TWD, NZD, NOK, PEN, PLN, KRW, RON, RUB, SGD, SKK, SIT, ZAR, SEK, CHF, THB, TRY, USD, UYU, or VND.

    • issuerId string(uuid) | null
    • issuerName string | null
    • name string Required
    • nav number(double) | null
    • symbolStatus string Required

      Values are Open, Halted, or PreListed.

GET /data/symbol-info
curl \
 -X GET http://api.example.com/data/symbol-info?code=string
Response examples (200)
[
  {
    "blurb": "string",
    "code": "string",
    "currency": "ARS",
    "issuerId": "string",
    "issuerName": "string",
    "name": "string",
    "nav": 42.0,
    "symbolStatus": "Open"
  }
]
Response examples (200)
[
  {
    "blurb": "string",
    "code": "string",
    "currency": "ARS",
    "issuerId": "string",
    "issuerName": "string",
    "name": "string",
    "nav": 42.0,
    "symbolStatus": "Open"
  }
]