Retrieve a list of tickers for a given trading symbol. Tickers contain current market data including last price, bid/ask prices, volume, and high/low prices. If a venue is specified, only tickers from that venue are returned.
curl --request GET \
--url https://api.staging.layer1.com/trade/v1/market-data/ticker/{symbol} \
--header 'Authorization: Bearer <token>'[
{
"timestamp": "2023-10-01T12:00:00Z",
"venue": "kraken",
"symbol": {
"base": {
"code": "BTC"
},
"counter": {
"code": "USD"
}
},
"open": "42500.00",
"last": "42750.00",
"bid": "42700.00",
"ask": "42800.00",
"low": "42400.00",
"high": "42900.00",
"volume": "125.5"
},
{
"timestamp": "2023-10-01T12:00:00Z",
"venue": "binance",
"symbol": {
"base": {
"code": "BTC"
},
"counter": {
"code": "USD"
}
},
"open": "42510.00",
"last": "42760.00",
"bid": "42710.00",
"ask": "42810.00",
"low": "42410.00",
"high": "42910.00",
"volume": "98.3"
}
]Documentation Index
Fetch the complete documentation index at: https://exness-preview.mintlify.app/llms.txt
Use this file to discover all available pages before exploring further.
Trading pair symbol (e.g., BTC-USD, ETH-EUR)
1 - 32List of tickers retrieved successfully
Timestamp when the ticker data was recorded
Trading venue identifier
"kraken"
Trading pair symbol
Opening price of the trading period
50000
Last traded price
51000
Best bid price
50900
Best ask price
51100
Lowest price in the trading period
49000
Highest price in the trading period
52000
Trading volume in the base currency
100.5
curl --request GET \
--url https://api.staging.layer1.com/trade/v1/market-data/ticker/{symbol} \
--header 'Authorization: Bearer <token>'[
{
"timestamp": "2023-10-01T12:00:00Z",
"venue": "kraken",
"symbol": {
"base": {
"code": "BTC"
},
"counter": {
"code": "USD"
}
},
"open": "42500.00",
"last": "42750.00",
"bid": "42700.00",
"ask": "42800.00",
"low": "42400.00",
"high": "42900.00",
"volume": "125.5"
},
{
"timestamp": "2023-10-01T12:00:00Z",
"venue": "binance",
"symbol": {
"base": {
"code": "BTC"
},
"counter": {
"code": "USD"
}
},
"open": "42510.00",
"last": "42760.00",
"bid": "42710.00",
"ask": "42810.00",
"low": "42410.00",
"high": "42910.00",
"volume": "98.3"
}
]