Developer Portal

Get TickersGET

Returns live mid prices and % change for all symbols, optionally filtered by asset class or symbol names. No authentication required.

View as Markdown
GET
/public/ticker

Query Parameters

asset_classesstring

Comma-separated asset classes (e.g. ASSET_CLASS_FOREX_CFD,ASSET_CLASS_CRYPTO_CFD)

symbolsstring

Comma-separated symbol names (e.g. EURUSD,BTCUSD). Takes precedence over asset_classes.

curl -X GET "http://localhost:8081/api/v1/public/ticker?asset_classes=%3Cstring%3E&symbols=%3Cstring%3E"

List of ticker items

[
  {
    "s": "string",
    "p": 0.1,
    "c": 0.1,
    "a": "ASSET_CLASS_UNSPECIFIED"
  }
]