Skip to main content
GET
/
trade
/
v1
/
market-data
/
ticker
/
{symbol}
Get market data tickers
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.

Path Parameters

symbol
string
required

Trading pair symbol (e.g., BTC-USD, ETH-EUR)

Required string length: 1 - 32

Response

List of tickers retrieved successfully

timestamp
string<date-time>

Timestamp when the ticker data was recorded

venue
string

Trading venue identifier

Example:

"kraken"

symbol
string

Trading pair symbol

open
number

Opening price of the trading period

Example:

50000

last
number

Last traded price

Example:

51000

bid
number

Best bid price

Example:

50900

ask
number

Best ask price

Example:

51100

low
number

Lowest price in the trading period

Example:

49000

high
number

Highest price in the trading period

Example:

52000

volume
number

Trading volume in the base currency

Example:

100.5