Get Tickers

Gets snapshot information about the last trade (tick), best bid/ask and 24h volume.

Using the pairSymbol parameter, you can send a request for a single pair.

Example: https://api.btcturk.com/api/v2/ticker?pairSymbol=BTCUSDT

  • If pairSymbol is not set, ticker for all pairs will be returned in a json array.

GET Currency

  • currency parameter can be used for all symbol pairs.

Example: https://api.btcturk.com/api/v2/ticker/currency?symbol=usdt

You can use this query to see all USDT, TRY or BTC pairs.

Pair

GET https://api.btcturk.com/api/v2/ticker

If pairSymbol is not set, ticker for all pairs will be returned in a json array.

Query Parameters

Name
Type
Description

pairSymbol

string

BTCTRY, ETHTRY etc.

{
  "data": [
    {
      "pair": "BTCTRY",
      "pairNormalized": "BTC_TRY",
      "timestamp": 1570024156166,
      "last": 47500,
      "high": 48710,
      "low": 47000,
      "bid": 47472,
      "ask": 47670,
      "open": 47988,
      "volume": 304.41,
      "average": 47850.41,
      "daily": -318,
      "dailyPercent": -1.02,
      "denominatorSymbol": "TRY",
      "numeratorSymbol": "BTC"
    }
  ],
  "success": true,
  "message": null,
  "code": 0
}

Currency

GET https://api.btcturk.com/api/v2/ticker/currency

If symbol is not set, ticker for all pairs will be returned in a json array.

Path Parameters

Name
Type
Description

symbol

string

USDT, TRY etc.

Code Example

Last updated

Was this helpful?