Get Exchange Info

Gets a list of all known currencies.

You can use exchangeinfo endpoint for all tradable pairs and their quantity or price scales.

1. Trade Information

pairId, numeratorScale, denominatorScale, maxLimitOrderPrice and minLimitOrderPrice information can be displayed with exhangeinfo endpoint.

For more information about numeratorScale and denominatorScale, you can check our Pair Scale article.

What is maxLimitOrderPrice and minLimitOrderPrice ?

  • The maxLimitOrderPrice and minLimitOrderPrice values will be updated dynamically.

  • The values will be arranged as follows

1/10 of the current price of the pair.

minLimitOrderPrice

*10 of the current price of the pair.

maxLimitOrderPrice

Example:

namelastminLimitOrderPricemaxLimitOrderPrice

XRPTRY

15.86 TRY

1.586 TRY

158.6 TRY

Response

{
  "data": {
    "timeZone": "UTC",
    "serverTime": 1645091654418,
    "symbols": [
      {
        "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.2500000000000000,
        "maximumOrderAmount": null,
        "maximumLimitOrderPrice": 5895000.0000000000000000,
        "minimumLimitOrderPrice": 58950.0000000000000000
      }
}

2. Currency Information

You can also view minWithdrawal, minDeposit, precision and address details with exchangeInfo endpoint.

{
                "id": 2,
                "symbol": "BTC",
                "minWithdrawal": 0.0005000000000000,
                "minDeposit": 0.0001000000000000,
                "precision": 8,
                "address": {
                    "minLen": 25,
                    "maxLen": 96
                },
                "currencyType": "CRYPTO",
                "tag": {
                    "enable": false,
                    "name": null,
                    "minLen": null,
                    "maxLen": null
                },
                "color": "#d48222",
                "name": "Bitcoin",
                "isAddressRenewable": true,
                "getAutoAddressDisabled": true,
                "isPartialWithdrawalEnabled": true,
                "isNew": false
}

You can check the current cryptocurrency deposit and withdrawal status with exchangeInfo endpoint.

currencySymbol, withdrawalDisabled, depositDisabled

Status changes astrue when deposits or withdrawals are turned off.

{
    "currencySymbol":"Btc",
    "withdrawalDisabled":false, --> means Btc withdrawals are enabled
    "depositDisabled":false --> means Btc deposits are enabled
}

Exchange Info

GET https://api.btcturk.com/api/v2/server/exchangeinfo

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


    "data": {
        "timeZone": "UTC",
        "serverTime": 1641916253216,
        "symbols": [
            {
                "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.2500000000000000,
                "maximumOrderAmount": null
            },
            {
                "id": 131,
                "name": "AAVETRY",
                "nameNormalized": "AAVE_TRY",
                "status": "TRADING",
                "numerator": "AAVE",
                "denominator": "TRY",
                "numeratorScale": 4,
                "denominatorScale": 2,
                "hasFraction": true,
                "filters": [
                    {
                        "filterType": "PRICE_FILTER",
                        "minPrice": "0.0000000000001",
                        "maxPrice": "10000000",
                        "tickSize": "0.01",
                        "minExchangeValue": "99.91",
                        "minAmount": null,
                        "maxAmount": null
                    }
                ],
                "orderMethods": [
                    "MARKET",
                    "LIMIT",
                    "STOP_MARKET",
                    "STOP_LIMIT"
                ],
                "displayFormat": "#,##0.00",
                "commissionFromNumerator": false,
                "order": 1001,
                "priceRounding": false,
                "isNew": false,
                "marketPriceWarningThresholdPercentage": 0.2500000000000000,
                "maximumOrderAmount": null
            },
            {
                "id": 57,
                "name": "ADATRY",
                "nameNormalized": "ADA_TRY",
                "status": "TRADING",
                "numerator": "ADA",
                "denominator": "TRY",
                "numeratorScale": 4,
                "denominatorScale": 3,
                "hasFraction": true,
                "filters": [
                    {
                        "filterType": "PRICE_FILTER",
                        "minPrice": "0.0000000000001",
                        "maxPrice": "10000000",
                        "tickSize": "0.001",
                        "minExchangeValue": "99.91",
                        "minAmount": null,
                        "maxAmount": null
                    }
                ],
                "orderMethods": [
                    "MARKET",
                    "LIMIT",
                    "STOP_MARKET",
                    "STOP_LIMIT"
                ],
                "displayFormat": "#,##0.000",
                "commissionFromNumerator": false,
                "order": 1002,
                "priceRounding": false,
                "isNew": false,
                "marketPriceWarningThresholdPercentage": 0.2500000000000000,
                "maximumOrderAmount": null
            },
            {
                "id": 139,
                "name": "AMPTRY",
                "nameNormalized": "AMP_TRY",
                "status": "TRADING",
                "numerator": "AMP",
                "denominator": "TRY",
                "numeratorScale": 4,
                "denominatorScale": 4,
                "hasFraction": true,
                "filters": [
                    {
                        "filterType": "PRICE_FILTER",
                        "minPrice": "0.0000000000001",
                        "maxPrice": "10000000",
                        "tickSize": "0.0001",
                        "minExchangeValue": "99.91",
                        "minAmount": null,
                        "maxAmount": null
                    }
                ],
                "orderMethods": [
                    "LIMIT",
                    "STOP_LIMIT"
                ],
                "displayFormat": "#,##0.0000",
                "commissionFromNumerator": false,
                "order": 1003,
                "priceRounding": false,
                "isNew": false,
                "marketPriceWarningThresholdPercentage": 0.2500000000000000,
                "maximumOrderAmount": null
            },
            {
                "id": 70,
                "name": "ANKRTRY",
                "nameNormalized": "ANKR_TRY",
                "status": "TRADING",
                "numerator": "ANKR",
                "denominator": "TRY",
                "numeratorScale": 4,
                "denominatorScale": 4,
                "hasFraction": true,
                "filters": [
                    {
                        "filterType": "PRICE_FILTER",
                        "minPrice": "0.0000000000001",
                        "maxPrice": "10000000",
                        "tickSize": "0.0001",
                        "minExchangeValue": "99.91",
                        "minAmount": null,
                        "maxAmount": null
                    }
                ],
                "orderMethods": [
                    "MARKET",
                    "LIMIT",
                    "STOP_MARKET",
                    "STOP_LIMIT"
                ],
                "displayFormat": "#,##0.0000",
                "commissionFromNumerator": false,
                "order": 1004,
                "priceRounding": false,
                "isNew": false,
                "marketPriceWarningThresholdPercentage": 0.2500000000000000,
                "maximumOrderAmount": null
            },
            {
                "id": 48,
                "name": "ATOMTRY",
                "nameNormalized": "ATOM_TRY",
                "status": "TRADING",
                "numerator": "ATOM",
                "denominator": "TRY",
                "numeratorScale": 2,
                "denominatorScale": 2,
                "hasFraction": true,
                "filters": [
                    {
                        "filterType": "PRICE_FILTER",
                        "minPrice": "0.0000000000001",
                        "maxPrice": "10000000",
                        "tickSize": "0.01",
                        "minExchangeValue": "99.91",
                        "minAmount": null,
                        "maxAmount": null
                    }
                ],
                "orderMethods": [
                    "MARKET",
                    "LIMIT",
                    "STOP_MARKET",
                    "STOP_LIMIT"
                ],
                "displayFormat": "#,##0.00",
                "commissionFromNumerator": false,
                "order": 1005,
                "priceRounding": false,
                "isNew": false,
                "marketPriceWarningThresholdPercentage": 0.2500000000000000,
                "maximumOrderAmount": null
            },
            {
                "id": 141,
                "name": "AUDIOTRY",
                "nameNormalized": "AUDIO_TRY",
                "status": "TRADING",
                "numerator": "AUDIO",
                "denominator": "TRY",
                "numeratorScale": 4,
                "denominatorScale": 3,
                "hasFraction": true,
                "filters": [
                    {
                        "filterType": "PRICE_FILTER",
                        "minPrice": "0.0000000000001",
                        "maxPrice": "10000000",
                        "tickSize": "0.001",
                        "minExchangeValue": "99.91",
                        "minAmount": null,
                        "maxAmount": null
                    }
                ],
                "orderMethods": [
                    "LIMIT",
                    "STOP_LIMIT"
                ],
                "displayFormat": "#,##0.000",
                "commissionFromNumerator": false,
                "order": 1006,
                "priceRounding": false,
                "isNew": false,
                "marketPriceWarningThresholdPercentage": 0.2500000000000000,
                "maximumOrderAmount": null
            },
            {
                "id": 100,
                "name": "AVAXTRY",
                "nameNormalized": "AVAX_TRY",
                "status": "TRADING",
                "numerator": "AVAX",
                "denominator": "TRY",
                "numeratorScale": 4,
                "denominatorScale": 1,
                "hasFraction": true,
                "filters": [
                    {
                        "filterType": "PRICE_FILTER",
                        "minPrice": "0.0000000000001",
                        "maxPrice": "10000000",
                        "tickSize": "0.1",
                        "minExchangeValue": "99.91",
                        "minAmount": null,
                        "maxAmount": null
                    }
                ],
                "orderMethods": [
                    "MARKET",
                    "LIMIT",
                    "STOP_MARKET",
                    "STOP_LIMIT"
                ],
                "displayFormat": "#,##0.00",
                "commissionFromNumerator": false,
                "order": 1007,
                "priceRounding": false,
                "isNew": false,
                "marketPriceWarningThresholdPercentage": 0.2500000000000000,
                "maximumOrderAmount": null
            },
            {
                "id": 113,
                "name": "AXSTRY",
                "nameNormalized": "AXS_TRY",
                "status": "TRADING",
                "numerator": "AXS",
                "denominator": "TRY",
                "numeratorScale": 4,
                "denominatorScale": 2,
                "hasFraction": true,
                "filters": [
                    {
                        "filterType": "PRICE_FILTER",
                        "minPrice": "0.0000000000001",
                        "maxPrice": "10000000",
                        "tickSize": "0.01",
                        "minExchangeValue": "99.91",
                        "minAmount": null,
                        "maxAmount": null
                    }
                ],
                "orderMethods": [
                    "MARKET",
                    "LIMIT",
                    "STOP_MARKET",
                    "STOP_LIMIT"
                ],
                "displayFormat": "#,##0.00",
                "commissionFromNumerator": false,
                "order": 1008,
                "priceRounding": false,
                "isNew": false,
                "marketPriceWarningThresholdPercentage": 0.2500000000000000,
                "maximumOrderAmount": null
            },
            {
                "id": 93,
                "name": "BATTRY",
                "nameNormalized": "BAT_TRY",
                "status": "TRADING",
                "numerator": "BAT",
                "denominator": "TRY",
                "numeratorScale": 4,
                "denominatorScale": 3,
                "hasFraction": true,
                "filters": [
                    {
                        "filterType": "PRICE_FILTER",
                        "minPrice": "0.0000000000001",
                        "maxPrice": "10000000",
                        "tickSize": "0.001",
                        "minExchangeValue": "99.91",
                        "minAmount": null,
                        "maxAmount": null
                    }
                ],
                "orderMethods": [
                    "MARKET",
                    "LIMIT",
                    "STOP_MARKET",
                    "STOP_LIMIT"
                ],
                "displayFormat": "#,##0.000",
                "commissionFromNumerator": false,
                "order": 1009,
                "priceRounding": false,
                "isNew": false,
                "marketPriceWarningThresholdPercentage": 0.2500000000000000,
                "maximumOrderAmount": null
            },
            {
                "id": 107,
                "name": "CHZTRY",
                "nameNormalized": "CHZ_TRY",
                "status": "TRADING",
                "numerator": "CHZ",
                "denominator": "TRY",
                "numeratorScale": 4,
                "denominatorScale": 3,
                "hasFraction": true,
                "filters": [
                    {
                        "filterType": "PRICE_FILTER",
                        "minPrice": "0.0000000000001",
                        "maxPrice": "10000000",
                        "tickSize": "0.001",
                        "minExchangeValue": "99.91",
                        "minAmount": null,
                        "maxAmount": null
                    }
                ],
                "orderMethods": [
                    "MARKET",
                    "LIMIT",
                    "STOP_MARKET",
                    "STOP_LIMIT"
                ],
                "displayFormat": "#,##0.000",
                "commissionFromNumerator": false,
                "order": 1010,
                "priceRounding": false,
                "isNew": false,
                "marketPriceWarningThresholdPercentage": 0.2500000000000000,
                "maximumOrderAmount": null
            },
            {
                "id": 82,
                "name": "COMPTRY",
                "nameNormalized": "COMP_TRY",
                "status": "TRADING",
                "numerator": "COMP",
                "denominator": "TRY",
                "numeratorScale": 8,
                "denominatorScale": 1,
                "hasFraction": true,
                "filters": [
                    {
                        "filterType": "PRICE_FILTER",
                        "minPrice": "0.0000000000001",
                        "maxPrice": "10000000",
                        "tickSize": "0.1",
                        "minExchangeValue": "99.91",
                        "minAmount": null,
                        "maxAmount": null
                    }
                ],
                "orderMethods": [
                    "MARKET",
                    "LIMIT",
                    "STOP_MARKET",
                    "STOP_LIMIT"
                ],
                "displayFormat": "#,##0.0",
                "commissionFromNumerator": false,
                "order": 1011,
                "priceRounding": false,
                "isNew": false,
                "marketPriceWarningThresholdPercentage": 0.2500000000000000,
                "maximumOrderAmount": null
            },
            {
                "id": 42,
                "name": "DASHTRY",
                "nameNormalized": "DASH_TRY",
                "status": "TRADING",
                "numerator": "DASH",
                "denominator": "TRY",
                "numeratorScale": 8,
                "denominatorScale": 1,
                "hasFraction": true,
                "filters": [
                    {
                        "filterType": "PRICE_FILTER",
                        "minPrice": "0.0000000000001",
                        "maxPrice": "10000000",
                        "tickSize": "0.1",
                        "minExchangeValue": "99.91",
                        "minAmount": null,
                        "maxAmount": null
                    }
                ],
                "orderMethods": [
                    "MARKET",
                    "LIMIT",
                    "STOP_MARKET",
                    "STOP_LIMIT"
                ],
                "displayFormat": "#,##0.0",
                "commissionFromNumerator": false,
                "order": 1012,
                "priceRounding": false,
                "isNew": false,
                "marketPriceWarningThresholdPercentage": 0.2500000000000000,
                "maximumOrderAmount": null
            },
            {
                "id": 105,
                "name": "DOGETRY",
                "nameNormalized": "DOGE_TRY",
                "status": "TRADING",
                "numerator": "DOGE",
                "denominator": "TRY",
                "numeratorScale": 4,
                "denominatorScale": 3,
                "hasFraction": true,
                "filters": [
                    {
                        "filterType": "PRICE_FILTER",
                        "minPrice": "0.0000000000001",
                        "maxPrice": "10000000",
                        "tickSize": "0.001",
                        "minExchangeValue": "99.91",
                        "minAmount": null,
                        "maxAmount": null
                    }
                ],
                "orderMethods": [
                    "MARKET",
                    "LIMIT",
                    "STOP_MARKET",
                    "STOP_LIMIT"
                ],
                "displayFormat": "#,##0.000",
                "commissionFromNumerator": false,
                "order": 1013,
                "priceRounding": false,
                "isNew": false,
                "marketPriceWarningThresholdPercentage": 0.2500000000000000,
                "maximumOrderAmount": null
            },
            {
                "id": 60,
                "name": "DOTTRY",
                "nameNormalized": "DOT_TRY",
                "status": "TRADING",
                "numerator": "DOT",
                "denominator": "TRY",
                "numeratorScale": 2,
                "denominatorScale": 2,
                "hasFraction": true,
                "filters": [
                    {
                        "filterType": "PRICE_FILTER",
                        "minPrice": "0.0000000000001",
                        "maxPrice": "10000000",
                        "tickSize": "0.01",
                        "minExchangeValue": "99.91",
                        "minAmount": null,
                        "maxAmount": null
                    }
                ],
                "orderMethods": [
                    "MARKET",
                    "LIMIT",
                    "STOP_MARKET",
                    "STOP_LIMIT"
                ],
                "displayFormat": "#,##0.00",
                "commissionFromNumerator": false,
                "order": 1014,
                "priceRounding": false,
                "isNew": false,
                "marketPriceWarningThresholdPercentage": 0.2500000000000000,
                "maximumOrderAmount": null
            },
            {
                "id": 76,
                "name": "ENJTRY",
                "nameNormalized": "ENJ_TRY",
                "status": "TRADING",
                "numerator": "ENJ",
                "denominator": "TRY",
                "numeratorScale": 2,
                "denominatorScale": 2,
                "hasFraction": true,
                "filters": [
                    {
                        "filterType": "PRICE_FILTER",
                        "minPrice": "0.0000000000001",
                        "maxPrice": "10000000",
                        "tickSize": "0.01",
                        "minExchangeValue": "99.91",
                        "minAmount": null,
                        "maxAmount": null
                    }
                ],
                "orderMethods": [
                    "MARKET",
                    "LIMIT",
                    "STOP_MARKET",
                    "STOP_LIMIT"
                ],
                "displayFormat": "#,##0.00",
                "commissionFromNumerator": false,
                "order": 1015,
                "priceRounding": false,
                "isNew": false,
                "marketPriceWarningThresholdPercentage": 0.2500000000000000,
                "maximumOrderAmount": null
            },
            {
                "id": 39,
                "name": "EOSTRY",
                "nameNormalized": "EOS_TRY",
                "status": "TRADING",
                "numerator": "EOS",
                "denominator": "TRY",
                "numeratorScale": 2,
                "denominatorScale": 2,
                "hasFraction": true,
                "filters": [
                    {
                        "filterType": "PRICE_FILTER",
                        "minPrice": "0.0000000000001",
                        "maxPrice": "10000000",
                        "tickSize": "0.01",
                        "minExchangeValue": "99.91",
                        "minAmount": null,
                        "maxAmount": null
                    }
                ],
                "orderMethods": [
                    "MARKET",
                    "LIMIT",
                    "STOP_MARKET",
                    "STOP_LIMIT"
                ],
                "displayFormat": "#,##0.00",
                "commissionFromNumerator": false,
                "order": 1016,
                "priceRounding": false,
                "isNew": false,
                "marketPriceWarningThresholdPercentage": 0.2500000000000000,
                "maximumOrderAmount": null
            },
            {
                "id": 3,
                "name": "ETHTRY",
                "nameNormalized": "ETH_TRY",
                "status": "TRADING",
                "numerator": "ETH",
                "denominator": "TRY",
                "numeratorScale": 8,
                "denominatorScale": 2,
                "hasFraction": false,
                "filters": [
                    {
                        "filterType": "PRICE_FILTER",
                        "minPrice": "0.0000000000001",
                        "maxPrice": "10000000",
                        "tickSize": "1",
                        "minExchangeValue": "99.91",
                        "minAmount": null,
                        "maxAmount": null
                    }
                ],
                "orderMethods": [
                    "MARKET",
                    "LIMIT",
                    "STOP_MARKET",
                    "STOP_LIMIT"
                ],
                "displayFormat": "#,###",
                "commissionFromNumerator": false,
                "order": 1017,
                "priceRounding": false,
                "isNew": false,
                "marketPriceWarningThresholdPercentage": 0.2500000000000000,
                "maximumOrderAmount": null
            },
            {
                "id": 127,
                "name": "FETTRY",
                "nameNormalized": "FET_TRY",
                "status": "TRADING",
                "numerator": "FET",
                "denominator": "TRY",
                "numeratorScale": 4,
                "denominatorScale": 3,
                "hasFraction": true,
                "filters": [
                    {
                        "filterType": "PRICE_FILTER",
                        "minPrice": "0.0000000000001",
                        "maxPrice": "10000000",
                        "tickSize": "0.001",
                        "minExchangeValue": "99.91",
                        "minAmount": null,
                        "maxAmount": null
                    }
                ],
                "orderMethods": [
                    "MARKET",
                    "LIMIT",
                    "STOP_MARKET",
                    "STOP_LIMIT"
                ],
                "displayFormat": "#,##0.000",
                "commissionFromNumerator": false,
                "order": 1018,
                "priceRounding": false,
                "isNew": false,
                "marketPriceWarningThresholdPercentage": 0.2500000000000000,
                "maximumOrderAmount": null
            },
            {
                "id": 103,
                "name": "FILTRY",
                "nameNormalized": "FIL_TRY",
                "status": "TRADING",
                "numerator": "FIL",
                "denominator": "TRY",
                "numeratorScale": 4,
                "denominatorScale": 2,
                "hasFraction": true,
                "filters": [
                    {
                        "filterType": "PRICE_FILTER",
                        "minPrice": "0.0000000000001",
                        "maxPrice": "10000000",
                        "tickSize": "0.01",
                        "minExchangeValue": "99.91",
                        "minAmount": null,
                        "maxAmount": null
                    }
                ],
                "orderMethods": [
                    "MARKET",
                    "LIMIT",
                    "STOP_MARKET",
                    "STOP_LIMIT"
                ],
                "displayFormat": "#,##0.00",
                "commissionFromNumerator": false,
                "order": 1019,
                "priceRounding": false,
                "isNew": false,
                "marketPriceWarningThresholdPercentage": 0.2500000000000000,
                "maximumOrderAmount": null
            },
            {
                "id": 117,
                "name": "FTMTRY",
                "nameNormalized": "FTM_TRY",
                "status": "TRADING",
                "numerator": "FTM",
                "denominator": "TRY",
                "numeratorScale": 4,
                "denominatorScale": 3,
                "hasFraction": true,
                "filters": [
                    {
                        "filterType": "PRICE_FILTER",
                        "minPrice": "0.0000000000001",
                        "maxPrice": "10000000",
                        "tickSize": "0.001",
                        "minExchangeValue": "99.91",
                        "minAmount": null,
                        "maxAmount": null
                    }
                ],
                "orderMethods": [
                    "MARKET",
                    "LIMIT",
                    "STOP_MARKET",
                    "STOP_LIMIT"
                ],
                "displayFormat": "#,##0.000",
                "commissionFromNumerator": false,
                "order": 1020,
                "priceRounding": false,
                "isNew": false,
                "marketPriceWarningThresholdPercentage": 0.2500000000000000,
                "maximumOrderAmount": null
            },
            {
                "id": 133,
                "name": "GALATRY",
                "nameNormalized": "GALA_TRY",
                "status": "TRADING",
                "numerator": "GALA",
                "denominator": "TRY",
                "numeratorScale": 4,
                "denominatorScale": 3,
                "hasFraction": true,
                "filters": [
                    {
                        "filterType": "PRICE_FILTER",
                        "minPrice": "0.0000000000001",
                        "maxPrice": "10000000",
                        "tickSize": "0.001",
                        "minExchangeValue": "99.91",
                        "minAmount": null,
                        "maxAmount": null
                    }
                ],
                "orderMethods": [
                    "MARKET",
                    "LIMIT",
                    "STOP_MARKET",
                    "STOP_LIMIT"
                ],
                "displayFormat": "#,##0.000",
                "commissionFromNumerator": false,
                "order": 1021,
                "priceRounding": false,
                "isNew": false,
                "marketPriceWarningThresholdPercentage": 0.2500000000000000,
                "maximumOrderAmount": null
            },
            {
                "id": 83,
                "name": "GRTTRY",
                "nameNormalized": "GRT_TRY",
                "status": "TRADING",
                "numerator": "GRT",
                "denominator": "TRY",
                "numeratorScale": 4,
                "denominatorScale": 3,
                "hasFraction": true,
                "filters": [
                    {
                        "filterType": "PRICE_FILTER",
                        "minPrice": "0.0000000000001",
                        "maxPrice": "10000000",
                        "tickSize": "0.001",
                        "minExchangeValue": "99.91",
                        "minAmount": null,
                        "maxAmount": null
                    }
                ],
                "orderMethods": [
                    "MARKET",
                    "LIMIT",
                    "STOP_MARKET",
                    "STOP_LIMIT"
                ],
                "displayFormat": "#,##0.000",
                "commissionFromNumerator": false,
                "order": 1022,
                "priceRounding": false,
                "isNew": false,
                "marketPriceWarningThresholdPercentage": 0.2500000000000000,
                "maximumOrderAmount": null
            },
            {
                "id": 45,
                "name": "LINKTRY",
                "nameNormalized": "LINK_TRY",
                "status": "TRADING",
                "numerator": "LINK",
                "denominator": "TRY",
                "numeratorScale": 2,
                "denominatorScale": 2,
                "hasFraction": true,
                "filters": [
                    {
                        "filterType": "PRICE_FILTER",
                        "minPrice": "0.0000000000001",
                        "maxPrice": "10000000",
                        "tickSize": "0.01",
                        "minExchangeValue": "99.91",
                        "minAmount": null,
                        "maxAmount": null
                    }
                ],
                "orderMethods": [
                    "MARKET",
                    "LIMIT",
                    "STOP_MARKET",
                    "STOP_LIMIT"
                ],
                "displayFormat": "#,##0.00",
                "commissionFromNumerator": false,
                "order": 1023,
                "priceRounding": false,
                "isNew": false,
                "marketPriceWarningThresholdPercentage": 0.2500000000000000,
                "maximumOrderAmount": null
            },
            {
                "id": 119,
                "name": "LRCTRY",
                "nameNormalized": "LRC_TRY",
                "status": "TRADING",