BtcTurk | Kripto API Documentation
  • General Information
  • API Access Permissions
  • Data Center
  • Recent changes
  • Authentication
    • Authentication V1
    • Usage
  • Public Endpoints
    • All Public Endpoints
    • Get Exchange Info
    • Get Tickers
    • Get OrderBook
    • Get Trades
    • Get OHLC Data
    • Get Kline Data
  • Private Endpoints
    • All Private Endpoints
    • Get Account Balance
    • Get User Transactions
    • Get Fiat Transactions
    • Get Crypto Transactions
    • Get Open Orders
    • Get All Orders
    • Get Single Order
    • Submit an Order
    • Cancel an Order
  • Rate Limits
  • Websocket Feed
    • WebSocket Authentication
    • Channel, Event and Model
    • Models
    • TradingView
  • Errors
  • Error Handling For Order Operations
    • Retry Strategy Guideline
  • Pairs Scale (Quantity/Price)
  • FAQ (Frequently Asked Questions)
  • Contact Us
Powered by GitBook
On this page

Was this helpful?

Pairs Scale (Quantity/Price)

PreviousRetry Strategy GuidelineNextFAQ (Frequently Asked Questions)

Last updated 3 years ago

Was this helpful?

You can use https://api.btcturk.com/api/v2/server/exchangeinfo for all tradable pairs and their quantity or price scales and more.

to access the endpoint. (For more detailed information, visit the article.)

, you can find the current Pair Scale and Quantity Scale information.

Example

Pair

Quantity Scale

Pair Scale

name":"BTCTRY"

"numeratorScale":8

"denominatorScale":2

  • Check the numaretorScale for Quantity Scale

  • Check the denominatorScale for Pair Scale

  • Check the name for Pair also you can view id for Pair ID here.

{
        "id": 1,
        "name": "BTCTRY",
        "nameNormalized": "BTC_TRY",
        "status": "TRADING",
        "numerator": "BTC",
        "denominator": "TRY",
        "numeratorScale": 8,
        "denominatorScale": 2,
        "hasFraction": false,
        "filters": [
          {
            "filterType": "PRICE_FILTER",
            "minPrice": "0.0000000000001",
            "maxPrice": "10000000",
            "tickSize": "10",
            "minExchangeValue": "99.91",
            "minAmount": null,
            "maxAmount": null
          }
        ],
        "orderMethods": [
          "MARKET",
          "LIMIT",
          "STOP_MARKET",
          "STOP_LIMIT"
        ],
        "displayFormat": "#,###",
        "commissionFromNumerator": false,
        "order": 1000,
        "priceRounding": false,
        "isNew": false,
        "marketPriceWarningThresholdPercentage": 0.25,
        "maximumOrderAmount": null
      }
Click here
ExchangeInfo
From here