Pairs Scale (Quantity/Price)
You can use https://api.btcturk.com/api/v2/server/exchangeinfo for all tradable pairs and their quantity or price scales and more.
​Click here to access the endpoint. (For more detailed information, visit the ExchangeInfo article.)
​From here, 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.
1
{
2
"id": 1,
3
"name": "BTCTRY",
4
"nameNormalized": "BTC_TRY",
5
"status": "TRADING",
6
"numerator": "BTC",
7
"denominator": "TRY",
8
"numeratorScale": 8,
9
"denominatorScale": 2,
10
"hasFraction": false,
11
"filters": [
12
{
13
"filterType": "PRICE_FILTER",
14
"minPrice": "0.0000000000001",
15
"maxPrice": "10000000",
16
"tickSize": "10",
17
"minExchangeValue": "99.91",
18
"minAmount": null,
19
"maxAmount": null
20
}
21
],
22
"orderMethods": [
23
"MARKET",
24
"LIMIT",
25
"STOP_MARKET",
26
"STOP_LIMIT"
27
],
28
"displayFormat": "#,###",
29
"commissionFromNumerator": false,
30
"order": 1000,
31
"priceRounding": false,
32
"isNew": false,
33
"marketPriceWarningThresholdPercentage": 0.25,
34
"maximumOrderAmount": null
35
}
Copied!
Copy link