Qubx 0.5.7__cp312-cp312-manylinux_2_39_x86_64.whl
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Potentially problematic release.
This version of Qubx might be problematic. Click here for more details.
- qubx/__init__.py +207 -0
- qubx/_nb_magic.py +100 -0
- qubx/backtester/__init__.py +5 -0
- qubx/backtester/account.py +145 -0
- qubx/backtester/broker.py +87 -0
- qubx/backtester/data.py +296 -0
- qubx/backtester/management.py +378 -0
- qubx/backtester/ome.py +296 -0
- qubx/backtester/optimization.py +201 -0
- qubx/backtester/simulated_data.py +558 -0
- qubx/backtester/simulator.py +362 -0
- qubx/backtester/utils.py +780 -0
- qubx/cli/__init__.py +0 -0
- qubx/cli/commands.py +67 -0
- qubx/connectors/ccxt/__init__.py +0 -0
- qubx/connectors/ccxt/account.py +495 -0
- qubx/connectors/ccxt/broker.py +132 -0
- qubx/connectors/ccxt/customizations.py +193 -0
- qubx/connectors/ccxt/data.py +612 -0
- qubx/connectors/ccxt/exceptions.py +17 -0
- qubx/connectors/ccxt/factory.py +93 -0
- qubx/connectors/ccxt/utils.py +307 -0
- qubx/core/__init__.py +0 -0
- qubx/core/account.py +251 -0
- qubx/core/basics.py +850 -0
- qubx/core/context.py +420 -0
- qubx/core/exceptions.py +38 -0
- qubx/core/helpers.py +480 -0
- qubx/core/interfaces.py +1150 -0
- qubx/core/loggers.py +514 -0
- qubx/core/lookups.py +475 -0
- qubx/core/metrics.py +1512 -0
- qubx/core/mixins/__init__.py +13 -0
- qubx/core/mixins/market.py +94 -0
- qubx/core/mixins/processing.py +428 -0
- qubx/core/mixins/subscription.py +203 -0
- qubx/core/mixins/trading.py +88 -0
- qubx/core/mixins/universe.py +270 -0
- qubx/core/series.cpython-312-x86_64-linux-gnu.so +0 -0
- qubx/core/series.pxd +125 -0
- qubx/core/series.pyi +118 -0
- qubx/core/series.pyx +988 -0
- qubx/core/utils.cpython-312-x86_64-linux-gnu.so +0 -0
- qubx/core/utils.pyi +6 -0
- qubx/core/utils.pyx +62 -0
- qubx/data/__init__.py +25 -0
- qubx/data/helpers.py +416 -0
- qubx/data/readers.py +1562 -0
- qubx/data/tardis.py +100 -0
- qubx/gathering/simplest.py +88 -0
- qubx/math/__init__.py +3 -0
- qubx/math/stats.py +129 -0
- qubx/pandaz/__init__.py +23 -0
- qubx/pandaz/ta.py +2757 -0
- qubx/pandaz/utils.py +638 -0
- qubx/resources/instruments/symbols-binance.cm.json +1 -0
- qubx/resources/instruments/symbols-binance.json +1 -0
- qubx/resources/instruments/symbols-binance.um.json +1 -0
- qubx/resources/instruments/symbols-bitfinex.f.json +1 -0
- qubx/resources/instruments/symbols-bitfinex.json +1 -0
- qubx/resources/instruments/symbols-kraken.f.json +1 -0
- qubx/resources/instruments/symbols-kraken.json +1 -0
- qubx/ta/__init__.py +0 -0
- qubx/ta/indicators.cpython-312-x86_64-linux-gnu.so +0 -0
- qubx/ta/indicators.pxd +149 -0
- qubx/ta/indicators.pyi +41 -0
- qubx/ta/indicators.pyx +787 -0
- qubx/trackers/__init__.py +3 -0
- qubx/trackers/abvanced.py +236 -0
- qubx/trackers/composite.py +146 -0
- qubx/trackers/rebalancers.py +129 -0
- qubx/trackers/riskctrl.py +641 -0
- qubx/trackers/sizers.py +235 -0
- qubx/utils/__init__.py +5 -0
- qubx/utils/_pyxreloader.py +281 -0
- qubx/utils/charting/lookinglass.py +1057 -0
- qubx/utils/charting/mpl_helpers.py +1183 -0
- qubx/utils/marketdata/binance.py +284 -0
- qubx/utils/marketdata/ccxt.py +90 -0
- qubx/utils/marketdata/dukas.py +130 -0
- qubx/utils/misc.py +541 -0
- qubx/utils/ntp.py +63 -0
- qubx/utils/numbers_utils.py +7 -0
- qubx/utils/orderbook.py +491 -0
- qubx/utils/plotting/__init__.py +0 -0
- qubx/utils/plotting/dashboard.py +150 -0
- qubx/utils/plotting/data.py +137 -0
- qubx/utils/plotting/interfaces.py +25 -0
- qubx/utils/plotting/renderers/__init__.py +0 -0
- qubx/utils/plotting/renderers/plotly.py +0 -0
- qubx/utils/runner/__init__.py +1 -0
- qubx/utils/runner/_jupyter_runner.pyt +60 -0
- qubx/utils/runner/accounts.py +88 -0
- qubx/utils/runner/configs.py +65 -0
- qubx/utils/runner/runner.py +470 -0
- qubx/utils/time.py +312 -0
- qubx-0.5.7.dist-info/METADATA +105 -0
- qubx-0.5.7.dist-info/RECORD +100 -0
- qubx-0.5.7.dist-info/WHEEL +4 -0
- qubx-0.5.7.dist-info/entry_points.txt +3 -0
|
@@ -0,0 +1 @@
|
|
|
1
|
+
[{"id": "btcusdt", "datasetId": "BTCUSDT", "exchange": "binance-futures", "baseCurrency": "BTC", "quoteCurrency": "USDT", "type": "perpetual", "active": true, "availableSince": "2019-11-17T00:00:00.000Z", "priceIncrement": 0.1, "amountIncrement": 0.001, "minTradeAmount": 0.001, "makerFee": 0.0002, "takerFee": 0.0004, "inverse": false, "contractType": "linear_perpetual", "contractMultiplier": 1, "underlyingIndex": "btcusdt", "changes": [{"until": "2022-02-15T03:30:00.000Z", "priceIncrement": 0.01}], "listing": "2019-09-25T08:00:00.000Z"}, {"id": "btcusdc", "datasetId": "BTCUSDC", "exchange": "binance-futures", "baseCurrency": "BTC", "quoteCurrency": "USDC", "type": "perpetual", "active": true, "availableSince": "2024-01-04T00:00:00.000Z", "priceIncrement": 0.1, "amountIncrement": 0.001, "minTradeAmount": 0.001, "makerFee": 0.0002, "takerFee": 0.0004, "inverse": false, "contractType": "linear_perpetual", "contractMultiplier": 1, "underlyingIndex": "btcusdc", "listing": "2024-01-03T12:30:00.000Z"}, {"id": "ethusdt", "datasetId": "ETHUSDT", "exchange": "binance-futures", "baseCurrency": "ETH", "quoteCurrency": "USDT", "type": "perpetual", "active": true, "availableSince": "2019-11-27T00:00:00.000Z", "priceIncrement": 0.01, "amountIncrement": 0.001, "minTradeAmount": 0.001, "makerFee": 0.0002, "takerFee": 0.0004, "inverse": false, "contractType": "linear_perpetual", "contractMultiplier": 1, "underlyingIndex": "ethusdt", "listing": "2019-09-25T08:00:00.000Z"}, {"id": "ethusdc", "datasetId": "ETHUSDC", "exchange": "binance-futures", "baseCurrency": "ETH", "quoteCurrency": "USDC", "type": "perpetual", "active": true, "availableSince": "2024-01-04T00:00:00.000Z", "priceIncrement": 0.01, "amountIncrement": 0.001, "minTradeAmount": 0.001, "makerFee": 0.0002, "takerFee": 0.0004, "inverse": false, "contractType": "linear_perpetual", "contractMultiplier": 1, "underlyingIndex": "ethusdc", "listing": "2024-01-03T12:35:00.000Z"}, {"id": "bnbusdt", "datasetId": "BNBUSDT", "exchange": "binance-futures", "baseCurrency": "BNB", "quoteCurrency": "USDT", "type": "perpetual", "active": true, "availableSince": "2020-02-10T00:00:00.000Z", "priceIncrement": 0.01, "amountIncrement": 0.01, "minTradeAmount": 0.01, "makerFee": 0.0002, "takerFee": 0.0004, "inverse": false, "contractType": "linear_perpetual", "contractMultiplier": 1, "underlyingIndex": "bnbusdt", "listing": "2019-09-25T08:00:00.000Z"}, {"id": "bnbusdc", "datasetId": "BNBUSDC", "exchange": "binance-futures", "baseCurrency": "BNB", "quoteCurrency": "USDC", "type": "perpetual", "active": true, "availableSince": "2024-01-04T00:00:00.000Z", "priceIncrement": 0.01, "amountIncrement": 0.01, "minTradeAmount": 0.01, "makerFee": 0.0002, "takerFee": 0.0004, "inverse": false, "contractType": "linear_perpetual", "contractMultiplier": 1, "underlyingIndex": "bnbusdc", "listing": "2024-01-03T12:40:00.000Z"}, {"id": "ltcusdt", "datasetId": "LTCUSDT", "exchange": "binance-futures", "baseCurrency": "LTC", "quoteCurrency": "USDT", "type": "perpetual", "active": true, "availableSince": "2020-01-09T00:00:00.000Z", "priceIncrement": 0.01, "amountIncrement": 0.001, "minTradeAmount": 0.001, "makerFee": 0.0002, "takerFee": 0.0004, "inverse": false, "contractType": "linear_perpetual", "contractMultiplier": 1, "underlyingIndex": "ltcusdt", "listing": "2019-09-25T08:00:00.000Z"}, {"id": "ltcusdc", "datasetId": "LTCUSDC", "exchange": "binance-futures", "baseCurrency": "LTC", "quoteCurrency": "USDC", "type": "perpetual", "active": true, "availableSince": "2024-04-11T00:00:00.000Z", "priceIncrement": 0.01, "amountIncrement": 0.001, "minTradeAmount": 0.001, "makerFee": 0.0002, "takerFee": 0.0004, "inverse": false, "contractType": "linear_perpetual", "contractMultiplier": 1, "underlyingIndex": "ltcusdc", "listing": "2024-04-11T07:00:00.000Z"}, {"id": "solusdt", "datasetId": "SOLUSDT", "exchange": "binance-futures", "baseCurrency": "SOL", "quoteCurrency": "USDT", "type": "perpetual", "active": true, "availableSince": "2020-09-14T00:00:00.000Z", "priceIncrement": 0.01, "amountIncrement": 1, "minTradeAmount": 1, "makerFee": 0.0002, "takerFee": 0.0004, "inverse": false, "contractType": "linear_perpetual", "contractMultiplier": 1, "underlyingIndex": "solusdt", "changes": [{"until": "2021-12-13T03:30:00.000Z", "priceIncrement": 0.001}, {"until": "2022-11-09T12:00:00.000Z", "priceIncrement": 0.01}, {"until": "2024-10-14T06:35:00.000Z", "priceIncrement": 0.001}], "listing": "2019-09-25T08:00:00.000Z"}, {"id": "solusdc", "datasetId": "SOLUSDC", "exchange": "binance-futures", "baseCurrency": "SOL", "quoteCurrency": "USDC", "type": "perpetual", "active": true, "availableSince": "2024-01-04T00:00:00.000Z", "priceIncrement": 0.01, "amountIncrement": 0.01, "minTradeAmount": 0.01, "makerFee": 0.0002, "takerFee": 0.0004, "inverse": false, "contractType": "linear_perpetual", "contractMultiplier": 1, "underlyingIndex": "solusdc", "listing": "2024-01-03T12:45:00.000Z", "changes": [{"until": "2024-10-14T06:35:00.000Z", "priceIncrement": 0.001}]}, {"id": "bchusdt", "datasetId": "BCHUSDT", "exchange": "binance-futures", "baseCurrency": "BCH", "quoteCurrency": "USDT", "type": "perpetual", "active": true, "availableSince": "2019-12-19T00:00:00.000Z", "priceIncrement": 0.01, "amountIncrement": 0.001, "minTradeAmount": 0.001, "makerFee": 0.0002, "takerFee": 0.0004, "inverse": false, "contractType": "linear_perpetual", "contractMultiplier": 1, "underlyingIndex": "bchusdt", "listing": "2019-09-25T08:00:00.000Z"}, {"id": "bchusdc", "datasetId": "BCHUSDC", "exchange": "binance-futures", "baseCurrency": "BCH", "quoteCurrency": "USDC", "type": "perpetual", "active": true, "availableSince": "2024-04-04T00:00:00.000Z", "priceIncrement": 0.01, "amountIncrement": 0.001, "minTradeAmount": 0.001, "makerFee": 0.0002, "takerFee": 0.0004, "inverse": false, "contractType": "linear_perpetual", "contractMultiplier": 1, "underlyingIndex": "bchusdc", "listing": "2024-04-04T07:00:00.000Z"}, {"id": "xrpusdt", "datasetId": "XRPUSDT", "exchange": "binance-futures", "baseCurrency": "XRP", "quoteCurrency": "USDT", "type": "perpetual", "active": true, "availableSince": "2020-01-06T00:00:00.000Z", "priceIncrement": 0.0001, "amountIncrement": 0.1, "minTradeAmount": 0.1, "makerFee": 0.0002, "takerFee": 0.0004, "inverse": false, "contractType": "linear_perpetual", "contractMultiplier": 1, "underlyingIndex": "xrpusdt", "listing": "2019-09-25T08:00:00.000Z"}, {"id": "xrpusdc", "datasetId": "XRPUSDC", "exchange": "binance-futures", "baseCurrency": "XRP", "quoteCurrency": "USDC", "type": "perpetual", "active": true, "availableSince": "2024-01-04T00:00:00.000Z", "priceIncrement": 0.0001, "amountIncrement": 0.1, "minTradeAmount": 0.1, "makerFee": 0.0002, "takerFee": 0.0004, "inverse": false, "contractType": "linear_perpetual", "contractMultiplier": 1, "underlyingIndex": "xrpusdc", "listing": "2024-01-03T12:50:00.000Z"}, {"id": "eosusdt", "datasetId": "EOSUSDT", "exchange": "binance-futures", "baseCurrency": "EOS", "quoteCurrency": "USDT", "type": "perpetual", "active": true, "availableSince": "2020-01-08T00:00:00.000Z", "priceIncrement": 0.001, "amountIncrement": 0.1, "minTradeAmount": 0.1, "makerFee": 0.0002, "takerFee": 0.0004, "inverse": false, "contractType": "linear_perpetual", "contractMultiplier": 1, "underlyingIndex": "eosusdt", "listing": "2019-09-25T08:00:00.000Z"}, {"id": "avaxusdt", "datasetId": "AVAXUSDT", "exchange": "binance-futures", "baseCurrency": "AVAX", "quoteCurrency": "USDT", "type": "perpetual", "active": true, "availableSince": "2020-09-23T00:00:00.000Z", "priceIncrement": 0.001, "amountIncrement": 1, "minTradeAmount": 1, "makerFee": 0.0002, "takerFee": 0.0004, "inverse": false, "contractType": "linear_perpetual", "contractMultiplier": 1, "underlyingIndex": "avaxusdt", "changes": [{"until": "2022-01-25T03:30:00.000Z", "priceIncrement": 0.001}, {"until": "2022-10-25T03:00:00.000Z", "priceIncrement": 0.01}], "listing": "2019-09-25T08:00:00.000Z"}, {"id": "avaxusdc", "datasetId": "AVAXUSDC", "exchange": "binance-futures", "baseCurrency": "AVAX", "quoteCurrency": "USDC", "type": "perpetual", "active": true, "availableSince": "2024-03-20T00:00:00.000Z", "priceIncrement": 0.001, "amountIncrement": 0.01, "minTradeAmount": 0.01, "makerFee": 0.0002, "takerFee": 0.0004, "inverse": false, "contractType": "linear_perpetual", "contractMultiplier": 1, "underlyingIndex": "avaxusdc", "listing": "2024-03-20T07:00:00.000Z"}, {"id": "trxusdt", "datasetId": "TRXUSDT", "exchange": "binance-futures", "baseCurrency": "TRX", "quoteCurrency": "USDT", "type": "perpetual", "active": true, "availableSince": "2020-01-15T00:00:00.000Z", "priceIncrement": 1e-05, "amountIncrement": 1, "minTradeAmount": 1, "makerFee": 0.0002, "takerFee": 0.0004, "inverse": false, "contractType": "linear_perpetual", "contractMultiplier": 1, "underlyingIndex": "trxusdt", "listing": "2019-09-25T08:00:00.000Z"}, {"id": "etcusdt", "datasetId": "ETCUSDT", "exchange": "binance-futures", "baseCurrency": "ETC", "quoteCurrency": "USDT", "type": "perpetual", "active": true, "availableSince": "2020-01-16T00:00:00.000Z", "priceIncrement": 0.001, "amountIncrement": 0.01, "minTradeAmount": 0.01, "makerFee": 0.0002, "takerFee": 0.0004, "inverse": false, "contractType": "linear_perpetual", "contractMultiplier": 1, "underlyingIndex": "etcusdt", "listing": "2019-09-25T08:00:00.000Z"}, {"id": "dotusdt", "datasetId": "DOTUSDT", "exchange": "binance-futures", "baseCurrency": "DOT", "quoteCurrency": "USDT", "type": "perpetual", "active": true, "availableSince": "2020-08-22T00:00:00.000Z", "priceIncrement": 0.001, "amountIncrement": 0.1, "minTradeAmount": 0.1, "makerFee": 0.0002, "takerFee": 0.0004, "inverse": false, "contractType": "linear_perpetual", "contractMultiplier": 1, "underlyingIndex": "dotusdt", "listing": "2019-09-25T08:00:00.000Z"}, {"id": "linkusdt", "datasetId": "LINKUSDT", "exchange": "binance-futures", "baseCurrency": "LINK", "quoteCurrency": "USDT", "type": "perpetual", "active": true, "availableSince": "2020-01-17T00:00:00.000Z", "priceIncrement": 0.001, "amountIncrement": 0.01, "minTradeAmount": 0.01, "makerFee": 0.0002, "takerFee": 0.0004, "inverse": false, "contractType": "linear_perpetual", "contractMultiplier": 1, "underlyingIndex": "linkusdt", "listing": "2019-09-25T08:00:00.000Z"}, {"id": "linkusdc", "datasetId": "LINKUSDC", "exchange": "binance-futures", "baseCurrency": "LINK", "quoteCurrency": "USDC", "type": "perpetual", "active": true, "availableSince": "2024-02-16T00:00:00.000Z", "priceIncrement": 0.001, "amountIncrement": 0.01, "minTradeAmount": 0.01, "makerFee": 0.0002, "takerFee": 0.0004, "inverse": false, "contractType": "linear_perpetual", "contractMultiplier": 1, "underlyingIndex": "linkusdc", "listing": "2024-02-16T08:30:00.000Z"}, {"id": "adausdt", "datasetId": "ADAUSDT", "exchange": "binance-futures", "baseCurrency": "ADA", "quoteCurrency": "USDT", "type": "perpetual", "active": true, "availableSince": "2020-01-31T00:00:00.000Z", "priceIncrement": 0.0001, "amountIncrement": 1, "minTradeAmount": 1, "makerFee": 0.0002, "takerFee": 0.0004, "inverse": false, "contractType": "linear_perpetual", "contractMultiplier": 1, "underlyingIndex": "adausdt", "listing": "2019-09-25T08:00:00.000Z"}, {"id": "dogeusdt", "datasetId": "DOGEUSDT", "exchange": "binance-futures", "baseCurrency": "DOGE", "quoteCurrency": "USDT", "type": "perpetual", "active": true, "availableSince": "2020-07-10T00:00:00.000Z", "priceIncrement": 1e-05, "amountIncrement": 1, "minTradeAmount": 1, "makerFee": 0.0002, "takerFee": 0.0004, "inverse": false, "contractType": "linear_perpetual", "contractMultiplier": 1, "underlyingIndex": "dogeusdt", "listing": "2019-09-25T08:00:00.000Z"}, {"id": "dogeusdc", "datasetId": "DOGEUSDC", "exchange": "binance-futures", "baseCurrency": "DOGE", "quoteCurrency": "USDC", "type": "perpetual", "active": true, "availableSince": "2024-01-18T00:00:00.000Z", "priceIncrement": 1e-05, "amountIncrement": 1, "minTradeAmount": 1, "makerFee": 0.0002, "takerFee": 0.0004, "inverse": false, "contractType": "linear_perpetual", "contractMultiplier": 1, "underlyingIndex": "dogeusdc", "listing": "2024-01-18T10:00:00.000Z"}, {"id": "uniusdt", "datasetId": "UNIUSDT", "exchange": "binance-futures", "baseCurrency": "UNI", "quoteCurrency": "USDT", "type": "perpetual", "active": true, "availableSince": "2020-09-18T00:00:00.000Z", "priceIncrement": 0.001, "amountIncrement": 1, "minTradeAmount": 1, "makerFee": 0.0002, "takerFee": 0.0004, "inverse": false, "contractType": "linear_perpetual", "contractMultiplier": 1, "underlyingIndex": "uniusdt", "listing": "2019-09-25T08:00:00.000Z"}, {"id": "bsvusdt", "datasetId": "BSVUSDT", "exchange": "binance-futures", "baseCurrency": "BSV", "quoteCurrency": "USDT", "type": "perpetual", "active": true, "availableSince": "2023-10-20T00:00:00.000Z", "priceIncrement": 0.01, "amountIncrement": 0.1, "minTradeAmount": 0.1, "makerFee": 0.0002, "takerFee": 0.0004, "inverse": false, "contractType": "linear_perpetual", "contractMultiplier": 1, "underlyingIndex": "bsvusdt", "listing": "2023-10-20T12:30:00.000Z"}, {"id": "xlmusdt", "datasetId": "XLMUSDT", "exchange": "binance-futures", "baseCurrency": "XLM", "quoteCurrency": "USDT", "type": "perpetual", "active": true, "availableSince": "2020-01-20T00:00:00.000Z", "priceIncrement": 1e-05, "amountIncrement": 1, "minTradeAmount": 1, "makerFee": 0.0002, "takerFee": 0.0004, "inverse": false, "contractType": "linear_perpetual", "contractMultiplier": 1, "underlyingIndex": "xlmusdt", "listing": "2019-09-25T08:00:00.000Z"}, {"id": "xtzusdt", "datasetId": "XTZUSDT", "exchange": "binance-futures", "baseCurrency": "XTZ", "quoteCurrency": "USDT", "type": "perpetual", "active": true, "availableSince": "2020-02-06T00:00:00.000Z", "priceIncrement": 0.001, "amountIncrement": 0.1, "minTradeAmount": 0.1, "makerFee": 0.0002, "takerFee": 0.0004, "inverse": false, "contractType": "linear_perpetual", "contractMultiplier": 1, "underlyingIndex": "xtzusdt", "listing": "2019-09-25T08:00:00.000Z"}, {"id": "batusdt", "datasetId": "BATUSDT", "exchange": "binance-futures", "baseCurrency": "BAT", "quoteCurrency": "USDT", "type": "perpetual", "active": true, "availableSince": "2020-02-13T00:00:00.000Z", "priceIncrement": 0.0001, "amountIncrement": 0.1, "minTradeAmount": 0.1, "makerFee": 0.0002, "takerFee": 0.0004, "inverse": false, "contractType": "linear_perpetual", "contractMultiplier": 1, "underlyingIndex": "batusdt", "listing": "2019-09-25T08:00:00.000Z"}, {"id": "xmrusdt", "datasetId": "XMRUSDT", "exchange": "binance-futures", "baseCurrency": "XMR", "quoteCurrency": "USDT", "type": "perpetual", "active": true, "availableSince": "2020-02-03T00:00:00.000Z", "priceIncrement": 0.01, "amountIncrement": 0.001, "minTradeAmount": 0.001, "makerFee": 0.0002, "takerFee": 0.0004, "inverse": false, "contractType": "linear_perpetual", "contractMultiplier": 1, "underlyingIndex": "xmrusdt", "listing": "2019-09-25T08:00:00.000Z"}, {"id": "compusdt", "datasetId": "COMPUSDT", "exchange": "binance-futures", "baseCurrency": "COMP", "quoteCurrency": "USDT", "type": "perpetual", "active": true, "availableSince": "2020-06-30T00:00:00.000Z", "priceIncrement": 0.01, "amountIncrement": 0.001, "minTradeAmount": 0.001, "makerFee": 0.0002, "takerFee": 0.0004, "inverse": false, "contractType": "linear_perpetual", "contractMultiplier": 1, "underlyingIndex": "compusdt", "listing": "2019-09-25T08:00:00.000Z"}, {"id": "aaveusdt", "datasetId": "AAVEUSDT", "exchange": "binance-futures", "baseCurrency": "AAVE", "quoteCurrency": "USDT", "type": "perpetual", "active": true, "availableSince": "2020-10-16T00:00:00.000Z", "priceIncrement": 0.01, "amountIncrement": 0.1, "minTradeAmount": 0.1, "makerFee": 0.0002, "takerFee": 0.0004, "inverse": false, "contractType": "linear_perpetual", "contractMultiplier": 1, "underlyingIndex": "aaveusdt", "listing": "2019-09-25T08:00:00.000Z"}, {"id": "filusdt", "datasetId": "FILUSDT", "exchange": "binance-futures", "baseCurrency": "FIL", "quoteCurrency": "USDT", "type": "perpetual", "active": true, "availableSince": "2020-10-16T00:00:00.000Z", "priceIncrement": 0.001, "amountIncrement": 0.1, "minTradeAmount": 0.1, "makerFee": 0.0002, "takerFee": 0.0004, "inverse": false, "contractType": "linear_perpetual", "contractMultiplier": 1, "underlyingIndex": "filusdt", "listing": "2019-09-25T08:00:00.000Z"}, {"id": "filusdc", "datasetId": "FILUSDC", "exchange": "binance-futures", "baseCurrency": "FIL", "quoteCurrency": "USDC", "type": "perpetual", "active": true, "availableSince": "2024-04-18T00:00:00.000Z", "priceIncrement": 0.001, "amountIncrement": 0.1, "minTradeAmount": 0.1, "makerFee": 0.0002, "takerFee": 0.0004, "inverse": false, "contractType": "linear_perpetual", "contractMultiplier": 1, "underlyingIndex": "filusdc", "listing": "2024-04-18T07:30:00.000Z"}, {"id": "sxpusdt", "datasetId": "SXPUSDT", "exchange": "binance-futures", "baseCurrency": "SXP", "quoteCurrency": "USDT", "type": "perpetual", "active": true, "availableSince": "2020-07-22T00:00:00.000Z", "priceIncrement": 0.0001, "amountIncrement": 0.1, "minTradeAmount": 0.1, "makerFee": 0.0002, "takerFee": 0.0004, "inverse": false, "contractType": "linear_perpetual", "contractMultiplier": 1, "underlyingIndex": "sxpusdt", "listing": "2019-09-25T08:00:00.000Z"}, {"id": "zrxusdt", "datasetId": "ZRXUSDT", "exchange": "binance-futures", "baseCurrency": "ZRX", "quoteCurrency": "USDT", "type": "perpetual", "active": true, "availableSince": "2020-06-24T00:00:00.000Z", "priceIncrement": 0.0001, "amountIncrement": 0.1, "minTradeAmount": 0.1, "makerFee": 0.0002, "takerFee": 0.0004, "inverse": false, "contractType": "linear_perpetual", "contractMultiplier": 1, "underlyingIndex": "zrxusdt", "listing": "2019-09-25T08:00:00.000Z"}, {"id": "dashusdt", "datasetId": "DASHUSDT", "exchange": "binance-futures", "baseCurrency": "DASH", "quoteCurrency": "USDT", "type": "perpetual", "active": true, "availableSince": "2020-02-04T00:00:00.000Z", "priceIncrement": 0.01, "amountIncrement": 0.001, "minTradeAmount": 0.001, "makerFee": 0.0002, "takerFee": 0.0004, "inverse": false, "contractType": "linear_perpetual", "contractMultiplier": 1, "underlyingIndex": "dashusdt", "listing": "2019-09-25T08:00:00.000Z"}, {"id": "algousdt", "datasetId": "ALGOUSDT", "exchange": "binance-futures", "baseCurrency": "ALGO", "quoteCurrency": "USDT", "type": "perpetual", "active": true, "availableSince": "2020-06-16T00:00:00.000Z", "priceIncrement": 0.0001, "amountIncrement": 0.1, "minTradeAmount": 0.1, "makerFee": 0.0002, "takerFee": 0.0004, "inverse": false, "contractType": "linear_perpetual", "contractMultiplier": 1, "underlyingIndex": "algousdt", "listing": "2019-09-25T08:00:00.000Z"}, {"id": "neousdt", "datasetId": "NEOUSDT", "exchange": "binance-futures", "baseCurrency": "NEO", "quoteCurrency": "USDT", "type": "perpetual", "active": true, "availableSince": "2020-02-17T00:00:00.000Z", "priceIncrement": 0.001, "amountIncrement": 0.01, "minTradeAmount": 0.01, "makerFee": 0.0002, "takerFee": 0.0004, "inverse": false, "contractType": "linear_perpetual", "contractMultiplier": 1, "underlyingIndex": "neousdt", "listing": "2019-09-25T08:00:00.000Z"}, {"id": "neousdc", "datasetId": "NEOUSDC", "exchange": "binance-futures", "baseCurrency": "NEO", "quoteCurrency": "USDC", "type": "perpetual", "active": true, "availableSince": "2024-04-18T00:00:00.000Z", "priceIncrement": 0.001, "amountIncrement": 0.01, "minTradeAmount": 0.01, "makerFee": 0.0002, "takerFee": 0.0004, "inverse": false, "contractType": "linear_perpetual", "contractMultiplier": 1, "underlyingIndex": "neousdc", "listing": "2024-04-18T07:15:00.000Z"}, {"id": "iotausdt", "datasetId": "IOTAUSDT", "exchange": "binance-futures", "baseCurrency": "IOTA", "quoteCurrency": "USDT", "type": "perpetual", "active": true, "availableSince": "2020-02-12T00:00:00.000Z", "priceIncrement": 0.0001, "amountIncrement": 0.1, "minTradeAmount": 0.1, "makerFee": 0.0002, "takerFee": 0.0004, "inverse": false, "contractType": "linear_perpetual", "contractMultiplier": 1, "underlyingIndex": "iotausdt", "listing": "2019-09-25T08:00:00.000Z"}, {"id": "zecusdt", "datasetId": "ZECUSDT", "exchange": "binance-futures", "baseCurrency": "ZEC", "quoteCurrency": "USDT", "type": "perpetual", "active": true, "availableSince": "2020-02-05T00:00:00.000Z", "priceIncrement": 0.01, "amountIncrement": 0.001, "minTradeAmount": 0.001, "makerFee": 0.0002, "takerFee": 0.0004, "inverse": false, "contractType": "linear_perpetual", "contractMultiplier": 1, "underlyingIndex": "zecusdt", "listing": "2019-09-25T08:00:00.000Z"}, {"id": "mkrusdt", "datasetId": "MKRUSDT", "exchange": "binance-futures", "baseCurrency": "MKR", "quoteCurrency": "USDT", "type": "perpetual", "active": true, "availableSince": "2020-08-13T00:00:00.000Z", "priceIncrement": 0.1, "amountIncrement": 0.001, "minTradeAmount": 0.001, "makerFee": 0.0002, "takerFee": 0.0004, "inverse": false, "contractType": "linear_perpetual", "contractMultiplier": 1, "underlyingIndex": "mkrusdt", "listing": "2019-09-25T08:00:00.000Z"}, {"id": "omgusdt", "datasetId": "OMGUSDT", "exchange": "binance-futures", "baseCurrency": "OMG", "quoteCurrency": "USDT", "type": "perpetual", "active": true, "availableSince": "2020-07-02T00:00:00.000Z", "priceIncrement": 0.0001, "amountIncrement": 0.1, "minTradeAmount": 0.1, "makerFee": 0.0002, "takerFee": 0.0004, "inverse": false, "contractType": "linear_perpetual", "contractMultiplier": 1, "underlyingIndex": "omgusdt", "changes": [{"until": "2021-11-15T03:30:00.000Z", "priceIncrement": 0.0001}, {"until": "2023-06-05T06:30:00.000Z", "priceIncrement": 0.001}], "listing": "2019-09-25T08:00:00.000Z"}, {"id": "kncusdt", "datasetId": "KNCUSDT", "exchange": "binance-futures", "baseCurrency": "KNC", "quoteCurrency": "USDT", "type": "perpetual", "active": true, "availableSince": "2020-06-22T00:00:00.000Z", "priceIncrement": 0.0001, "amountIncrement": 1, "minTradeAmount": 1, "makerFee": 0.0002, "takerFee": 0.0004, "inverse": false, "contractType": "linear_perpetual", "contractMultiplier": 1, "underlyingIndex": "kncusdt", "changes": [{"until": "2022-11-10T06:00:00.000Z", "priceIncrement": 0.001}], "listing": "2019-09-25T08:00:00.000Z"}, {"id": "iostusdt", "datasetId": "IOSTUSDT", "exchange": "binance-futures", "baseCurrency": "IOST", "quoteCurrency": "USDT", "type": "perpetual", "active": true, "availableSince": "2020-02-21T00:00:00.000Z", "priceIncrement": 1e-06, "amountIncrement": 1, "minTradeAmount": 1, "makerFee": 0.0002, "takerFee": 0.0004, "inverse": false, "contractType": "linear_perpetual", "contractMultiplier": 1, "underlyingIndex": "iostusdt", "listing": "2019-09-25T08:00:00.000Z"}, {"id": "kavausdt", "datasetId": "KAVAUSDT", "exchange": "binance-futures", "baseCurrency": "KAVA", "quoteCurrency": "USDT", "type": "perpetual", "active": true, "availableSince": "2020-07-29T00:00:00.000Z", "priceIncrement": 0.0001, "amountIncrement": 0.1, "minTradeAmount": 0.1, "makerFee": 0.0002, "takerFee": 0.0004, "inverse": false, "contractType": "linear_perpetual", "contractMultiplier": 1, "underlyingIndex": "kavausdt", "listing": "2019-09-25T08:00:00.000Z"}, {"id": "atomusdt", "datasetId": "ATOMUSDT", "exchange": "binance-futures", "baseCurrency": "ATOM", "quoteCurrency": "USDT", "type": "perpetual", "active": true, "availableSince": "2020-02-07T00:00:00.000Z", "priceIncrement": 0.001, "amountIncrement": 0.01, "minTradeAmount": 0.01, "makerFee": 0.0002, "takerFee": 0.0004, "inverse": false, "contractType": "linear_perpetual", "contractMultiplier": 1, "underlyingIndex": "atomusdt", "listing": "2019-09-25T08:00:00.000Z"}, {"id": "zilusdt", "datasetId": "ZILUSDT", "exchange": "binance-futures", "baseCurrency": "ZIL", "quoteCurrency": "USDT", "type": "perpetual", "active": true, "availableSince": "2020-06-18T00:00:00.000Z", "priceIncrement": 1e-05, "amountIncrement": 1, "minTradeAmount": 1, "makerFee": 0.0002, "takerFee": 0.0004, "inverse": false, "contractType": "linear_perpetual", "contractMultiplier": 1, "underlyingIndex": "zilusdt", "listing": "2019-09-25T08:00:00.000Z"}, {"id": "thetausdt", "datasetId": "THETAUSDT", "exchange": "binance-futures", "baseCurrency": "THETA", "quoteCurrency": "USDT", "type": "perpetual", "active": true, "availableSince": "2020-05-27T00:00:00.000Z", "priceIncrement": 0.0001, "amountIncrement": 0.1, "minTradeAmount": 0.1, "makerFee": 0.0002, "takerFee": 0.0004, "inverse": false, "contractType": "linear_perpetual", "contractMultiplier": 1, "underlyingIndex": "thetausdt", "changes": [{"until": "2022-11-10T06:00:00.000Z", "priceIncrement": 0.001}], "listing": "2019-09-25T08:00:00.000Z"}, {"id": "qtumusdt", "datasetId": "QTUMUSDT", "exchange": "binance-futures", "baseCurrency": "QTUM", "quoteCurrency": "USDT", "type": "perpetual", "active": true, "availableSince": "2020-02-20T00:00:00.000Z", "priceIncrement": 0.001, "amountIncrement": 0.1, "minTradeAmount": 0.1, "makerFee": 0.0002, "takerFee": 0.0004, "inverse": false, "contractType": "linear_perpetual", "contractMultiplier": 1, "underlyingIndex": "qtumusdt", "listing": "2019-09-25T08:00:00.000Z"}, {"id": "ontusdt", "datasetId": "ONTUSDT", "exchange": "binance-futures", "baseCurrency": "ONT", "quoteCurrency": "USDT", "type": "perpetual", "active": true, "availableSince": "2020-02-11T00:00:00.000Z", "priceIncrement": 0.0001, "amountIncrement": 0.1, "minTradeAmount": 0.1, "makerFee": 0.0002, "takerFee": 0.0004, "inverse": false, "contractType": "linear_perpetual", "contractMultiplier": 1, "underlyingIndex": "ontusdt", "listing": "2019-09-25T08:00:00.000Z"}, {"id": "vetusdt", "datasetId": "VETUSDT", "exchange": "binance-futures", "baseCurrency": "VET", "quoteCurrency": "USDT", "type": "perpetual", "active": true, "availableSince": "2020-02-14T00:00:00.000Z", "priceIncrement": 1e-06, "amountIncrement": 1, "minTradeAmount": 1, "makerFee": 0.0002, "takerFee": 0.0004, "inverse": false, "contractType": "linear_perpetual", "contractMultiplier": 1, "underlyingIndex": "vetusdt", "changes": [{"until": "2024-03-19T06:40:00.000Z", "priceIncrement": 1e-05}], "listing": "2019-09-25T08:00:00.000Z"}, {"id": "usdcusdt", "datasetId": "USDCUSDT", "exchange": "binance-futures", "baseCurrency": "USDC", "quoteCurrency": "USDT", "type": "perpetual", "active": true, "availableSince": "2023-03-12T00:00:00.000Z", "priceIncrement": 1e-06, "amountIncrement": 1, "minTradeAmount": 1, "makerFee": 0.0002, "takerFee": 0.0004, "inverse": false, "contractType": "linear_perpetual", "contractMultiplier": 1, "underlyingIndex": "usdcusdt", "changes": [{"until": "2024-03-19T06:35:00.000Z", "priceIncrement": 1e-05}], "listing": "2023-03-12T00:00:00.000Z"}, {"id": "yfiusdt", "datasetId": "YFIUSDT", "exchange": "binance-futures", "baseCurrency": "YFI", "quoteCurrency": "USDT", "type": "perpetual", "active": true, "availableSince": "2020-08-31T00:00:00.000Z", "priceIncrement": 1, "amountIncrement": 0.001, "minTradeAmount": 0.001, "makerFee": 0.0002, "takerFee": 0.0004, "inverse": false, "contractType": "linear_perpetual", "contractMultiplier": 1, "underlyingIndex": "yfiusdt", "listing": "2019-09-25T08:00:00.000Z"}, {"id": "balusdt", "datasetId": "BALUSDT", "exchange": "binance-futures", "baseCurrency": "BAL", "quoteCurrency": "USDT", "type": "perpetual", "active": true, "availableSince": "2020-09-01T00:00:00.000Z", "priceIncrement": 0.001, "amountIncrement": 0.1, "minTradeAmount": 0.1, "makerFee": 0.0002, "takerFee": 0.0004, "inverse": false, "contractType": "linear_perpetual", "contractMultiplier": 1, "underlyingIndex": "balusdt", "listing": "2019-09-25T08:00:00.000Z"}, {"id": "crvusdt", "datasetId": "CRVUSDT", "exchange": "binance-futures", "baseCurrency": "CRV", "quoteCurrency": "USDT", "type": "perpetual", "active": true, "availableSince": "2020-09-01T00:00:00.000Z", "priceIncrement": 0.001, "amountIncrement": 0.1, "minTradeAmount": 0.1, "makerFee": 0.0002, "takerFee": 0.0004, "inverse": false, "contractType": "linear_perpetual", "contractMultiplier": 1, "underlyingIndex": "crvusdt", "listing": "2019-09-25T08:00:00.000Z"}, {"id": "crvusdc", "datasetId": "CRVUSDC", "exchange": "binance-futures", "baseCurrency": "CRV", "quoteCurrency": "USDC", "type": "perpetual", "active": true, "availableSince": "2024-07-04T00:00:00.000Z", "priceIncrement": 0.0001, "amountIncrement": 0.1, "minTradeAmount": 0.1, "makerFee": 0.0002, "takerFee": 0.0004, "inverse": false, "contractType": "linear_perpetual", "contractMultiplier": 1, "underlyingIndex": "crvusdc", "listing": "2024-07-04T07:00:00.000Z"}, {"id": "bandusdt", "datasetId": "BANDUSDT", "exchange": "binance-futures", "baseCurrency": "BAND", "quoteCurrency": "USDT", "type": "perpetual", "active": true, "availableSince": "2020-07-29T00:00:00.000Z", "priceIncrement": 0.0001, "amountIncrement": 0.1, "minTradeAmount": 0.1, "makerFee": 0.0002, "takerFee": 0.0004, "inverse": false, "contractType": "linear_perpetual", "contractMultiplier": 1, "underlyingIndex": "bandusdt", "listing": "2019-09-25T08:00:00.000Z"}, {"id": "lskusdt", "datasetId": "LSKUSDT", "exchange": "binance-futures", "baseCurrency": "LSK", "quoteCurrency": "USDT", "type": "perpetual", "active": true, "availableSince": "2024-01-25T00:00:00.000Z", "priceIncrement": 0.0001, "amountIncrement": 1, "minTradeAmount": 1, "makerFee": 0.0002, "takerFee": 0.0004, "inverse": false, "contractType": "linear_perpetual", "contractMultiplier": 1, "underlyingIndex": "lskusdt", "changes": [{"until": "2024-02-05T06:40:00.000Z", "priceIncrement": 0.001}], "listing": "2024-01-25T14:15:00.000Z"}, {"id": "rvnusdt", "datasetId": "RVNUSDT", "exchange": "binance-futures", "baseCurrency": "RVN", "quoteCurrency": "USDT", "type": "perpetual", "active": true, "availableSince": "2021-02-23T00:00:00.000Z", "priceIncrement": 1e-05, "amountIncrement": 1, "minTradeAmount": 1, "makerFee": 0.0002, "takerFee": 0.0004, "inverse": false, "contractType": "linear_perpetual", "contractMultiplier": 1, "underlyingIndex": "rvnusdt", "listing": "2021-02-23T07:00:00.000Z"}, {"id": "hbarusdt", "datasetId": "HBARUSDT", "exchange": "binance-futures", "baseCurrency": "HBAR", "quoteCurrency": "USDT", "type": "perpetual", "active": true, "availableSince": "2021-03-17T00:00:00.000Z", "priceIncrement": 1e-05, "amountIncrement": 1, "minTradeAmount": 1, "makerFee": 0.0002, "takerFee": 0.0004, "inverse": false, "contractType": "linear_perpetual", "contractMultiplier": 1, "underlyingIndex": "hbarusdt", "listing": "2021-03-17T07:00:00.000Z"}, {"id": "enjusdt", "datasetId": "ENJUSDT", "exchange": "binance-futures", "baseCurrency": "ENJ", "quoteCurrency": "USDT", "type": "perpetual", "active": true, "availableSince": "2020-09-30T00:00:00.000Z", "priceIncrement": 1e-05, "amountIncrement": 1, "minTradeAmount": 1, "makerFee": 0.0002, "takerFee": 0.0004, "inverse": false, "contractType": "linear_perpetual", "contractMultiplier": 1, "underlyingIndex": "enjusdt", "changes": [{"until": "2024-06-21T06:35:00.000Z", "priceIncrement": 0.0001}], "listing": "2019-09-25T08:00:00.000Z"}, {"id": "snxusdt", "datasetId": "SNXUSDT", "exchange": "binance-futures", "baseCurrency": "SNX", "quoteCurrency": "USDT", "type": "perpetual", "active": true, "availableSince": "2020-08-15T00:00:00.000Z", "priceIncrement": 0.001, "amountIncrement": 0.1, "minTradeAmount": 0.1, "makerFee": 0.0002, "takerFee": 0.0004, "inverse": false, "contractType": "linear_perpetual", "contractMultiplier": 1, "underlyingIndex": "snxusdt", "listing": "2019-09-25T08:00:00.000Z"}, {"id": "lrcusdt", "datasetId": "LRCUSDT", "exchange": "binance-futures", "baseCurrency": "LRC", "quoteCurrency": "USDT", "type": "perpetual", "active": true, "availableSince": "2020-10-19T00:00:00.000Z", "priceIncrement": 1e-05, "amountIncrement": 1, "minTradeAmount": 1, "makerFee": 0.0002, "takerFee": 0.0004, "inverse": false, "contractType": "linear_perpetual", "contractMultiplier": 1, "underlyingIndex": "lrcusdt", "changes": [{"until": "2022-01-18T03:30:00.000Z", "priceIncrement": 1e-05}, {"until": "2024-06-21T06:35:00.000Z", "priceIncrement": 0.0001}], "listing": "2019-09-25T08:00:00.000Z"}, {"id": "sushiusdt", "datasetId": "SUSHIUSDT", "exchange": "binance-futures", "baseCurrency": "SUSHI", "quoteCurrency": "USDT", "type": "perpetual", "active": true, "availableSince": "2020-09-04T00:00:00.000Z", "priceIncrement": 0.0001, "amountIncrement": 1, "minTradeAmount": 1, "makerFee": 0.0002, "takerFee": 0.0004, "inverse": false, "contractType": "linear_perpetual", "contractMultiplier": 1, "underlyingIndex": "sushiusdt", "changes": [{"until": "2023-06-05T06:30:00.000Z", "priceIncrement": 0.001}], "listing": "2019-09-25T08:00:00.000Z"}, {"id": "trbusdt", "datasetId": "TRBUSDT", "exchange": "binance-futures", "baseCurrency": "TRB", "quoteCurrency": "USDT", "type": "perpetual", "active": true, "availableSince": "2020-09-03T00:00:00.000Z", "priceIncrement": 0.001, "amountIncrement": 0.1, "minTradeAmount": 0.1, "makerFee": 0.0002, "takerFee": 0.0004, "inverse": false, "contractType": "linear_perpetual", "contractMultiplier": 1, "underlyingIndex": "trbusdt", "changes": [{"until": "2023-08-29T06:35:00.000Z", "priceIncrement": 0.01}], "listing": "2019-09-25T08:00:00.000Z"}, {"id": "manausdt", "datasetId": "MANAUSDT", "exchange": "binance-futures", "baseCurrency": "MANA", "quoteCurrency": "USDT", "type": "perpetual", "active": true, "availableSince": "2021-03-15T00:00:00.000Z", "priceIncrement": 0.0001, "amountIncrement": 1, "minTradeAmount": 1, "makerFee": 0.0002, "takerFee": 0.0004, "inverse": false, "contractType": "linear_perpetual", "contractMultiplier": 1, "underlyingIndex": "manausdt", "listing": "2021-03-14T07:00:00.000Z"}, {"id": "defiusdt", "datasetId": "DEFIUSDT", "exchange": "binance-futures", "baseCurrency": "DEFI", "quoteCurrency": "USDT", "type": "perpetual", "active": true, "availableSince": "2020-08-29T00:00:00.000Z", "priceIncrement": 0.1, "amountIncrement": 0.001, "minTradeAmount": 0.001, "makerFee": 0.0002, "takerFee": 0.0004, "inverse": false, "contractType": "linear_perpetual", "contractMultiplier": 1, "underlyingIndex": "defiusdt", "listing": "2019-09-25T08:00:00.000Z"}, {"id": "egldusdt", "datasetId": "EGLDUSDT", "exchange": "binance-futures", "baseCurrency": "EGLD", "quoteCurrency": "USDT", "type": "perpetual", "active": true, "availableSince": "2020-09-14T00:00:00.000Z", "priceIncrement": 0.001, "amountIncrement": 0.1, "minTradeAmount": 0.1, "makerFee": 0.0002, "takerFee": 0.0004, "inverse": false, "contractType": "linear_perpetual", "contractMultiplier": 1, "underlyingIndex": "egldusdt", "changes": [{"until": "2024-06-21T06:35:00.000Z", "priceIncrement": 0.01}], "listing": "2019-09-25T08:00:00.000Z"}, {"id": "icxusdt", "datasetId": "ICXUSDT", "exchange": "binance-futures", "baseCurrency": "ICX", "quoteCurrency": "USDT", "type": "perpetual", "active": true, "availableSince": "2020-09-15T00:00:00.000Z", "priceIncrement": 0.0001, "amountIncrement": 1, "minTradeAmount": 1, "makerFee": 0.0002, "takerFee": 0.0004, "inverse": false, "contractType": "linear_perpetual", "contractMultiplier": 1, "underlyingIndex": "icxusdt", "listing": "2019-09-25T08:00:00.000Z"}, {"id": "mtlusdt", "datasetId": "MTLUSDT", "exchange": "binance-futures", "baseCurrency": "MTL", "quoteCurrency": "USDT", "type": "perpetual", "active": true, "availableSince": "2021-03-31T00:00:00.000Z", "priceIncrement": 0.0001, "amountIncrement": 1, "minTradeAmount": 1, "makerFee": 0.0002, "takerFee": 0.0004, "inverse": false, "contractType": "linear_perpetual", "contractMultiplier": 1, "underlyingIndex": "mtlusdt", "listing": "2021-03-31T07:00:00.000Z"}, {"id": "nmrusdt", "datasetId": "NMRUSDT", "exchange": "binance-futures", "baseCurrency": "NMR", "quoteCurrency": "USDT", "type": "perpetual", "active": true, "availableSince": "2023-06-22T00:00:00.000Z", "priceIncrement": 0.001, "amountIncrement": 0.1, "minTradeAmount": 0.1, "makerFee": 0.0002, "takerFee": 0.0004, "inverse": false, "contractType": "linear_perpetual", "contractMultiplier": 1, "underlyingIndex": "nmrusdt", "changes": [{"until": "2024-04-11T06:40:00.000Z", "priceIncrement": 0.01}], "listing": "2023-06-22T12:00:00.000Z"}, {"id": "diausdt", "datasetId": "DIAUSDT", "exchange": "binance-futures", "baseCurrency": "DIA", "quoteCurrency": "USDT", "type": "perpetual", "active": true, "availableSince": "2024-10-02T00:00:00.000Z", "priceIncrement": 0.0001, "amountIncrement": 1, "minTradeAmount": 1, "makerFee": 0.0002, "takerFee": 0.0004, "inverse": false, "contractType": "linear_perpetual", "contractMultiplier": 1, "underlyingIndex": "diausdt", "listing": "2024-10-02T12:30:00.000Z"}, {"id": "arpausdt", "datasetId": "ARPAUSDT", "exchange": "binance-futures", "baseCurrency": "ARPA", "quoteCurrency": "USDT", "type": "perpetual", "active": true, "availableSince": "2021-10-19T00:00:00.000Z", "priceIncrement": 1e-05, "amountIncrement": 1, "minTradeAmount": 1, "makerFee": 0.0002, "takerFee": 0.0004, "inverse": false, "contractType": "linear_perpetual", "contractMultiplier": 1, "underlyingIndex": "arpausdt", "listing": "2021-10-18T07:00:00.000Z"}, {"id": "ksmusdt", "datasetId": "KSMUSDT", "exchange": "binance-futures", "baseCurrency": "KSM", "quoteCurrency": "USDT", "type": "perpetual", "active": true, "availableSince": "2020-10-14T00:00:00.000Z", "priceIncrement": 0.001, "amountIncrement": 0.1, "minTradeAmount": 0.1, "makerFee": 0.0002, "takerFee": 0.0004, "inverse": false, "contractType": "linear_perpetual", "contractMultiplier": 1, "underlyingIndex": "ksmusdt", "changes": [{"until": "2024-07-25T06:35:00.000Z", "priceIncrement": 0.01}], "listing": "2019-09-25T08:00:00.000Z"}, {"id": "ftmusdt", "datasetId": "FTMUSDT", "exchange": "binance-futures", "baseCurrency": "FTM", "quoteCurrency": "USDT", "type": "perpetual", "active": true, "availableSince": "2020-09-24T00:00:00.000Z", "priceIncrement": 0.0001, "amountIncrement": 1, "minTradeAmount": 1, "makerFee": 0.0002, "takerFee": 0.0004, "inverse": false, "contractType": "linear_perpetual", "contractMultiplier": 1, "underlyingIndex": "ftmusdt", "changes": [{"until": "2021-12-13T03:30:00.000Z", "priceIncrement": 1e-05}], "listing": "2019-09-25T08:00:00.000Z"}, {"id": "rlcusdt", "datasetId": "RLCUSDT", "exchange": "binance-futures", "baseCurrency": "RLC", "quoteCurrency": "USDT", "type": "perpetual", "active": true, "availableSince": "2020-08-01T00:00:00.000Z", "priceIncrement": 0.0001, "amountIncrement": 0.1, "minTradeAmount": 0.1, "makerFee": 0.0002, "takerFee": 0.0004, "inverse": false, "contractType": "linear_perpetual", "contractMultiplier": 1, "underlyingIndex": "rlcusdt", "listing": "2019-09-25T08:00:00.000Z"}, {"id": "steemusdt", "datasetId": "STEEMUSDT", "exchange": "binance-futures", "baseCurrency": "STEEM", "quoteCurrency": "USDT", "type": "perpetual", "active": true, "availableSince": "2023-11-08T00:00:00.000Z", "priceIncrement": 1e-05, "amountIncrement": 1, "minTradeAmount": 1, "makerFee": 0.0002, "takerFee": 0.0004, "inverse": false, "contractType": "linear_perpetual", "contractMultiplier": 1, "underlyingIndex": "steemusdt", "changes": [{"until": "2024-03-19T06:35:00.000Z", "priceIncrement": 0.0001}], "listing": "2023-11-08T14:30:00.000Z"}, {"id": "hiveusdt", "datasetId": "HIVEUSDT", "exchange": "binance-futures", "baseCurrency": "HIVE", "quoteCurrency": "USDT", "type": "perpetual", "active": true, "availableSince": "2024-12-23T00:00:00.000Z", "priceIncrement": 1e-05, "amountIncrement": 1, "minTradeAmount": 1, "makerFee": 0.0002, "takerFee": 0.0004, "inverse": false, "contractType": "linear_perpetual", "contractMultiplier": 1, "underlyingIndex": "hiveusdt", "listing": "2024-12-23T11:30:00.000Z"}, {"id": "xvgusdt", "datasetId": "XVGUSDT", "exchange": "binance-futures", "baseCurrency": "XVG", "quoteCurrency": "USDT", "type": "perpetual", "active": true, "availableSince": "2023-07-05T00:00:00.000Z", "priceIncrement": 1e-07, "amountIncrement": 1, "minTradeAmount": 1, "makerFee": 0.0002, "takerFee": 0.0004, "inverse": false, "contractType": "linear_perpetual", "contractMultiplier": 1, "underlyingIndex": "xvgusdt", "listing": "2023-07-05T12:00:00.000Z", "changes": [{"until": "2024-09-20T06:35:00.000Z", "priceIncrement": 1e-06}]}, {"id": "oxtusdt", "datasetId": "OXTUSDT", "exchange": "binance-futures", "baseCurrency": "OXT", "quoteCurrency": "USDT", "type": "perpetual", "active": true, "availableSince": "2023-08-11T00:00:00.000Z", "priceIncrement": 1e-05, "amountIncrement": 1, "minTradeAmount": 1, "makerFee": 0.0002, "takerFee": 0.0004, "inverse": false, "contractType": "linear_perpetual", "contractMultiplier": 1, "underlyingIndex": "oxtusdt", "listing": "2023-08-11T12:00:00.000Z"}, {"id": "umausdt", "datasetId": "UMAUSDT", "exchange": "binance-futures", "baseCurrency": "UMA", "quoteCurrency": "USDT", "type": "perpetual", "active": true, "availableSince": "2023-05-10T00:00:00.000Z", "priceIncrement": 0.001, "amountIncrement": 1, "minTradeAmount": 1, "makerFee": 0.0002, "takerFee": 0.0004, "inverse": false, "contractType": "linear_perpetual", "contractMultiplier": 1, "underlyingIndex": "umausdt", "listing": "2023-05-09T00:00:00.000Z"}, {"id": "flmusdt", "datasetId": "FLMUSDT", "exchange": "binance-futures", "baseCurrency": "FLM", "quoteCurrency": "USDT", "type": "perpetual", "active": true, "availableSince": "2020-09-30T00:00:00.000Z", "priceIncrement": 0.0001, "amountIncrement": 1, "minTradeAmount": 1, "makerFee": 0.0002, "takerFee": 0.0004, "inverse": false, "contractType": "linear_perpetual", "contractMultiplier": 1, "underlyingIndex": "flmusdt", "listing": "2019-09-25T08:00:00.000Z"}, {"id": "storjusdt", "datasetId": "STORJUSDT", "exchange": "binance-futures", "baseCurrency": "STORJ", "quoteCurrency": "USDT", "type": "perpetual", "active": true, "availableSince": "2020-09-16T00:00:00.000Z", "priceIncrement": 0.0001, "amountIncrement": 1, "minTradeAmount": 1, "makerFee": 0.0002, "takerFee": 0.0004, "inverse": false, "contractType": "linear_perpetual", "contractMultiplier": 1, "underlyingIndex": "storjusdt", "listing": "2019-09-25T08:00:00.000Z"}, {"id": "alphausdt", "datasetId": "ALPHAUSDT", "exchange": "binance-futures", "baseCurrency": "ALPHA", "quoteCurrency": "USDT", "type": "perpetual", "active": true, "availableSince": "2020-11-23T00:00:00.000Z", "priceIncrement": 1e-05, "amountIncrement": 1, "minTradeAmount": 1, "makerFee": 0.0002, "takerFee": 0.0004, "inverse": false, "contractType": "linear_perpetual", "contractMultiplier": 1, "underlyingIndex": "alphausdt", "changes": [{"until": "2022-11-10T06:00:00.000Z", "priceIncrement": 0.0001}], "listing": "2019-09-25T08:00:00.000Z"}, {"id": "axsusdt", "datasetId": "AXSUSDT", "exchange": "binance-futures", "baseCurrency": "AXS", "quoteCurrency": "USDT", "type": "perpetual", "active": true, "availableSince": "2020-11-20T00:00:00.000Z", "priceIncrement": 0.001, "amountIncrement": 1, "minTradeAmount": 1, "makerFee": 0.0002, "takerFee": 0.0004, "inverse": false, "contractType": "linear_perpetual", "contractMultiplier": 1, "underlyingIndex": "axsusdt", "changes": [{"until": "2022-11-10T06:00:00.000Z", "priceIncrement": 0.01}], "listing": "2019-09-25T08:00:00.000Z"}, {"id": "belusdt", "datasetId": "BELUSDT", "exchange": "binance-futures", "baseCurrency": "BEL", "quoteCurrency": "USDT", "type": "perpetual", "active": true, "availableSince": "2020-11-18T00:00:00.000Z", "priceIncrement": 0.0001, "amountIncrement": 1, "minTradeAmount": 1, "makerFee": 0.0002, "takerFee": 0.0004, "inverse": false, "contractType": "linear_perpetual", "contractMultiplier": 1, "underlyingIndex": "belusdt", "listing": "2019-09-25T08:00:00.000Z"}, {"id": "stxusdt", "datasetId": "STXUSDT", "exchange": "binance-futures", "baseCurrency": "STX", "quoteCurrency": "USDT", "type": "perpetual", "active": true, "availableSince": "2023-02-21T00:00:00.000Z", "priceIncrement": 0.0001, "amountIncrement": 1, "minTradeAmount": 1, "makerFee": 0.0002, "takerFee": 0.0004, "inverse": false, "contractType": "linear_perpetual", "contractMultiplier": 1, "underlyingIndex": "stxusdt", "listing": "2023-02-20T07:00:00.000Z"}, {"id": "zenusdt", "datasetId": "ZENUSDT", "exchange": "binance-futures", "baseCurrency": "ZEN", "quoteCurrency": "USDT", "type": "perpetual", "active": true, "availableSince": "2020-11-24T00:00:00.000Z", "priceIncrement": 0.001, "amountIncrement": 0.1, "minTradeAmount": 0.1, "makerFee": 0.0002, "takerFee": 0.0004, "inverse": false, "contractType": "linear_perpetual", "contractMultiplier": 1, "underlyingIndex": "zenusdt", "listing": "2019-09-25T08:00:00.000Z"}, {"id": "runeusdt", "datasetId": "RUNEUSDT", "exchange": "binance-futures", "baseCurrency": "RUNE", "quoteCurrency": "USDT", "type": "perpetual", "active": true, "availableSince": "2020-09-04T00:00:00.000Z", "priceIncrement": 0.001, "amountIncrement": 1, "minTradeAmount": 1, "makerFee": 0.0002, "takerFee": 0.0004, "inverse": false, "contractType": "linear_perpetual", "contractMultiplier": 1, "underlyingIndex": "runeusdt", "listing": "2019-09-25T08:00:00.000Z"}, {"id": "nearusdt", "datasetId": "NEARUSDT", "exchange": "binance-futures", "baseCurrency": "NEAR", "quoteCurrency": "USDT", "type": "perpetual", "active": true, "availableSince": "2020-10-16T00:00:00.000Z", "priceIncrement": 0.001, "amountIncrement": 1, "minTradeAmount": 1, "makerFee": 0.0002, "takerFee": 0.0004, "inverse": false, "contractType": "linear_perpetual", "contractMultiplier": 1, "underlyingIndex": "nearusdt", "changes": [{"until": "2022-01-20T03:30:00.000Z", "priceIncrement": 0.0001}], "listing": "2019-09-25T08:00:00.000Z"}, {"id": "nearusdc", "datasetId": "NEARUSDC", "exchange": "binance-futures", "baseCurrency": "NEAR", "quoteCurrency": "USDC", "type": "perpetual", "active": true, "availableSince": "2024-04-11T00:00:00.000Z", "priceIncrement": 0.001, "amountIncrement": 1, "minTradeAmount": 1, "makerFee": 0.0002, "takerFee": 0.0004, "inverse": false, "contractType": "linear_perpetual", "contractMultiplier": 1, "underlyingIndex": "nearusdc", "listing": "2024-04-11T07:15:00.000Z"}, {"id": "avausdt", "datasetId": "AVAUSDT", "exchange": "binance-futures", "baseCurrency": "AVA", "quoteCurrency": "USDT", "type": "perpetual", "active": true, "availableSince": "2024-12-13T00:00:00.000Z", "priceIncrement": 0.0001, "amountIncrement": 0.1, "minTradeAmount": 0.1, "makerFee": 0.0002, "takerFee": 0.0004, "inverse": false, "contractType": "linear_perpetual", "contractMultiplier": 1, "underlyingIndex": "avausdt", "listing": "2024-12-13T13:00:00.000Z"}, {"id": "sysusdt", "datasetId": "SYSUSDT", "exchange": "binance-futures", "baseCurrency": "SYS", "quoteCurrency": "USDT", "type": "perpetual", "active": true, "availableSince": "2024-08-19T00:00:00.000Z", "priceIncrement": 1e-05, "amountIncrement": 1, "minTradeAmount": 1, "makerFee": 0.0002, "takerFee": 0.0004, "inverse": false, "contractType": "linear_perpetual", "contractMultiplier": 1, "underlyingIndex": "sysusdt", "listing": "2024-08-19T12:30:00.000Z", "changes": [{"until": "2024-11-04T06:35:00.000Z", "priceIncrement": 0.0001}]}, {"id": "sklusdt", "datasetId": "SKLUSDT", "exchange": "binance-futures", "baseCurrency": "SKL", "quoteCurrency": "USDT", "type": "perpetual", "active": true, "availableSince": "2020-12-08T00:00:00.000Z", "priceIncrement": 1e-05, "amountIncrement": 1, "minTradeAmount": 1, "makerFee": 0.0002, "takerFee": 0.0004, "inverse": false, "contractType": "linear_perpetual", "contractMultiplier": 1, "underlyingIndex": "sklusdt", "listing": "2020-08-24T07:00:00.000Z"}, {"id": "ghstusdt", "datasetId": "GHSTUSDT", "exchange": "binance-futures", "baseCurrency": "GHST", "quoteCurrency": "USDT", "type": "perpetual", "active": true, "availableSince": "2024-09-23T00:00:00.000Z", "priceIncrement": 0.0001, "amountIncrement": 1, "minTradeAmount": 1, "makerFee": 0.0002, "takerFee": 0.0004, "inverse": false, "contractType": "linear_perpetual", "contractMultiplier": 1, "underlyingIndex": "ghstusdt", "listing": "2024-09-23T13:00:00.000Z", "changes": [{"until": "2024-11-04T06:35:00.000Z", "priceIncrement": 0.001}]}, {"id": "grtusdt", "datasetId": "GRTUSDT", "exchange": "binance-futures", "baseCurrency": "GRT", "quoteCurrency": "USDT", "type": "perpetual", "active": true, "availableSince": "2020-12-19T00:00:00.000Z", "priceIncrement": 1e-05, "amountIncrement": 1, "minTradeAmount": 1, "makerFee": 0.0002, "takerFee": 0.0004, "inverse": false, "contractType": "linear_perpetual", "contractMultiplier": 1, "underlyingIndex": "grtusdt", "listing": "2020-12-18T07:00:00.000Z"}, {"id": "fidausdt", "datasetId": "FIDAUSDT", "exchange": "binance-futures", "baseCurrency": "FIDA", "quoteCurrency": "USDT", "type": "perpetual", "active": true, "availableSince": "2024-09-19T00:00:00.000Z", "priceIncrement": 1e-05, "amountIncrement": 1, "minTradeAmount": 1, "makerFee": 0.0002, "takerFee": 0.0004, "inverse": false, "contractType": "linear_perpetual", "contractMultiplier": 1, "underlyingIndex": "fidausdt", "listing": "2024-09-19T12:30:00.000Z", "changes": [{"until": "2024-11-28T06:35:00.000Z", "priceIncrement": 0.0001}]}, {"id": "bntusdt", "datasetId": "BNTUSDT", "exchange": "binance-futures", "baseCurrency": "BNT", "quoteCurrency": "USDT", "type": "perpetual", "active": true, "availableSince": "2023-08-10T00:00:00.000Z", "priceIncrement": 1e-05, "amountIncrement": 1, "minTradeAmount": 1, "makerFee": 0.0002, "takerFee": 0.0004, "inverse": false, "contractType": "linear_perpetual", "contractMultiplier": 1, "underlyingIndex": "bntusdt", "changes": [{"until": "2024-07-25T06:40:00.000Z", "priceIncrement": 0.0001}], "listing": "2023-08-10T12:00:00.000Z"}, {"id": "chzusdt", "datasetId": "CHZUSDT", "exchange": "binance-futures", "baseCurrency": "CHZ", "quoteCurrency": "USDT", "type": "perpetual", "active": true, "availableSince": "2021-01-21T00:00:00.000Z", "priceIncrement": 1e-05, "amountIncrement": 1, "minTradeAmount": 1, "makerFee": 0.0002, "takerFee": 0.0004, "inverse": false, "contractType": "linear_perpetual", "contractMultiplier": 1, "underlyingIndex": "chzusdt", "listing": "2021-01-21T07:00:00.000Z"}, {"id": "1inchusdt", "datasetId": "1INCHUSDT", "exchange": "binance-futures", "baseCurrency": "1INCH", "quoteCurrency": "USDT", "type": "perpetual", "active": true, "availableSince": "2020-12-25T00:00:00.000Z", "priceIncrement": 0.0001, "amountIncrement": 1, "minTradeAmount": 1, "makerFee": 0.0002, "takerFee": 0.0004, "inverse": false, "contractType": "linear_perpetual", "contractMultiplier": 1, "underlyingIndex": "1inchusdt", "listing": "2020-12-25T07:00:00.000Z"}, {"id": "celousdt", "datasetId": "CELOUSDT", "exchange": "binance-futures", "baseCurrency": "CELO", "quoteCurrency": "USDT", "type": "perpetual", "active": true, "availableSince": "2021-09-27T00:00:00.000Z", "priceIncrement": 0.001, "amountIncrement": 0.1, "minTradeAmount": 0.1, "makerFee": 0.0002, "takerFee": 0.0004, "inverse": false, "contractType": "linear_perpetual", "contractMultiplier": 1, "underlyingIndex": "celousdt", "listing": "2021-09-26T07:00:00.000Z"}, {"id": "rsrusdt", "datasetId": "RSRUSDT", "exchange": "binance-futures", "baseCurrency": "RSR", "quoteCurrency": "USDT", "type": "perpetual", "active": true, "availableSince": "2020-10-19T00:00:00.000Z", "priceIncrement": 1e-06, "amountIncrement": 1, "minTradeAmount": 1, "makerFee": 0.0002, "takerFee": 0.0004, "inverse": false, "contractType": "linear_perpetual", "contractMultiplier": 1, "underlyingIndex": "rsrusdt", "listing": "2019-09-25T08:00:00.000Z"}, {"id": "rifusdt", "datasetId": "RIFUSDT", "exchange": "binance-futures", "baseCurrency": "RIF", "quoteCurrency": "USDT", "type": "perpetual", "active": true, "availableSince": "2023-10-21T00:00:00.000Z", "priceIncrement": 1e-05, "amountIncrement": 1, "minTradeAmount": 1, "makerFee": 0.0002, "takerFee": 0.0004, "inverse": false, "contractType": "linear_perpetual", "contractMultiplier": 1, "underlyingIndex": "rifusdt", "listing": "2023-10-21T12:30:00.000Z"}, {"id": "truusdt", "datasetId": "TRUUSDT", "exchange": "binance-futures", "baseCurrency": "TRU", "quoteCurrency": "USDT", "type": "perpetual", "active": true, "availableSince": "2023-03-07T00:00:00.000Z", "priceIncrement": 1e-05, "amountIncrement": 1, "minTradeAmount": 1, "makerFee": 0.0002, "takerFee": 0.0004, "inverse": false, "contractType": "linear_perpetual", "contractMultiplier": 1, "underlyingIndex": "truusdt", "listing": "2023-03-06T07:00:00.000Z"}, {"id": "dexeusdt", "datasetId": "DEXEUSDT", "exchange": "binance-futures", "baseCurrency": "DEXE", "quoteCurrency": "USDT", "type": "perpetual", "active": true, "availableSince": "2024-12-24T00:00:00.000Z", "priceIncrement": 0.001, "amountIncrement": 0.01, "minTradeAmount": 0.01, "makerFee": 0.0002, "takerFee": 0.0004, "inverse": false, "contractType": "linear_perpetual", "contractMultiplier": 1, "underlyingIndex": "dexeusdt", "listing": "2024-12-24T11:30:00.000Z"}, {"id": "sunusdt", "datasetId": "SUNUSDT", "exchange": "binance-futures", "baseCurrency": "SUN", "quoteCurrency": "USDT", "type": "perpetual", "active": true, "availableSince": "2024-08-22T00:00:00.000Z", "priceIncrement": 1e-06, "amountIncrement": 1, "minTradeAmount": 1, "makerFee": 0.0002, "takerFee": 0.0004, "inverse": false, "contractType": "linear_perpetual", "contractMultiplier": 1, "underlyingIndex": "sunusdt", "listing": "2024-08-22T13:05:00.000Z"}, {"id": "ankrusdt", "datasetId": "ANKRUSDT", "exchange": "binance-futures", "baseCurrency": "ANKR", "quoteCurrency": "USDT", "type": "perpetual", "active": true, "availableSince": "2021-01-26T00:00:00.000Z", "priceIncrement": 1e-05, "amountIncrement": 1, "minTradeAmount": 1, "makerFee": 0.0002, "takerFee": 0.0004, "inverse": false, "contractType": "linear_perpetual", "contractMultiplier": 1, "underlyingIndex": "ankrusdt", "listing": "2021-01-25T07:00:00.000Z"}, {"id": "sandusdt", "datasetId": "SANDUSDT", "exchange": "binance-futures", "baseCurrency": "SAND", "quoteCurrency": "USDT", "type": "perpetual", "active": true, "availableSince": "2021-01-25T00:00:00.000Z", "priceIncrement": 1e-05, "amountIncrement": 1, "minTradeAmount": 1, "makerFee": 0.0002, "takerFee": 0.0004, "inverse": false, "contractType": "linear_perpetual", "contractMultiplier": 1, "underlyingIndex": "sandusdt", "changes": [{"until": "2021-12-13T03:30:00.000Z", "priceIncrement": 1e-05}, {"until": "2024-11-04T06:35:00.000Z", "priceIncrement": 0.0001}], "listing": "2021-01-18T07:00:00.000Z"}, {"id": "reefusdt", "datasetId": "REEFUSDT", "exchange": "binance-futures", "baseCurrency": "REEF", "quoteCurrency": "USDT", "type": "perpetual", "active": true, "availableSince": "2021-02-22T00:00:00.000Z", "priceIncrement": 1e-06, "amountIncrement": 1, "minTradeAmount": 1, "makerFee": 0.0002, "takerFee": 0.0004, "inverse": false, "contractType": "linear_perpetual", "contractMultiplier": 1, "underlyingIndex": "reefusdt", "listing": "2021-01-25T07:00:00.000Z"}, {"id": "litusdt", "datasetId": "LITUSDT", "exchange": "binance-futures", "baseCurrency": "LIT", "quoteCurrency": "USDT", "type": "perpetual", "active": true, "availableSince": "2021-02-18T00:00:00.000Z", "priceIncrement": 0.001, "amountIncrement": 0.1, "minTradeAmount": 0.1, "makerFee": 0.0002, "takerFee": 0.0004, "inverse": false, "contractType": "linear_perpetual", "contractMultiplier": 1, "underlyingIndex": "litusdt", "listing": "2021-02-17T07:00:00.000Z"}, {"id": "badgerusdt", "datasetId": "BADGERUSDT", "exchange": "binance-futures", "baseCurrency": "BADGER", "quoteCurrency": "USDT", "type": "perpetual", "active": true, "availableSince": "2023-11-09T00:00:00.000Z", "priceIncrement": 0.0001, "amountIncrement": 1, "minTradeAmount": 1, "makerFee": 0.0002, "takerFee": 0.0004, "inverse": false, "contractType": "linear_perpetual", "contractMultiplier": 1, "underlyingIndex": "badgerusdt", "changes": [{"until": "2024-07-25T06:40:00.000Z", "priceIncrement": 0.001}], "listing": "2023-11-09T12:30:00.000Z"}, {"id": "icpusdt", "datasetId": "ICPUSDT", "exchange": "binance-futures", "baseCurrency": "ICP", "quoteCurrency": "USDT", "type": "perpetual", "active": true, "availableSince": "2021-05-11T00:00:00.000Z", "priceIncrement": 0.001, "amountIncrement": 1, "minTradeAmount": 1, "makerFee": 0.0002, "takerFee": 0.0004, "inverse": false, "contractType": "linear_perpetual", "contractMultiplier": 1, "underlyingIndex": "icpusdt", "changes": [{"until": "2022-09-26T07:30:00.000Z", "priceIncrement": 0.01, "amountIncrement": 0.01, "minTradeAmount": 0.01}], "listing": "2021-07-30T07:00:00.000Z"}, {"id": "flowusdt", "datasetId": "FLOWUSDT", "exchange": "binance-futures", "baseCurrency": "FLOW", "quoteCurrency": "USDT", "type": "perpetual", "active": true, "availableSince": "2022-02-10T00:00:00.000Z", "priceIncrement": 0.001, "amountIncrement": 0.1, "minTradeAmount": 0.1, "makerFee": 0.0002, "takerFee": 0.0004, "inverse": false, "contractType": "linear_perpetual", "contractMultiplier": 1, "underlyingIndex": "flowusdt", "listing": "2022-02-09T07:00:00.000Z"}, {"id": "cakeusdt", "datasetId": "CAKEUSDT", "exchange": "binance-futures", "baseCurrency": "CAKE", "quoteCurrency": "USDT", "type": "perpetual", "active": true, "availableSince": "2023-11-02T00:00:00.000Z", "priceIncrement": 0.0001, "amountIncrement": 1, "minTradeAmount": 1, "makerFee": 0.0002, "takerFee": 0.0004, "inverse": false, "contractType": "linear_perpetual", "contractMultiplier": 1, "underlyingIndex": "cakeusdt", "listing": "2023-11-02T12:45:00.000Z"}, {"id": "galausdt", "datasetId": "GALAUSDT", "exchange": "binance-futures", "baseCurrency": "GALA", "quoteCurrency": "USDT", "type": "perpetual", "active": true, "availableSince": "2021-09-18T00:00:00.000Z", "priceIncrement": 1e-05, "amountIncrement": 1, "minTradeAmount": 1, "makerFee": 0.0002, "takerFee": 0.0004, "inverse": false, "contractType": "linear_perpetual", "contractMultiplier": 1, "underlyingIndex": "galausdt", "listing": "2021-09-17T07:00:00.000Z"}, {"id": "arusdt", "datasetId": "ARUSDT", "exchange": "binance-futures", "baseCurrency": "AR", "quoteCurrency": "USDT", "type": "perpetual", "active": true, "availableSince": "2021-09-28T00:00:00.000Z", "priceIncrement": 0.001, "amountIncrement": 0.1, "minTradeAmount": 0.1, "makerFee": 0.0002, "takerFee": 0.0004, "inverse": false, "contractType": "linear_perpetual", "contractMultiplier": 1, "underlyingIndex": "arusdt", "listing": "2021-09-28T07:00:00.000Z"}, {"id": "qntusdt", "datasetId": "QNTUSDT", "exchange": "binance-futures", "baseCurrency": "QNT", "quoteCurrency": "USDT", "type": "perpetual", "active": true, "availableSince": "2022-10-20T00:00:00.000Z", "priceIncrement": 0.01, "amountIncrement": 0.1, "minTradeAmount": 0.1, "makerFee": 0.0002, "takerFee": 0.0004, "inverse": false, "contractType": "linear_perpetual", "contractMultiplier": 1, "underlyingIndex": "qntusdt", "listing": "2022-10-18T07:00:00.000Z"}, {"id": "roseusdt", "datasetId": "ROSEUSDT", "exchange": "binance-futures", "baseCurrency": "ROSE", "quoteCurrency": "USDT", "type": "perpetual", "active": true, "availableSince": "2021-12-31T00:00:00.000Z", "priceIncrement": 1e-05, "amountIncrement": 1, "minTradeAmount": 1, "makerFee": 0.0002, "takerFee": 0.0004, "inverse": false, "contractType": "linear_perpetual", "contractMultiplier": 1, "underlyingIndex": "roseusdt", "listing": "2021-12-31T07:00:00.000Z"}, {"id": "kdausdt", "datasetId": "KDAUSDT", "exchange": "binance-futures", "baseCurrency": "KDA", "quoteCurrency": "USDT", "type": "perpetual", "active": true, "availableSince": "2024-09-18T00:00:00.000Z", "priceIncrement": 0.0001, "amountIncrement": 1, "minTradeAmount": 1, "makerFee": 0.0002, "takerFee": 0.0004, "inverse": false, "contractType": "linear_perpetual", "contractMultiplier": 1, "underlyingIndex": "kdausdt", "listing": "2024-09-18T13:30:00.000Z"}, {"id": "minausdt", "datasetId": "MINAUSDT", "exchange": "binance-futures", "baseCurrency": "MINA", "quoteCurrency": "USDT", "type": "perpetual", "active": true, "availableSince": "2023-02-06T00:00:00.000Z", "priceIncrement": 0.0001, "amountIncrement": 1, "minTradeAmount": 1, "makerFee": 0.0002, "takerFee": 0.0004, "inverse": false, "contractType": "linear_perpetual", "contractMultiplier": 1, "underlyingIndex": "minausdt", "listing": "2023-02-03T07:00:00.000Z"}, {"id": "scrtusdt", "datasetId": "SCRTUSDT", "exchange": "binance-futures", "baseCurrency": "SCRT", "quoteCurrency": "USDT", "type": "perpetual", "active": true, "availableSince": "2024-11-21T00:00:00.000Z", "priceIncrement": 0.0001, "amountIncrement": 1, "minTradeAmount": 1, "makerFee": 0.0002, "takerFee": 0.0004, "inverse": false, "contractType": "linear_perpetual", "contractMultiplier": 1, "underlyingIndex": "scrtusdt", "listing": "2024-11-21T11:30:00.000Z"}, {"id": "hotusdt", "datasetId": "HOTUSDT", "exchange": "binance-futures", "baseCurrency": "HOT", "quoteCurrency": "USDT", "type": "perpetual", "active": true, "availableSince": "2021-03-30T00:00:00.000Z", "priceIncrement": 1e-06, "amountIncrement": 1, "minTradeAmount": 1, "makerFee": 0.0002, "takerFee": 0.0004, "inverse": false, "contractType": "linear_perpetual", "contractMultiplier": 1, "underlyingIndex": "hotusdt", "listing": "2021-03-30T07:00:00.000Z"}, {"id": "iotxusdt", "datasetId": "IOTXUSDT", "exchange": "binance-futures", "baseCurrency": "IOTX", "quoteCurrency": "USDT", "type": "perpetual", "active": true, "availableSince": "2021-08-12T00:00:00.000Z", "priceIncrement": 1e-05, "amountIncrement": 1, "minTradeAmount": 1, "makerFee": 0.0002, "takerFee": 0.0004, "inverse": false, "contractType": "linear_perpetual", "contractMultiplier": 1, "underlyingIndex": "iotxusdt", "listing": "2021-08-11T07:00:00.000Z"}, {"id": "yggusdt", "datasetId": "YGGUSDT", "exchange": "binance-futures", "baseCurrency": "YGG", "quoteCurrency": "USDT", "type": "perpetual", "active": true, "availableSince": "2023-08-05T00:00:00.000Z", "priceIncrement": 0.0001, "amountIncrement": 1, "minTradeAmount": 1, "makerFee": 0.0002, "takerFee": 0.0004, "inverse": false, "contractType": "linear_perpetual", "contractMultiplier": 1, "underlyingIndex": "yggusdt", "listing": "2023-08-05T03:30:00.000Z"}, {"id": "waxpusdt", "datasetId": "WAXPUSDT", "exchange": "binance-futures", "baseCurrency": "WAXP", "quoteCurrency": "USDT", "type": "perpetual", "active": true, "availableSince": "2023-10-18T00:00:00.000Z", "priceIncrement": 1e-05, "amountIncrement": 1, "minTradeAmount": 1, "makerFee": 0.0002, "takerFee": 0.0004, "inverse": false, "contractType": "linear_perpetual", "contractMultiplier": 1, "underlyingIndex": "waxpusdt", "listing": "2023-10-18T14:45:00.000Z"}, {"id": "spellusdt", "datasetId": "SPELLUSDT", "exchange": "binance-futures", "baseCurrency": "SPELL", "quoteCurrency": "USDT", "type": "perpetual", "active": true, "availableSince": "2022-09-06T00:00:00.000Z", "priceIncrement": 1e-07, "amountIncrement": 1, "minTradeAmount": 1, "makerFee": 0.0002, "takerFee": 0.0004, "inverse": false, "contractType": "linear_perpetual", "contractMultiplier": 1, "underlyingIndex": "spellusdt", "changes": [{"until": "2022-11-10T06:00:00.000Z", "priceIncrement": 1e-06}], "listing": "2022-09-05T07:00:00.000Z"}, {"id": "lptusdt", "datasetId": "LPTUSDT", "exchange": "binance-futures", "baseCurrency": "LPT", "quoteCurrency": "USDT", "type": "perpetual", "active": true, "availableSince": "2021-11-11T00:00:00.000Z", "priceIncrement": 0.001, "amountIncrement": 0.1, "minTradeAmount": 0.1, "makerFee": 0.0002, "takerFee": 0.0004, "inverse": false, "contractType": "linear_perpetual", "contractMultiplier": 1, "underlyingIndex": "lptusdt", "listing": "2021-11-10T07:00:00.000Z"}, {"id": "tonusdt", "datasetId": "TONUSDT", "exchange": "binance-futures", "baseCurrency": "TON", "quoteCurrency": "USDT", "type": "perpetual", "active": true, "availableSince": "2024-03-01T00:00:00.000Z", "priceIncrement": 0.0001, "amountIncrement": 0.1, "minTradeAmount": 0.1, "makerFee": 0.0002, "takerFee": 0.0004, "inverse": false, "contractType": "linear_perpetual", "contractMultiplier": 1, "underlyingIndex": "tonusdt", "listing": "2024-03-01T12:30:00.000Z"}, {"id": "ondousdt", "datasetId": "ONDOUSDT", "exchange": "binance-futures", "baseCurrency": "ONDO", "quoteCurrency": "USDT", "type": "perpetual", "active": true, "availableSince": "2024-01-20T00:00:00.000Z", "priceIncrement": 0.0001, "amountIncrement": 0.1, "minTradeAmount": 0.1, "makerFee": 0.0002, "takerFee": 0.0004, "inverse": false, "contractType": "linear_perpetual", "contractMultiplier": 1, "underlyingIndex": "ondousdt", "changes": [{"until": "2024-01-21T07:00:00.000Z", "amountIncrement": 1, "minTradeAmount": 1}], "listing": "2024-01-20T13:00:00.000Z"}, {"id": "ldousdt", "datasetId": "LDOUSDT", "exchange": "binance-futures", "baseCurrency": "LDO", "quoteCurrency": "USDT", "type": "perpetual", "active": true, "availableSince": "2022-09-22T00:00:00.000Z", "priceIncrement": 0.0001, "amountIncrement": 1, "minTradeAmount": 1, "makerFee": 0.0002, "takerFee": 0.0004, "inverse": false, "contractType": "linear_perpetual", "contractMultiplier": 1, "underlyingIndex": "ldousdt", "changes": [{"until": "2022-11-10T06:00:00.000Z", "priceIncrement": 0.001}], "listing": "2022-09-21T07:00:00.000Z"}, {"id": "brettusdt", "datasetId": "BRETTUSDT", "exchange": "binance-futures", "baseCurrency": "BRETT", "quoteCurrency": "USDT", "type": "perpetual", "active": true, "availableSince": "2024-08-20T00:00:00.000Z", "priceIncrement": 1e-05, "amountIncrement": 1, "minTradeAmount": 1, "makerFee": 0.0002, "takerFee": 0.0004, "inverse": false, "contractType": "linear_perpetual", "contractMultiplier": 1, "underlyingIndex": "brettusdt", "listing": "2024-08-20T10:35:00.000Z"}, {"id": "jasmyusdt", "datasetId": "JASMYUSDT", "exchange": "binance-futures", "baseCurrency": "JASMY", "quoteCurrency": "USDT", "type": "perpetual", "active": true, "availableSince": "2022-04-20T00:00:00.000Z", "priceIncrement": 1e-06, "amountIncrement": 1, "minTradeAmount": 1, "makerFee": 0.0002, "takerFee": 0.0004, "inverse": false, "contractType": "linear_perpetual", "contractMultiplier": 1, "underlyingIndex": "jasmyusdt", "changes": [{"until": "2022-08-01T07:00:00.000Z", "priceIncrement": 1e-05}], "listing": "2022-04-19T07:00:00.000Z"}, {"id": "mewusdt", "datasetId": "MEWUSDT", "exchange": "binance-futures", "baseCurrency": "MEW", "quoteCurrency": "USDT", "type": "perpetual", "active": true, "availableSince": "2024-06-17T00:00:00.000Z", "priceIncrement": 1e-06, "amountIncrement": 1, "minTradeAmount": 1, "makerFee": 0.0002, "takerFee": 0.0004, "inverse": false, "contractType": "linear_perpetual", "contractMultiplier": 1, "underlyingIndex": "mewusdt", "listing": "2024-06-17T14:00:00.000Z"}, {"id": "aerousdt", "datasetId": "AEROUSDT", "exchange": "binance-futures", "baseCurrency": "AERO", "quoteCurrency": "USDT", "type": "perpetual", "active": true, "availableSince": "2024-12-04T00:00:00.000Z", "priceIncrement": 0.0001, "amountIncrement": 0.1, "minTradeAmount": 0.1, "makerFee": 0.0002, "takerFee": 0.0004, "inverse": false, "contractType": "linear_perpetual", "contractMultiplier": 1, "underlyingIndex": "aerousdt", "listing": "2024-12-04T14:15:00.000Z"}, {"id": "pendleusdt", "datasetId": "PENDLEUSDT", "exchange": "binance-futures", "baseCurrency": "PENDLE", "quoteCurrency": "USDT", "type": "perpetual", "active": true, "availableSince": "2023-07-28T00:00:00.000Z", "priceIncrement": 0.0001, "amountIncrement": 1, "minTradeAmount": 1, "makerFee": 0.0002, "takerFee": 0.0004, "inverse": false, "contractType": "linear_perpetual", "contractMultiplier": 1, "underlyingIndex": "pendleusdt", "listing": "2023-07-28T02:30:00.000Z"}, {"id": "apeusdt", "datasetId": "APEUSDT", "exchange": "binance-futures", "baseCurrency": "APE", "quoteCurrency": "USDT", "type": "perpetual", "active": true, "availableSince": "2022-03-17T00:00:00.000Z", "priceIncrement": 0.0001, "amountIncrement": 1, "minTradeAmount": 1, "makerFee": 0.0002, "takerFee": 0.0004, "inverse": false, "contractType": "linear_perpetual", "contractMultiplier": 1, "underlyingIndex": "apeusdt", "changes": [{"until": "2024-02-05T06:40:00.000Z", "priceIncrement": 0.001}], "listing": "2022-03-17T07:00:00.000Z"}, {"id": "strkusdt", "datasetId": "STRKUSDT", "exchange": "binance-futures", "baseCurrency": "STRK", "quoteCurrency": "USDT", "type": "perpetual", "active": true, "availableSince": "2024-02-20T00:00:00.000Z", "priceIncrement": 0.0001, "amountIncrement": 0.1, "minTradeAmount": 0.1, "makerFee": 0.0002, "takerFee": 0.0004, "inverse": false, "contractType": "linear_perpetual", "contractMultiplier": 1, "underlyingIndex": "strkusdt", "listing": "2024-02-20T17:00:00.000Z"}, {"id": "ordiusdt", "datasetId": "ORDIUSDT", "exchange": "binance-futures", "baseCurrency": "ORDI", "quoteCurrency": "USDT", "type": "perpetual", "active": true, "availableSince": "2023-11-07T00:00:00.000Z", "priceIncrement": 0.001, "amountIncrement": 0.1, "minTradeAmount": 0.1, "makerFee": 0.0002, "takerFee": 0.0004, "inverse": false, "contractType": "linear_perpetual", "contractMultiplier": 1, "underlyingIndex": "ordiusdt", "listing": "2023-11-07T12:30:00.000Z"}, {"id": "ordiusdc", "datasetId": "ORDIUSDC", "exchange": "binance-futures", "baseCurrency": "ORDI", "quoteCurrency": "USDC", "type": "perpetual", "active": true, "availableSince": "2024-02-22T00:00:00.000Z", "priceIncrement": 0.001, "amountIncrement": 0.1, "minTradeAmount": 0.1, "makerFee": 0.0002, "takerFee": 0.0004, "inverse": false, "contractType": "linear_perpetual", "contractMultiplier": 1, "underlyingIndex": "ordiusdc", "listing": "2024-02-22T07:00:00.000Z"}, {"id": "notusdt", "datasetId": "NOTUSDT", "exchange": "binance-futures", "baseCurrency": "NOT", "quoteCurrency": "USDT", "type": "perpetual", "active": true, "availableSince": "2024-05-16T00:00:00.000Z", "priceIncrement": 1e-06, "amountIncrement": 1, "minTradeAmount": 1, "makerFee": 0.0002, "takerFee": 0.0004, "inverse": false, "contractType": "linear_perpetual", "contractMultiplier": 1, "underlyingIndex": "notusdt", "listing": "2024-05-16T14:00:00.000Z"}, {"id": "cfxusdt", "datasetId": "CFXUSDT", "exchange": "binance-futures", "baseCurrency": "CFX", "quoteCurrency": "USDT", "type": "perpetual", "active": true, "availableSince": "2023-02-20T00:00:00.000Z", "priceIncrement": 1e-05, "amountIncrement": 1, "minTradeAmount": 1, "makerFee": 0.0002, "takerFee": 0.0004, "inverse": false, "contractType": "linear_perpetual", "contractMultiplier": 1, "underlyingIndex": "cfxusdt", "changes": [{"until": "2024-03-19T06:40:00.000Z", "priceIncrement": 0.0001}], "listing": "2023-02-19T07:00:00.000Z"}, {"id": "neirousdt", "datasetId": "NEIROUSDT", "exchange": "binance-futures", "baseCurrency": "NEIRO", "quoteCurrency": "USDT", "type": "perpetual", "active": true, "availableSince": "2024-09-16T00:00:00.000Z", "priceIncrement": 1e-07, "amountIncrement": 1, "minTradeAmount": 1, "makerFee": 0.0002, "takerFee": 0.0004, "inverse": false, "contractType": "linear_perpetual", "contractMultiplier": 1, "underlyingIndex": "neirousdt", "listing": "2024-09-16T11:30:00.000Z"}, {"id": "dydxusdt", "datasetId": "DYDXUSDT", "exchange": "binance-futures", "baseCurrency": "DYDX", "quoteCurrency": "USDT", "type": "perpetual", "active": true, "availableSince": "2021-09-10T00:00:00.000Z", "priceIncrement": 0.001, "amountIncrement": 0.1, "minTradeAmount": 0.1, "makerFee": 0.0002, "takerFee": 0.0004, "inverse": false, "contractType": "linear_perpetual", "contractMultiplier": 1, "underlyingIndex": "dydxusdt", "listing": "2021-09-09T07:00:00.000Z"}, {"id": "superusdt", "datasetId": "SUPERUSDT", "exchange": "binance-futures", "baseCurrency": "SUPER", "quoteCurrency": "USDT", "type": "perpetual", "active": true, "availableSince": "2023-11-26T00:00:00.000Z", "priceIncrement": 0.0001, "amountIncrement": 1, "minTradeAmount": 1, "makerFee": 0.0002, "takerFee": 0.0004, "inverse": false, "contractType": "linear_perpetual", "contractMultiplier": 1, "underlyingIndex": "superusdt", "listing": "2023-11-26T13:00:00.000Z"}, {"id": "axlusdt", "datasetId": "AXLUSDT", "exchange": "binance-futures", "baseCurrency": "AXL", "quoteCurrency": "USDT", "type": "perpetual", "active": true, "availableSince": "2024-03-01T00:00:00.000Z", "priceIncrement": 0.0001, "amountIncrement": 0.1, "minTradeAmount": 0.1, "makerFee": 0.0002, "takerFee": 0.0004, "inverse": false, "contractType": "linear_perpetual", "contractMultiplier": 1, "underlyingIndex": "axlusdt", "listing": "2024-03-01T15:30:00.000Z"}, {"id": "wusdt", "datasetId": "WUSDT", "exchange": "binance-futures", "baseCurrency": "W", "quoteCurrency": "USDT", "type": "perpetual", "active": true, "availableSince": "2024-04-03T00:00:00.000Z", "priceIncrement": 1e-05, "amountIncrement": 0.1, "minTradeAmount": 0.1, "makerFee": 0.0002, "takerFee": 0.0004, "inverse": false, "contractType": "linear_perpetual", "contractMultiplier": 1, "underlyingIndex": "wusdt", "changes": [{"until": "2024-04-11T06:40:00.000Z", "priceIncrement": 0.001}, {"until": "2024-11-28T06:30:00.000Z", "priceIncrement": 0.0001}], "listing": "2024-04-03T15:30:00.000Z"}, {"id": "aktusdt", "datasetId": "AKTUSDT", "exchange": "binance-futures", "baseCurrency": "AKT", "quoteCurrency": "USDT", "type": "perpetual", "active": true, "availableSince": "2024-11-18T00:00:00.000Z", "priceIncrement": 0.001, "amountIncrement": 0.1, "minTradeAmount": 0.1, "makerFee": 0.0002, "takerFee": 0.0004, "inverse": false, "contractType": "linear_perpetual", "contractMultiplier": 1, "underlyingIndex": "aktusdt", "listing": "2024-11-18T11:30:00.000Z"}, {"id": "goatusdt", "datasetId": "GOATUSDT", "exchange": "binance-futures", "baseCurrency": "GOAT", "quoteCurrency": "USDT", "type": "perpetual", "active": true, "availableSince": "2024-10-24T00:00:00.000Z", "priceIncrement": 0.0001, "amountIncrement": 1, "minTradeAmount": 1, "makerFee": 0.0002, "takerFee": 0.0004, "inverse": false, "contractType": "linear_perpetual", "contractMultiplier": 1, "underlyingIndex": "goatusdt", "listing": "2024-10-24T13:30:00.000Z"}, {"id": "ensusdt", "datasetId": "ENSUSDT", "exchange": "binance-futures", "baseCurrency": "ENS", "quoteCurrency": "USDT", "type": "perpetual", "active": true, "availableSince": "2021-11-30T00:00:00.000Z", "priceIncrement": 0.001, "amountIncrement": 0.1, "minTradeAmount": 0.1, "makerFee": 0.0002, "takerFee": 0.0004, "inverse": false, "contractType": "linear_perpetual", "contractMultiplier": 1, "underlyingIndex": "ensusdt", "listing": "2021-11-29T07:00:00.000Z"}, {"id": "bomeusdt", "datasetId": "BOMEUSDT", "exchange": "binance-futures", "baseCurrency": "BOME", "quoteCurrency": "USDT", "type": "perpetual", "active": true, "availableSince": "2024-03-16T00:00:00.000Z", "priceIncrement": 1e-06, "amountIncrement": 1, "minTradeAmount": 1, "makerFee": 0.0002, "takerFee": 0.0004, "inverse": false, "contractType": "linear_perpetual", "contractMultiplier": 1, "underlyingIndex": "bomeusdt", "listing": "2024-03-16T12:30:00.000Z"}, {"id": "bomeusdc", "datasetId": "BOMEUSDC", "exchange": "binance-futures", "baseCurrency": "BOME", "quoteCurrency": "USDC", "type": "perpetual", "active": true, "availableSince": "2024-04-25T00:00:00.000Z", "priceIncrement": 1e-06, "amountIncrement": 1, "minTradeAmount": 1, "makerFee": 0.0002, "takerFee": 0.0004, "inverse": false, "contractType": "linear_perpetual", "contractMultiplier": 1, "underlyingIndex": "bomeusdc", "listing": "2024-04-25T07:00:00.000Z"}, {"id": "ckbusdt", "datasetId": "CKBUSDT", "exchange": "binance-futures", "baseCurrency": "CKB", "quoteCurrency": "USDT", "type": "perpetual", "active": true, "availableSince": "2023-02-28T00:00:00.000Z", "priceIncrement": 1e-06, "amountIncrement": 1, "minTradeAmount": 1, "makerFee": 0.0002, "takerFee": 0.0004, "inverse": false, "contractType": "linear_perpetual", "contractMultiplier": 1, "underlyingIndex": "ckbusdt", "listing": "2023-02-27T07:00:00.000Z"}, {"id": "safeusdt", "datasetId": "SAFEUSDT", "exchange": "binance-futures", "baseCurrency": "SAFE", "quoteCurrency": "USDT", "type": "perpetual", "active": true, "availableSince": "2024-10-25T00:00:00.000Z", "priceIncrement": 0.0001, "amountIncrement": 1, "minTradeAmount": 1, "makerFee": 0.0002, "takerFee": 0.0004, "inverse": false, "contractType": "linear_perpetual", "contractMultiplier": 1, "underlyingIndex": "safeusdt", "listing": "2024-10-25T12:30:00.000Z"}, {"id": "1000satsusdt", "datasetId": "1000SATSUSDT", "exchange": "binance-futures", "baseCurrency": "1000SATS", "quoteCurrency": "USDT", "type": "perpetual", "active": true, "availableSince": "2023-12-12T00:00:00.000Z", "priceIncrement": 1e-07, "amountIncrement": 1, "minTradeAmount": 1, "makerFee": 0.0002, "takerFee": 0.0004, "inverse": false, "contractType": "linear_perpetual", "contractMultiplier": 1, "underlyingIndex": "1000satsusdt", "changes": [{"until": "2023-12-14T10:25:00.000Z", "priceIncrement": 1e-06}], "listing": "2023-12-12T14:00:00.000Z"}, {"id": "eigenusdt", "datasetId": "EIGENUSDT", "exchange": "binance-futures", "baseCurrency": "EIGEN", "quoteCurrency": "USDT", "type": "perpetual", "active": true, "availableSince": "2024-10-01T00:00:00.000Z", "priceIncrement": 0.0001, "amountIncrement": 0.1, "minTradeAmount": 0.1, "makerFee": 0.0002, "takerFee": 0.0004, "inverse": false, "contractType": "linear_perpetual", "contractMultiplier": 1, "underlyingIndex": "eigenusdt", "listing": "2024-10-01T06:00:00.000Z", "changes": [{"until": "2024-11-04T06:35:00.000Z", "priceIncrement": 0.001}]}, {"id": "zkusdt", "datasetId": "ZKUSDT", "exchange": "binance-futures", "baseCurrency": "ZK", "quoteCurrency": "USDT", "type": "perpetual", "active": true, "availableSince": "2024-06-17T00:00:00.000Z", "priceIncrement": 1e-05, "amountIncrement": 1, "minTradeAmount": 1, "makerFee": 0.0002, "takerFee": 0.0004, "inverse": false, "contractType": "linear_perpetual", "contractMultiplier": 1, "underlyingIndex": "zkusdt", "changes": [{"until": "2024-07-25T06:40:00.000Z", "priceIncrement": 0.0001}], "listing": "2024-06-17T11:00:00.000Z"}, {"id": "blurusdt", "datasetId": "BLURUSDT", "exchange": "binance-futures", "baseCurrency": "BLUR", "quoteCurrency": "USDT", "type": "perpetual", "active": true, "availableSince": "2023-04-28T00:00:00.000Z", "priceIncrement": 1e-05, "amountIncrement": 1, "minTradeAmount": 1, "makerFee": 0.0002, "takerFee": 0.0004, "inverse": false, "contractType": "linear_perpetual", "contractMultiplier": 1, "underlyingIndex": "blurusdt", "listing": "2023-04-27T00:00:00.000Z", "changes": [{"until": "2024-11-04T06:35:00.000Z", "priceIncrement": 0.0001}]}, {"id": "twtusdt", "datasetId": "TWTUSDT", "exchange": "binance-futures", "baseCurrency": "TWT", "quoteCurrency": "USDT", "type": "perpetual", "active": true, "availableSince": "2023-11-03T00:00:00.000Z", "priceIncrement": 0.0001, "amountIncrement": 1, "minTradeAmount": 1, "makerFee": 0.0002, "takerFee": 0.0004, "inverse": false, "contractType": "linear_perpetual", "contractMultiplier": 1, "underlyingIndex": "twtusdt", "listing": "2023-11-03T14:30:00.000Z"}, {"id": "astrusdt", "datasetId": "ASTRUSDT", "exchange": "binance-futures", "baseCurrency": "ASTR", "quoteCurrency": "USDT", "type": "perpetual", "active": true, "availableSince": "2023-02-14T00:00:00.000Z", "priceIncrement": 1e-06, "amountIncrement": 1, "minTradeAmount": 1, "makerFee": 0.0002, "takerFee": 0.0004, "inverse": false, "contractType": "linear_perpetual", "contractMultiplier": 1, "underlyingIndex": "astrusdt", "listing": "2023-02-13T07:00:00.000Z", "changes": [{"until": "2024-09-20T06:35:00.000Z", "priceIncrement": 1e-05}]}, {"id": "gmtusdt", "datasetId": "GMTUSDT", "exchange": "binance-futures", "baseCurrency": "GMT", "quoteCurrency": "USDT", "type": "perpetual", "active": true, "availableSince": "2022-03-15T00:00:00.000Z", "priceIncrement": 1e-05, "amountIncrement": 1, "minTradeAmount": 1, "makerFee": 0.0002, "takerFee": 0.0004, "inverse": false, "contractType": "linear_perpetual", "contractMultiplier": 1, "underlyingIndex": "gmtusdt", "changes": [{"until": "2022-04-26T03:30:00.000Z", "priceIncrement": 1e-05}, {"until": "2024-06-21T06:35:00.000Z", "priceIncrement": 0.0001}], "listing": "2022-03-14T07:00:00.000Z"}, {"id": "memeusdt", "datasetId": "MEMEUSDT", "exchange": "binance-futures", "baseCurrency": "MEME", "quoteCurrency": "USDT", "type": "perpetual", "active": true, "availableSince": "2023-11-03T00:00:00.000Z", "priceIncrement": 1e-06, "amountIncrement": 1, "minTradeAmount": 1, "makerFee": 0.0002, "takerFee": 0.0004, "inverse": false, "contractType": "linear_perpetual", "contractMultiplier": 1, "underlyingIndex": "memeusdt", "listing": "2023-11-03T12:00:00.000Z"}, {"id": "zrousdt", "datasetId": "ZROUSDT", "exchange": "binance-futures", "baseCurrency": "ZRO", "quoteCurrency": "USDT", "type": "perpetual", "active": true, "availableSince": "2024-06-20T00:00:00.000Z", "priceIncrement": 0.0001, "amountIncrement": 0.1, "minTradeAmount": 0.1, "makerFee": 0.0002, "takerFee": 0.0004, "inverse": false, "contractType": "linear_perpetual", "contractMultiplier": 1, "underlyingIndex": "zrousdt", "listing": "2024-06-20T14:30:00.000Z", "changes": [{"until": "2024-09-20T06:35:00.000Z", "priceIncrement": 0.001}]}, {"id": "peopleusdt", "datasetId": "PEOPLEUSDT", "exchange": "binance-futures", "baseCurrency": "PEOPLE", "quoteCurrency": "USDT", "type": "perpetual", "active": true, "availableSince": "2021-12-24T00:00:00.000Z", "priceIncrement": 1e-05, "amountIncrement": 1, "minTradeAmount": 1, "makerFee": 0.0002, "takerFee": 0.0004, "inverse": false, "contractType": "linear_perpetual", "contractMultiplier": 1, "underlyingIndex": "peopleusdt", "listing": "2021-12-23T07:00:00.000Z"}, {"id": "arkmusdt", "datasetId": "ARKMUSDT", "exchange": "binance-futures", "baseCurrency": "ARKM", "quoteCurrency": "USDT", "type": "perpetual", "active": true, "availableSince": "2023-07-28T00:00:00.000Z", "priceIncrement": 0.0001, "amountIncrement": 1, "minTradeAmount": 1, "makerFee": 0.0002, "takerFee": 0.0004, "inverse": false, "contractType": "linear_perpetual", "contractMultiplier": 1, "underlyingIndex": "arkmusdt", "listing": "2023-07-28T02:45:00.000Z"}, {"id": "woousdt", "datasetId": "WOOUSDT", "exchange": "binance-futures", "baseCurrency": "WOO", "quoteCurrency": "USDT", "type": "perpetual", "active": true, "availableSince": "2022-04-08T00:00:00.000Z", "priceIncrement": 1e-05, "amountIncrement": 1, "minTradeAmount": 1, "makerFee": 0.0002, "takerFee": 0.0004, "inverse": false, "contractType": "linear_perpetual", "contractMultiplier": 1, "underlyingIndex": "woousdt", "listing": "2022-04-07T07:00:00.000Z"}, {"id": "ethwusdt", "datasetId": "ETHWUSDT", "exchange": "binance-futures", "baseCurrency": "ETHW", "quoteCurrency": "USDT", "type": "perpetual", "active": true, "availableSince": "2023-11-28T00:00:00.000Z", "priceIncrement": 0.0001, "amountIncrement": 1, "minTradeAmount": 1, "makerFee": 0.0002, "takerFee": 0.0004, "inverse": false, "contractType": "linear_perpetual", "contractMultiplier": 1, "underlyingIndex": "ethwusdt", "changes": [{"until": "2024-07-25T06:35:00.000Z", "priceIncrement": 0.001}], "listing": "2023-11-28T12:30:00.000Z"}, {"id": "sfpusdt", "datasetId": "SFPUSDT", "exchange": "binance-futures", "baseCurrency": "SFP", "quoteCurrency": "USDT", "type": "perpetual", "active": true, "availableSince": "2021-02-24T00:00:00.000Z", "priceIncrement": 0.0001, "amountIncrement": 1, "minTradeAmount": 1, "makerFee": 0.0002, "takerFee": 0.0004, "inverse": false, "contractType": "linear_perpetual", "contractMultiplier": 1, "underlyingIndex": "sfpusdt", "listing": "2021-02-24T07:00:00.000Z"}, {"id": "idusdt", "datasetId": "IDUSDT", "exchange": "binance-futures", "baseCurrency": "ID", "quoteCurrency": "USDT", "type": "perpetual", "active": true, "availableSince": "2023-03-23T00:00:00.000Z", "priceIncrement": 1e-05, "amountIncrement": 1, "minTradeAmount": 1, "makerFee": 0.0002, "takerFee": 0.0004, "inverse": false, "contractType": "linear_perpetual", "contractMultiplier": 1, "underlyingIndex": "idusdt", "changes": [{"until": "2024-04-11T06:40:00.000Z", "priceIncrement": 0.0001}], "listing": "2023-03-23T00:00:00.000Z"}, {"id": "dymusdt", "datasetId": "DYMUSDT", "exchange": "binance-futures", "baseCurrency": "DYM", "quoteCurrency": "USDT", "type": "perpetual", "active": true, "availableSince": "2024-02-07T00:00:00.000Z", "priceIncrement": 0.0001, "amountIncrement": 0.1, "minTradeAmount": 0.1, "makerFee": 0.0002, "takerFee": 0.0004, "inverse": false, "contractType": "linear_perpetual", "contractMultiplier": 1, "underlyingIndex": "dymusdt", "changes": [{"until": "2024-06-21T06:40:00.000Z", "priceIncrement": 0.001}], "listing": "2024-02-07T07:00:00.000Z"}, {"id": "maskusdt", "datasetId": "MASKUSDT", "exchange": "binance-futures", "baseCurrency": "MASK", "quoteCurrency": "USDT", "type": "perpetual", "active": true, "availableSince": "2021-08-27T00:00:00.000Z", "priceIncrement": 0.0001, "amountIncrement": 1, "minTradeAmount": 1, "makerFee": 0.0002, "takerFee": 0.0004, "inverse": false, "contractType": "linear_perpetual", "contractMultiplier": 1, "underlyingIndex": "maskusdt", "changes": [{"until": "2022-01-13T03:30:00.000Z", "priceIncrement": 0.0001}, {"until": "2024-07-25T06:40:00.000Z", "priceIncrement": 0.001}], "listing": "2021-07-16T07:00:00.000Z"}, {"id": "dogsusdt", "datasetId": "DOGSUSDT", "exchange": "binance-futures", "baseCurrency": "DOGS", "quoteCurrency": "USDT", "type": "perpetual", "active": true, "availableSince": "2024-08-26T00:00:00.000Z", "priceIncrement": 1e-07, "amountIncrement": 1, "minTradeAmount": 1, "makerFee": 0.0002, "takerFee": 0.0004, "inverse": false, "contractType": "linear_perpetual", "contractMultiplier": 1, "underlyingIndex": "dogsusdt", "listing": "2024-08-26T12:30:00.000Z"}, {"id": "glmusdt", "datasetId": "GLMUSDT", "exchange": "binance-futures", "baseCurrency": "GLM", "quoteCurrency": "USDT", "type": "perpetual", "active": true, "availableSince": "2024-02-22T00:00:00.000Z", "priceIncrement": 1e-05, "amountIncrement": 1, "minTradeAmount": 1, "makerFee": 0.0002, "takerFee": 0.0004, "inverse": false, "contractType": "linear_perpetual", "contractMultiplier": 1, "underlyingIndex": "glmusdt", "listing": "2024-02-22T10:00:00.000Z", "changes": [{"until": "2024-09-20T06:35:00.000Z", "priceIncrement": 0.0001}]}, {"id": "zetausdt", "datasetId": "ZETAUSDT", "exchange": "binance-futures", "baseCurrency": "ZETA", "quoteCurrency": "USDT", "type": "perpetual", "active": true, "availableSince": "2024-02-02T00:00:00.000Z", "priceIncrement": 0.0001, "amountIncrement": 1, "minTradeAmount": 1, "makerFee": 0.0002, "takerFee": 0.0004, "inverse": false, "contractType": "linear_perpetual", "contractMultiplier": 1, "underlyingIndex": "zetausdt", "listing": "2024-02-02T08:30:00.000Z"}, {"id": "ethfiusdt", "datasetId": "ETHFIUSDT", "exchange": "binance-futures", "baseCurrency": "ETHFI", "quoteCurrency": "USDT", "type": "perpetual", "active": true, "availableSince": "2024-03-18T00:00:00.000Z", "priceIncrement": 0.0001, "amountIncrement": 0.1, "minTradeAmount": 0.1, "makerFee": 0.0002, "takerFee": 0.0004, "inverse": false, "contractType": "linear_perpetual", "contractMultiplier": 1, "underlyingIndex": "ethfiusdt", "listing": "2024-03-18T15:30:00.000Z", "changes": [{"until": "2024-09-20T06:35:00.000Z", "priceIncrement": 0.001}]}, {"id": "ethfiusdc", "datasetId": "ETHFIUSDC", "exchange": "binance-futures", "baseCurrency": "ETHFI", "quoteCurrency": "USDC", "type": "perpetual", "active": true, "availableSince": "2024-05-02T00:00:00.000Z", "priceIncrement": 0.0001, "amountIncrement": 0.1, "minTradeAmount": 0.1, "makerFee": 0.0002, "takerFee": 0.0004, "inverse": false, "contractType": "linear_perpetual", "contractMultiplier": 1, "underlyingIndex": "ethfiusdc", "listing": "2024-05-02T07:15:00.000Z"}, {"id": "jtousdt", "datasetId": "JTOUSDT", "exchange": "binance-futures", "baseCurrency": "JTO", "quoteCurrency": "USDT", "type": "perpetual", "active": true, "availableSince": "2023-12-08T00:00:00.000Z", "priceIncrement": 0.0001, "amountIncrement": 1, "minTradeAmount": 1, "makerFee": 0.0002, "takerFee": 0.0004, "inverse": false, "contractType": "linear_perpetual", "contractMultiplier": 1, "underlyingIndex": "jtousdt", "listing": "2023-12-08T10:00:00.000Z"}, {"id": "aevousdt", "datasetId": "AEVOUSDT", "exchange": "binance-futures", "baseCurrency": "AEVO", "quoteCurrency": "USDT", "type": "perpetual", "active": true, "availableSince": "2024-03-13T00:00:00.000Z", "priceIncrement": 0.0001, "amountIncrement": 0.1, "minTradeAmount": 0.1, "makerFee": 0.0002, "takerFee": 0.0004, "inverse": false, "contractType": "linear_perpetual", "contractMultiplier": 1, "underlyingIndex": "aevousdt", "changes": [{"until": "2024-03-19T06:40:00.000Z", "priceIncrement": 0.01}, {"until": "2024-05-08T06:35:00.000Z", "priceIncrement": 0.001}], "listing": "2024-03-13T13:30:00.000Z"}, {"id": "metisusdt", "datasetId": "METISUSDT", "exchange": "binance-futures", "baseCurrency": "METIS", "quoteCurrency": "USDT", "type": "perpetual", "active": true, "availableSince": "2024-03-12T00:00:00.000Z", "priceIncrement": 0.01, "amountIncrement": 0.01, "minTradeAmount": 0.01, "makerFee": 0.0002, "takerFee": 0.0004, "inverse": false, "contractType": "linear_perpetual", "contractMultiplier": 1, "underlyingIndex": "metisusdt", "listing": "2024-03-12T08:30:00.000Z"}, {"id": "mantausdt", "datasetId": "MANTAUSDT", "exchange": "binance-futures", "baseCurrency": "MANTA", "quoteCurrency": "USDT", "type": "perpetual", "active": true, "availableSince": "2024-01-18T00:00:00.000Z", "priceIncrement": 0.0001, "amountIncrement": 0.1, "minTradeAmount": 0.1, "makerFee": 0.0002, "takerFee": 0.0004, "inverse": false, "contractType": "linear_perpetual", "contractMultiplier": 1, "underlyingIndex": "mantausdt", "listing": "2024-01-18T14:00:00.000Z"}, {"id": "gasusdt", "datasetId": "GASUSDT", "exchange": "binance-futures", "baseCurrency": "GAS", "quoteCurrency": "USDT", "type": "perpetual", "active": true, "availableSince": "2023-10-25T00:00:00.000Z", "priceIncrement": 0.001, "amountIncrement": 0.1, "minTradeAmount": 0.1, "makerFee": 0.0002, "takerFee": 0.0004, "inverse": false, "contractType": "linear_perpetual", "contractMultiplier": 1, "underlyingIndex": "gasusdt", "listing": "2023-10-25T02:45:00.000Z"}, {"id": "gusdt", "datasetId": "GUSDT", "exchange": "binance-futures", "baseCurrency": "G", "quoteCurrency": "USDT", "type": "perpetual", "active": true, "availableSince": "2024-08-15T00:00:00.000Z", "priceIncrement": 1e-05, "amountIncrement": 1, "minTradeAmount": 1, "makerFee": 0.0002, "takerFee": 0.0004, "inverse": false, "contractType": "linear_perpetual", "contractMultiplier": 1, "underlyingIndex": "gusdt", "listing": "2024-08-15T12:30:00.000Z"}, {"id": "gmxusdt", "datasetId": "GMXUSDT", "exchange": "binance-futures", "baseCurrency": "GMX", "quoteCurrency": "USDT", "type": "perpetual", "active": true, "availableSince": "2023-02-17T00:00:00.000Z", "priceIncrement": 0.001, "amountIncrement": 0.01, "minTradeAmount": 0.01, "makerFee": 0.0002, "takerFee": 0.0004, "inverse": false, "contractType": "linear_perpetual", "contractMultiplier": 1, "underlyingIndex": "gmxusdt", "changes": [{"until": "2024-04-11T06:40:00.000Z", "priceIncrement": 0.01}], "listing": "2023-02-16T07:00:00.000Z"}, {"id": "ponkeusdt", "datasetId": "PONKEUSDT", "exchange": "binance-futures", "baseCurrency": "PONKE", "quoteCurrency": "USDT", "type": "perpetual", "active": true, "availableSince": "2024-11-04T00:00:00.000Z", "priceIncrement": 1e-05, "amountIncrement": 1, "minTradeAmount": 1, "makerFee": 0.0002, "takerFee": 0.0004, "inverse": false, "contractType": "linear_perpetual", "contractMultiplier": 1, "underlyingIndex": "ponkeusdt", "listing": "2024-11-04T12:30:00.000Z"}, {"id": "ssvusdt", "datasetId": "SSVUSDT", "exchange": "binance-futures", "baseCurrency": "SSV", "quoteCurrency": "USDT", "type": "perpetual", "active": true, "availableSince": "2023-02-24T00:00:00.000Z", "priceIncrement": 0.001, "amountIncrement": 0.01, "minTradeAmount": 0.01, "makerFee": 0.0002, "takerFee": 0.0004, "inverse": false, "contractType": "linear_perpetual", "contractMultiplier": 1, "underlyingIndex": "ssvusdt", "changes": [{"until": "2024-04-11T06:40:00.000Z", "priceIncrement": 0.01}], "listing": "2023-02-23T07:00:00.000Z"}, {"id": "bnxusdt", "datasetId": "BNXUSDT", "exchange": "binance-futures", "baseCurrency": "BNX", "quoteCurrency": "USDT", "type": "perpetual", "active": true, "availableSince": "2022-04-01T00:00:00.000Z", "priceIncrement": 0.0001, "amountIncrement": 0.1, "minTradeAmount": 0.1, "makerFee": 0.0002, "takerFee": 0.0004, "inverse": false, "contractType": "linear_perpetual", "contractMultiplier": 1, "underlyingIndex": "bnxusdt", "changes": [{"until": "2023-02-22T14:30:00.000Z", "priceIncrement": 0.01}, {"until": "2023-05-05T06:30:00.000Z", "priceIncrement": 0.001}], "listing": "2023-02-22T07:00:00.000Z"}, {"id": "altusdt", "datasetId": "ALTUSDT", "exchange": "binance-futures", "baseCurrency": "ALT", "quoteCurrency": "USDT", "type": "perpetual", "active": true, "availableSince": "2024-01-25T00:00:00.000Z", "priceIncrement": 1e-05, "amountIncrement": 1, "minTradeAmount": 1, "makerFee": 0.0002, "takerFee": 0.0004, "inverse": false, "contractType": "linear_perpetual", "contractMultiplier": 1, "underlyingIndex": "altusdt", "listing": "2024-01-25T14:00:00.000Z"}, {"id": "tusdt", "datasetId": "TUSDT", "exchange": "binance-futures", "baseCurrency": "T", "quoteCurrency": "USDT", "type": "perpetual", "active": true, "availableSince": "2023-02-01T00:00:00.000Z", "priceIncrement": 1e-05, "amountIncrement": 1, "minTradeAmount": 1, "makerFee": 0.0002, "takerFee": 0.0004, "inverse": false, "contractType": "linear_perpetual", "contractMultiplier": 1, "underlyingIndex": "tusdt", "listing": "2023-01-31T07:00:00.000Z"}, {"id": "rplusdt", "datasetId": "RPLUSDT", "exchange": "binance-futures", "baseCurrency": "RPL", "quoteCurrency": "USDT", "type": "perpetual", "active": true, "availableSince": "2024-09-09T00:00:00.000Z", "priceIncrement": 0.001, "amountIncrement": 0.1, "minTradeAmount": 0.1, "makerFee": 0.0002, "takerFee": 0.0004, "inverse": false, "contractType": "linear_perpetual", "contractMultiplier": 1, "underlyingIndex": "rplusdt", "listing": "2024-09-09T12:30:00.000Z", "changes": [{"until": "2024-09-20T06:35:00.000Z", "priceIncrement": 0.01}]}, {"id": "cotiusdt", "datasetId": "COTIUSDT", "exchange": "binance-futures", "baseCurrency": "COTI", "quoteCurrency": "USDT", "type": "perpetual", "active": true, "availableSince": "2021-03-10T00:00:00.000Z", "priceIncrement": 1e-05, "amountIncrement": 1, "minTradeAmount": 1, "makerFee": 0.0002, "takerFee": 0.0004, "inverse": false, "contractType": "linear_perpetual", "contractMultiplier": 1, "underlyingIndex": "cotiusdt", "listing": "2021-03-09T07:00:00.000Z"}, {"id": "chrusdt", "datasetId": "CHRUSDT", "exchange": "binance-futures", "baseCurrency": "CHR", "quoteCurrency": "USDT", "type": "perpetual", "active": true, "availableSince": "2021-03-12T00:00:00.000Z", "priceIncrement": 0.0001, "amountIncrement": 1, "minTradeAmount": 1, "makerFee": 0.0002, "takerFee": 0.0004, "inverse": false, "contractType": "linear_perpetual", "contractMultiplier": 1, "underlyingIndex": "chrusdt", "listing": "2021-03-12T07:00:00.000Z"}, {"id": "aliceusdt", "datasetId": "ALICEUSDT", "exchange": "binance-futures", "baseCurrency": "ALICE", "quoteCurrency": "USDT", "type": "perpetual", "active": true, "availableSince": "2021-03-16T00:00:00.000Z", "priceIncrement": 0.001, "amountIncrement": 0.1, "minTradeAmount": 0.1, "makerFee": 0.0002, "takerFee": 0.0004, "inverse": false, "contractType": "linear_perpetual", "contractMultiplier": 1, "underlyingIndex": "aliceusdt", "listing": "2021-03-15T07:00:00.000Z"}, {"id": "oneusdt", "datasetId": "ONEUSDT", "exchange": "binance-futures", "baseCurrency": "ONE", "quoteCurrency": "USDT", "type": "perpetual", "active": true, "availableSince": "2021-03-18T00:00:00.000Z", "priceIncrement": 1e-05, "amountIncrement": 1, "minTradeAmount": 1, "makerFee": 0.0002, "takerFee": 0.0004, "inverse": false, "contractType": "linear_perpetual", "contractMultiplier": 1, "underlyingIndex": "oneusdt", "listing": "2021-03-17T07:00:00.000Z"}, {"id": "linausdt", "datasetId": "LINAUSDT", "exchange": "binance-futures", "baseCurrency": "LINA", "quoteCurrency": "USDT", "type": "perpetual", "active": true, "availableSince": "2021-03-19T00:00:00.000Z", "priceIncrement": 1e-05, "amountIncrement": 1, "minTradeAmount": 1, "makerFee": 0.0002, "takerFee": 0.0004, "inverse": false, "contractType": "linear_perpetual", "contractMultiplier": 1, "underlyingIndex": "linausdt", "listing": "2021-03-17T07:00:00.000Z"}, {"id": "stmxusdt", "datasetId": "STMXUSDT", "exchange": "binance-futures", "baseCurrency": "STMX", "quoteCurrency": "USDT", "type": "perpetual", "active": true, "availableSince": "2021-03-22T00:00:00.000Z", "priceIncrement": 1e-05, "amountIncrement": 1, "minTradeAmount": 1, "makerFee": 0.0002, "takerFee": 0.0004, "inverse": false, "contractType": "linear_perpetual", "contractMultiplier": 1, "underlyingIndex": "stmxusdt", "listing": "2021-03-17T07:00:00.000Z"}, {"id": "dentusdt", "datasetId": "DENTUSDT", "exchange": "binance-futures", "baseCurrency": "DENT", "quoteCurrency": "USDT", "type": "perpetual", "active": true, "availableSince": "2021-03-24T00:00:00.000Z", "priceIncrement": 1e-06, "amountIncrement": 1, "minTradeAmount": 1, "makerFee": 0.0002, "takerFee": 0.0004, "inverse": false, "contractType": "linear_perpetual", "contractMultiplier": 1, "underlyingIndex": "dentusdt", "listing": "2021-03-23T07:00:00.000Z"}, {"id": "celrusdt", "datasetId": "CELRUSDT", "exchange": "binance-futures", "baseCurrency": "CELR", "quoteCurrency": "USDT", "type": "perpetual", "active": true, "availableSince": "2021-03-29T00:00:00.000Z", "priceIncrement": 1e-05, "amountIncrement": 1, "minTradeAmount": 1, "makerFee": 0.0002, "takerFee": 0.0004, "inverse": false, "contractType": "linear_perpetual", "contractMultiplier": 1, "underlyingIndex": "celrusdt", "listing": "2021-03-29T07:00:00.000Z"}, {"id": "ognusdt", "datasetId": "OGNUSDT", "exchange": "binance-futures", "baseCurrency": "OGN", "quoteCurrency": "USDT", "type": "perpetual", "active": true, "availableSince": "2021-04-01T00:00:00.000Z", "priceIncrement": 0.0001, "amountIncrement": 1, "minTradeAmount": 1, "makerFee": 0.0002, "takerFee": 0.0004, "inverse": false, "contractType": "linear_perpetual", "contractMultiplier": 1, "underlyingIndex": "ognusdt", "listing": "2021-03-31T07:00:00.000Z"}, {"id": "nknusdt", "datasetId": "NKNUSDT", "exchange": "binance-futures", "baseCurrency": "NKN", "quoteCurrency": "USDT", "type": "perpetual", "active": true, "availableSince": "2021-04-09T00:00:00.000Z", "priceIncrement": 1e-05, "amountIncrement": 1, "minTradeAmount": 1, "makerFee": 0.0002, "takerFee": 0.0004, "inverse": false, "contractType": "linear_perpetual", "contractMultiplier": 1, "underlyingIndex": "nknusdt", "listing": "2021-04-08T07:00:00.000Z"}, {"id": "1000shibusdt", "datasetId": "1000SHIBUSDT", "exchange": "binance-futures", "baseCurrency": "1000SHIB", "quoteCurrency": "USDT", "type": "perpetual", "active": true, "availableSince": "2021-05-10T00:00:00.000Z", "priceIncrement": 1e-06, "amountIncrement": 1, "minTradeAmount": 1, "makerFee": 0.0002, "takerFee": 0.0004, "inverse": false, "contractType": "linear_perpetual", "contractMultiplier": 1, "underlyingIndex": "1000shibusdt", "listing": "2021-05-10T07:00:00.000Z"}, {"id": "bakeusdt", "datasetId": "BAKEUSDT", "exchange": "binance-futures", "baseCurrency": "BAKE", "quoteCurrency": "USDT", "type": "perpetual", "active": true, "availableSince": "2021-05-19T00:00:00.000Z", "priceIncrement": 0.0001, "amountIncrement": 1, "minTradeAmount": 1, "makerFee": 0.0002, "takerFee": 0.0004, "inverse": false, "contractType": "linear_perpetual", "contractMultiplier": 1, "underlyingIndex": "bakeusdt", "listing": "2021-05-18T07:00:00.000Z"}, {"id": "gtcusdt", "datasetId": "GTCUSDT", "exchange": "binance-futures", "baseCurrency": "GTC", "quoteCurrency": "USDT", "type": "perpetual", "active": true, "availableSince": "2021-06-11T00:00:00.000Z", "priceIncrement": 0.001, "amountIncrement": 0.1, "minTradeAmount": 0.1, "makerFee": 0.0002, "takerFee": 0.0004, "inverse": false, "contractType": "linear_perpetual", "contractMultiplier": 1, "underlyingIndex": "gtcusdt", "listing": "2021-03-15T07:00:00.000Z"}, {"id": "btcdomusdt", "datasetId": "BTCDOMUSDT", "exchange": "binance-futures", "baseCurrency": "BTCDOM", "quoteCurrency": "USDT", "type": "perpetual", "active": true, "availableSince": "2021-06-21T00:00:00.000Z", "priceIncrement": 0.1, "amountIncrement": 0.001, "minTradeAmount": 0.001, "makerFee": 0.0002, "takerFee": 0.0004, "inverse": false, "contractType": "linear_perpetual", "contractMultiplier": 1, "underlyingIndex": "btcdomusdt", "listing": "2021-06-17T07:00:00.000Z"}, {"id": "tlmusdt", "datasetId": "TLMUSDT", "exchange": "binance-futures", "baseCurrency": "TLM", "quoteCurrency": "USDT", "type": "perpetual", "active": true, "availableSince": "2021-07-16T00:00:00.000Z", "priceIncrement": 1e-06, "amountIncrement": 1, "minTradeAmount": 1, "makerFee": 0.0002, "takerFee": 0.0004, "inverse": false, "contractType": "linear_perpetual", "contractMultiplier": 1, "underlyingIndex": "tlmusdt", "changes": [{"until": "2024-02-05T06:40:00.000Z", "priceIncrement": 1e-05}], "listing": "2023-03-29T00:00:00.000Z"}, {"id": "c98usdt", "datasetId": "C98USDT", "exchange": "binance-futures", "baseCurrency": "C98", "quoteCurrency": "USDT", "type": "perpetual", "active": true, "availableSince": "2021-08-24T00:00:00.000Z", "priceIncrement": 0.0001, "amountIncrement": 1, "minTradeAmount": 1, "makerFee": 0.0002, "takerFee": 0.0004, "inverse": false, "contractType": "linear_perpetual", "contractMultiplier": 1, "underlyingIndex": "c98usdt", "listing": "2021-08-23T07:00:00.000Z"}, {"id": "atausdt", "datasetId": "ATAUSDT", "exchange": "binance-futures", "baseCurrency": "ATA", "quoteCurrency": "USDT", "type": "perpetual", "active": true, "availableSince": "2021-08-31T00:00:00.000Z", "priceIncrement": 0.0001, "amountIncrement": 1, "minTradeAmount": 1, "makerFee": 0.0002, "takerFee": 0.0004, "inverse": false, "contractType": "linear_perpetual", "contractMultiplier": 1, "underlyingIndex": "atausdt", "listing": "2021-08-30T07:00:00.000Z"}, {"id": "1000xecusdt", "datasetId": "1000XECUSDT", "exchange": "binance-futures", "baseCurrency": "1000XEC", "quoteCurrency": "USDT", "type": "perpetual", "active": true, "availableSince": "2021-09-17T00:00:00.000Z", "priceIncrement": 1e-05, "amountIncrement": 1, "minTradeAmount": 1, "makerFee": 0.0002, "takerFee": 0.0004, "inverse": false, "contractType": "linear_perpetual", "contractMultiplier": 1, "underlyingIndex": "1000xecusdt", "listing": "2021-09-16T07:00:00.000Z"}, {"id": "ctsiusdt", "datasetId": "CTSIUSDT", "exchange": "binance-futures", "baseCurrency": "CTSI", "quoteCurrency": "USDT", "type": "perpetual", "active": true, "availableSince": "2021-10-26T00:00:00.000Z", "priceIncrement": 0.0001, "amountIncrement": 1, "minTradeAmount": 1, "makerFee": 0.0002, "takerFee": 0.0004, "inverse": false, "contractType": "linear_perpetual", "contractMultiplier": 1, "underlyingIndex": "ctsiusdt", "listing": "2021-10-25T07:00:00.000Z"}, {"id": "duskusdt", "datasetId": "DUSKUSDT", "exchange": "binance-futures", "baseCurrency": "DUSK", "quoteCurrency": "USDT", "type": "perpetual", "active": true, "availableSince": "2022-01-07T00:00:00.000Z", "priceIncrement": 1e-05, "amountIncrement": 1, "minTradeAmount": 1, "makerFee": 0.0002, "takerFee": 0.0004, "inverse": false, "contractType": "linear_perpetual", "contractMultiplier": 1, "underlyingIndex": "duskusdt", "listing": "2022-01-06T07:00:00.000Z"}, {"id": "imxusdt", "datasetId": "IMXUSDT", "exchange": "binance-futures", "baseCurrency": "IMX", "quoteCurrency": "USDT", "type": "perpetual", "active": true, "availableSince": "2022-02-11T00:00:00.000Z", "priceIncrement": 0.0001, "amountIncrement": 1, "minTradeAmount": 1, "makerFee": 0.0002, "takerFee": 0.0004, "inverse": false, "contractType": "linear_perpetual", "contractMultiplier": 1, "underlyingIndex": "imxusdt", "listing": "2022-02-10T07:00:00.000Z"}, {"id": "api3usdt", "datasetId": "API3USDT", "exchange": "binance-futures", "baseCurrency": "API3", "quoteCurrency": "USDT", "type": "perpetual", "active": true, "availableSince": "2022-02-22T00:00:00.000Z", "priceIncrement": 0.0001, "amountIncrement": 0.1, "minTradeAmount": 0.1, "makerFee": 0.0002, "takerFee": 0.0004, "inverse": false, "contractType": "linear_perpetual", "contractMultiplier": 1, "underlyingIndex": "api3usdt", "changes": [{"until": "2023-08-29T06:35:00.000Z", "priceIncrement": 0.001}], "listing": "2022-02-21T07:00:00.000Z"}, {"id": "opusdt", "datasetId": "OPUSDT", "exchange": "binance-futures", "baseCurrency": "OP", "quoteCurrency": "USDT", "type": "perpetual", "active": true, "availableSince": "2022-06-01T00:00:00.000Z", "priceIncrement": 0.0001, "amountIncrement": 0.1, "minTradeAmount": 0.1, "makerFee": 0.0002, "takerFee": 0.0004, "inverse": false, "contractType": "linear_perpetual", "contractMultiplier": 1, "underlyingIndex": "opusdt", "listing": "2022-06-01T07:00:00.000Z"}, {"id": "injusdt", "datasetId": "INJUSDT", "exchange": "binance-futures", "baseCurrency": "INJ", "quoteCurrency": "USDT", "type": "perpetual", "active": true, "availableSince": "2022-08-17T00:00:00.000Z", "priceIncrement": 0.001, "amountIncrement": 0.1, "minTradeAmount": 0.1, "makerFee": 0.0002, "takerFee": 0.0004, "inverse": false, "contractType": "linear_perpetual", "contractMultiplier": 1, "underlyingIndex": "injusdt", "listing": "2022-08-16T07:00:00.000Z"}, {"id": "stgusdt", "datasetId": "STGUSDT", "exchange": "binance-futures", "baseCurrency": "STG", "quoteCurrency": "USDT", "type": "perpetual", "active": true, "availableSince": "2022-08-25T00:00:00.000Z", "priceIncrement": 0.0001, "amountIncrement": 1, "minTradeAmount": 1, "makerFee": 0.0002, "takerFee": 0.0004, "inverse": false, "contractType": "linear_perpetual", "contractMultiplier": 1, "underlyingIndex": "stgusdt", "listing": "2022-08-24T07:00:00.000Z"}, {"id": "1000luncusdt", "datasetId": "1000LUNCUSDT", "exchange": "binance-futures", "baseCurrency": "1000LUNC", "quoteCurrency": "USDT", "type": "perpetual", "active": true, "availableSince": "2022-09-09T00:00:00.000Z", "priceIncrement": 1e-05, "amountIncrement": 1, "minTradeAmount": 1, "makerFee": 0.0002, "takerFee": 0.0004, "inverse": false, "contractType": "linear_perpetual", "contractMultiplier": 1, "underlyingIndex": "1000luncusdt", "changes": [{"until": "2023-06-05T06:30:00.000Z", "priceIncrement": 0.0001}], "listing": "2022-09-08T07:00:00.000Z"}, {"id": "luna2usdt", "datasetId": "LUNA2USDT", "exchange": "binance-futures", "baseCurrency": "LUNA2", "quoteCurrency": "USDT", "type": "perpetual", "active": true, "availableSince": "2022-09-10T00:00:00.000Z", "priceIncrement": 0.0001, "amountIncrement": 1, "minTradeAmount": 1, "makerFee": 0.0002, "takerFee": 0.0004, "inverse": false, "contractType": "linear_perpetual", "contractMultiplier": 1, "underlyingIndex": "luna2usdt", "listing": "2022-09-09T07:00:00.000Z"}, {"id": "aptusdt", "datasetId": "APTUSDT", "exchange": "binance-futures", "baseCurrency": "APT", "quoteCurrency": "USDT", "type": "perpetual", "active": true, "availableSince": "2022-10-19T00:00:00.000Z", "priceIncrement": 0.0001, "amountIncrement": 0.1, "minTradeAmount": 0.1, "makerFee": 0.0002, "takerFee": 0.0004, "inverse": false, "contractType": "linear_perpetual", "contractMultiplier": 1, "underlyingIndex": "aptusdt", "changes": [{"until": "2022-11-09T12:00:00.000Z", "priceIncrement": 0.001}, {"until": "2023-02-10T09:00:00.000Z", "priceIncrement": 0.0001}, {"until": "2024-09-20T06:35:00.000Z", "priceIncrement": 0.001}], "listing": "2022-10-18T07:00:00.000Z"}, {"id": "fetusdt", "datasetId": "FETUSDT", "exchange": "binance-futures", "baseCurrency": "FET", "quoteCurrency": "USDT", "type": "perpetual", "active": true, "availableSince": "2023-01-17T00:00:00.000Z", "priceIncrement": 0.0001, "amountIncrement": 1, "minTradeAmount": 1, "makerFee": 0.0002, "takerFee": 0.0004, "inverse": false, "contractType": "linear_perpetual", "contractMultiplier": 1, "underlyingIndex": "fetusdt", "listing": "2023-01-15T07:00:00.000Z"}, {"id": "fxsusdt", "datasetId": "FXSUSDT", "exchange": "binance-futures", "baseCurrency": "FXS", "quoteCurrency": "USDT", "type": "perpetual", "active": true, "availableSince": "2023-01-20T00:00:00.000Z", "priceIncrement": 0.0001, "amountIncrement": 0.1, "minTradeAmount": 0.1, "makerFee": 0.0002, "takerFee": 0.0004, "inverse": false, "contractType": "linear_perpetual", "contractMultiplier": 1, "underlyingIndex": "fxsusdt", "changes": [{"until": "2024-04-11T06:40:00.000Z", "priceIncrement": 0.001}], "listing": "2023-01-19T07:00:00.000Z"}, {"id": "hookusdt", "datasetId": "HOOKUSDT", "exchange": "binance-futures", "baseCurrency": "HOOK", "quoteCurrency": "USDT", "type": "perpetual", "active": true, "availableSince": "2023-01-23T00:00:00.000Z", "priceIncrement": 0.0001, "amountIncrement": 0.1, "minTradeAmount": 0.1, "makerFee": 0.0002, "takerFee": 0.0004, "inverse": false, "contractType": "linear_perpetual", "contractMultiplier": 1, "underlyingIndex": "hookusdt", "changes": [{"until": "2023-08-29T06:35:00.000Z", "priceIncrement": 0.001}], "listing": "2023-01-19T07:00:00.000Z"}, {"id": "magicusdt", "datasetId": "MAGICUSDT", "exchange": "binance-futures", "baseCurrency": "MAGIC", "quoteCurrency": "USDT", "type": "perpetual", "active": true, "availableSince": "2023-01-25T00:00:00.000Z", "priceIncrement": 0.0001, "amountIncrement": 0.1, "minTradeAmount": 0.1, "makerFee": 0.0002, "takerFee": 0.0004, "inverse": false, "contractType": "linear_perpetual", "contractMultiplier": 1, "underlyingIndex": "magicusdt", "listing": "2023-01-23T07:00:00.000Z"}, {"id": "highusdt", "datasetId": "HIGHUSDT", "exchange": "binance-futures", "baseCurrency": "HIGH", "quoteCurrency": "USDT", "type": "perpetual", "active": true, "availableSince": "2023-02-07T00:00:00.000Z", "priceIncrement": 0.0001, "amountIncrement": 0.1, "minTradeAmount": 0.1, "makerFee": 0.0002, "takerFee": 0.0004, "inverse": false, "contractType": "linear_perpetual", "contractMultiplier": 1, "underlyingIndex": "highusdt", "changes": [{"until": "2024-02-05T06:40:00.000Z", "priceIncrement": 0.001}], "listing": "2023-02-03T07:00:00.000Z"}, {"id": "phbusdt", "datasetId": "PHBUSDT", "exchange": "binance-futures", "baseCurrency": "PHB", "quoteCurrency": "USDT", "type": "perpetual", "active": true, "availableSince": "2023-02-16T00:00:00.000Z", "priceIncrement": 0.0001, "amountIncrement": 1, "minTradeAmount": 1, "makerFee": 0.0002, "takerFee": 0.0004, "inverse": false, "contractType": "linear_perpetual", "contractMultiplier": 1, "underlyingIndex": "phbusdt", "listing": "2023-02-15T07:00:00.000Z"}, {"id": "achusdt", "datasetId": "ACHUSDT", "exchange": "binance-futures", "baseCurrency": "ACH", "quoteCurrency": "USDT", "type": "perpetual", "active": true, "availableSince": "2023-02-22T00:00:00.000Z", "priceIncrement": 1e-06, "amountIncrement": 1, "minTradeAmount": 1, "makerFee": 0.0002, "takerFee": 0.0004, "inverse": false, "contractType": "linear_perpetual", "contractMultiplier": 1, "underlyingIndex": "achusdt", "changes": [{"until": "2024-02-05T06:40:00.000Z", "priceIncrement": 1e-05}], "listing": "2023-02-21T07:00:00.000Z"}, {"id": "perpusdt", "datasetId": "PERPUSDT", "exchange": "binance-futures", "baseCurrency": "PERP", "quoteCurrency": "USDT", "type": "perpetual", "active": true, "availableSince": "2023-03-06T00:00:00.000Z", "priceIncrement": 0.0001, "amountIncrement": 0.1, "minTradeAmount": 0.1, "makerFee": 0.0002, "takerFee": 0.0004, "inverse": false, "contractType": "linear_perpetual", "contractMultiplier": 1, "underlyingIndex": "perpusdt", "listing": "2023-03-05T07:00:00.000Z"}, {"id": "lqtyusdt", "datasetId": "LQTYUSDT", "exchange": "binance-futures", "baseCurrency": "LQTY", "quoteCurrency": "USDT", "type": "perpetual", "active": true, "availableSince": "2023-03-10T00:00:00.000Z", "priceIncrement": 0.0001, "amountIncrement": 0.1, "minTradeAmount": 0.1, "makerFee": 0.0002, "takerFee": 0.0004, "inverse": false, "contractType": "linear_perpetual", "contractMultiplier": 1, "underlyingIndex": "lqtyusdt", "listing": "2023-03-08T07:00:00.000Z"}, {"id": "arbusdt", "datasetId": "ARBUSDT", "exchange": "binance-futures", "baseCurrency": "ARB", "quoteCurrency": "USDT", "type": "perpetual", "active": true, "availableSince": "2023-03-23T00:00:00.000Z", "priceIncrement": 0.0001, "amountIncrement": 0.1, "minTradeAmount": 0.1, "makerFee": 0.0002, "takerFee": 0.0004, "inverse": false, "contractType": "linear_perpetual", "contractMultiplier": 1, "underlyingIndex": "arbusdt", "listing": "2023-03-23T07:00:00.000Z"}, {"id": "joeusdt", "datasetId": "JOEUSDT", "exchange": "binance-futures", "baseCurrency": "JOE", "quoteCurrency": "USDT", "type": "perpetual", "active": true, "availableSince": "2023-03-29T00:00:00.000Z", "priceIncrement": 1e-05, "amountIncrement": 1, "minTradeAmount": 1, "makerFee": 0.0002, "takerFee": 0.0004, "inverse": false, "contractType": "linear_perpetual", "contractMultiplier": 1, "underlyingIndex": "joeusdt", "listing": "2023-03-28T00:00:00.000Z", "changes": [{"until": "2024-09-20T06:35:00.000Z", "priceIncrement": 0.0001}]}, {"id": "ambusdt", "datasetId": "AMBUSDT", "exchange": "binance-futures", "baseCurrency": "AMB", "quoteCurrency": "USDT", "type": "perpetual", "active": true, "availableSince": "2023-03-30T00:00:00.000Z", "priceIncrement": 1e-06, "amountIncrement": 1, "minTradeAmount": 1, "makerFee": 0.0002, "takerFee": 0.0004, "inverse": false, "contractType": "linear_perpetual", "contractMultiplier": 1, "underlyingIndex": "ambusdt", "changes": [{"until": "2023-08-29T06:35:00.000Z", "priceIncrement": 1e-05}], "listing": "2023-03-29T00:00:00.000Z"}, {"id": "leverusdt", "datasetId": "LEVERUSDT", "exchange": "binance-futures", "baseCurrency": "LEVER", "quoteCurrency": "USDT", "type": "perpetual", "active": true, "availableSince": "2023-03-30T00:00:00.000Z", "priceIncrement": 1e-07, "amountIncrement": 1, "minTradeAmount": 1, "makerFee": 0.0002, "takerFee": 0.0004, "inverse": false, "contractType": "linear_perpetual", "contractMultiplier": 1, "underlyingIndex": "leverusdt", "changes": [{"until": "2024-02-05T06:40:00.000Z", "priceIncrement": 1e-06}], "listing": "2023-03-29T00:00:00.000Z"}, {"id": "rdntusdt", "datasetId": "RDNTUSDT", "exchange": "binance-futures", "baseCurrency": "RDNT", "quoteCurrency": "USDT", "type": "perpetual", "active": true, "availableSince": "2023-04-05T00:00:00.000Z", "priceIncrement": 1e-05, "amountIncrement": 1, "minTradeAmount": 1, "makerFee": 0.0002, "takerFee": 0.0004, "inverse": false, "contractType": "linear_perpetual", "contractMultiplier": 1, "underlyingIndex": "rdntusdt", "changes": [{"until": "2024-03-19T06:40:00.000Z", "priceIncrement": 0.0001}], "listing": "2023-04-04T00:00:00.000Z"}, {"id": "hftusdt", "datasetId": "HFTUSDT", "exchange": "binance-futures", "baseCurrency": "HFT", "quoteCurrency": "USDT", "type": "perpetual", "active": true, "availableSince": "2023-04-06T00:00:00.000Z", "priceIncrement": 1e-05, "amountIncrement": 1, "minTradeAmount": 1, "makerFee": 0.0002, "takerFee": 0.0004, "inverse": false, "contractType": "linear_perpetual", "contractMultiplier": 1, "underlyingIndex": "hftusdt", "changes": [{"until": "2024-07-25T06:35:00.000Z", "priceIncrement": 0.0001}], "listing": "2023-04-05T00:00:00.000Z"}, {"id": "xvsusdt", "datasetId": "XVSUSDT", "exchange": "binance-futures", "baseCurrency": "XVS", "quoteCurrency": "USDT", "type": "perpetual", "active": true, "availableSince": "2023-04-13T00:00:00.000Z", "priceIncrement": 0.001, "amountIncrement": 0.1, "minTradeAmount": 0.1, "makerFee": 0.0002, "takerFee": 0.0004, "inverse": false, "contractType": "linear_perpetual", "contractMultiplier": 1, "underlyingIndex": "xvsusdt", "listing": "2023-04-12T00:00:00.000Z"}, {"id": "eduusdt", "datasetId": "EDUUSDT", "exchange": "binance-futures", "baseCurrency": "EDU", "quoteCurrency": "USDT", "type": "perpetual", "active": true, "availableSince": "2023-04-30T00:00:00.000Z", "priceIncrement": 0.0001, "amountIncrement": 1, "minTradeAmount": 1, "makerFee": 0.0002, "takerFee": 0.0004, "inverse": false, "contractType": "linear_perpetual", "contractMultiplier": 1, "underlyingIndex": "eduusdt", "listing": "2023-04-28T00:00:00.000Z"}, {"id": "suiusdt", "datasetId": "SUIUSDT", "exchange": "binance-futures", "baseCurrency": "SUI", "quoteCurrency": "USDT", "type": "perpetual", "active": true, "availableSince": "2023-05-03T00:00:00.000Z", "priceIncrement": 0.0001, "amountIncrement": 0.1, "minTradeAmount": 0.1, "makerFee": 0.0002, "takerFee": 0.0004, "inverse": false, "contractType": "linear_perpetual", "contractMultiplier": 1, "underlyingIndex": "suiusdt", "listing": "2023-05-03T00:00:00.000Z"}, {"id": "1000pepeusdt", "datasetId": "1000PEPEUSDT", "exchange": "binance-futures", "baseCurrency": "1000PEPE", "quoteCurrency": "USDT", "type": "perpetual", "active": true, "availableSince": "2023-05-05T00:00:00.000Z", "priceIncrement": 1e-07, "amountIncrement": 1, "minTradeAmount": 1, "makerFee": 0.0002, "takerFee": 0.0004, "inverse": false, "contractType": "linear_perpetual", "contractMultiplier": 1, "underlyingIndex": "1000pepeusdt", "listing": "2023-05-05T00:00:00.000Z"}, {"id": "1000flokiusdt", "datasetId": "1000FLOKIUSDT", "exchange": "binance-futures", "baseCurrency": "1000FLOKI", "quoteCurrency": "USDT", "type": "perpetual", "active": true, "availableSince": "2023-05-06T00:00:00.000Z", "priceIncrement": 1e-05, "amountIncrement": 1, "minTradeAmount": 1, "makerFee": 0.0002, "takerFee": 0.0004, "inverse": false, "contractType": "linear_perpetual", "contractMultiplier": 1, "underlyingIndex": "1000flokiusdt", "listing": "2023-05-06T00:00:00.000Z"}, {"id": "combousdt", "datasetId": "COMBOUSDT", "exchange": "binance-futures", "baseCurrency": "COMBO", "quoteCurrency": "USDT", "type": "perpetual", "active": true, "availableSince": "2023-06-02T00:00:00.000Z", "priceIncrement": 0.0001, "amountIncrement": 0.1, "minTradeAmount": 0.1, "makerFee": 0.0002, "takerFee": 0.0004, "inverse": false, "contractType": "linear_perpetual", "contractMultiplier": 1, "underlyingIndex": "combousdt", "listing": "2023-06-02T12:00:00.000Z"}, {"id": "mavusdt", "datasetId": "MAVUSDT", "exchange": "binance-futures", "baseCurrency": "MAV", "quoteCurrency": "USDT", "type": "perpetual", "active": true, "availableSince": "2023-06-29T00:00:00.000Z", "priceIncrement": 1e-05, "amountIncrement": 1, "minTradeAmount": 1, "makerFee": 0.0002, "takerFee": 0.0004, "inverse": false, "contractType": "linear_perpetual", "contractMultiplier": 1, "underlyingIndex": "mavusdt", "changes": [{"until": "2024-07-25T06:40:00.000Z", "priceIncrement": 0.0001}], "listing": "2023-06-29T12:00:00.000Z"}, {"id": "wldusdt", "datasetId": "WLDUSDT", "exchange": "binance-futures", "baseCurrency": "WLD", "quoteCurrency": "USDT", "type": "perpetual", "active": true, "availableSince": "2023-07-24T00:00:00.000Z", "priceIncrement": 0.0001, "amountIncrement": 1, "minTradeAmount": 1, "makerFee": 0.0002, "takerFee": 0.0004, "inverse": false, "contractType": "linear_perpetual", "contractMultiplier": 1, "underlyingIndex": "wldusdt", "listing": "2023-07-24T12:00:00.000Z"}, {"id": "agldusdt", "datasetId": "AGLDUSDT", "exchange": "binance-futures", "baseCurrency": "AGLD", "quoteCurrency": "USDT", "type": "perpetual", "active": true, "availableSince": "2023-07-29T00:00:00.000Z", "priceIncrement": 0.0001, "amountIncrement": 1, "minTradeAmount": 1, "makerFee": 0.0002, "takerFee": 0.0004, "inverse": false, "contractType": "linear_perpetual", "contractMultiplier": 1, "underlyingIndex": "agldusdt", "listing": "2023-07-29T02:30:00.000Z"}, {"id": "dodoxusdt", "datasetId": "DODOXUSDT", "exchange": "binance-futures", "baseCurrency": "DODOX", "quoteCurrency": "USDT", "type": "perpetual", "active": true, "availableSince": "2023-08-08T00:00:00.000Z", "priceIncrement": 1e-06, "amountIncrement": 1, "minTradeAmount": 1, "makerFee": 0.0002, "takerFee": 0.0004, "inverse": false, "contractType": "linear_perpetual", "contractMultiplier": 1, "underlyingIndex": "dodoxusdt", "changes": [{"until": "2023-08-29T06:35:00.000Z", "priceIncrement": 0.0001}, {"until": "2024-02-05T06:40:00.000Z", "priceIncrement": 1e-05}], "listing": "2023-08-08T12:00:00.000Z"}, {"id": "seiusdt", "datasetId": "SEIUSDT", "exchange": "binance-futures", "baseCurrency": "SEI", "quoteCurrency": "USDT", "type": "perpetual", "active": true, "availableSince": "2023-08-17T00:00:00.000Z", "priceIncrement": 0.0001, "amountIncrement": 1, "minTradeAmount": 1, "makerFee": 0.0002, "takerFee": 0.0004, "inverse": false, "contractType": "linear_perpetual", "contractMultiplier": 1, "underlyingIndex": "seiusdt", "listing": "2023-08-17T02:30:00.000Z"}, {"id": "cyberusdt", "datasetId": "CYBERUSDT", "exchange": "binance-futures", "baseCurrency": "CYBER", "quoteCurrency": "USDT", "type": "perpetual", "active": true, "availableSince": "2023-08-21T00:00:00.000Z", "priceIncrement": 0.001, "amountIncrement": 0.1, "minTradeAmount": 0.1, "makerFee": 0.0002, "takerFee": 0.0004, "inverse": false, "contractType": "linear_perpetual", "contractMultiplier": 1, "underlyingIndex": "cyberusdt", "listing": "2023-08-21T12:00:00.000Z"}, {"id": "hifiusdt", "datasetId": "HIFIUSDT", "exchange": "binance-futures", "baseCurrency": "HIFI", "quoteCurrency": "USDT", "type": "perpetual", "active": true, "availableSince": "2023-09-16T00:00:00.000Z", "priceIncrement": 0.0001, "amountIncrement": 1, "minTradeAmount": 1, "makerFee": 0.0002, "takerFee": 0.0004, "inverse": false, "contractType": "linear_perpetual", "contractMultiplier": 1, "underlyingIndex": "hifiusdt", "listing": "2023-09-16T14:30:00.000Z"}, {"id": "arkusdt", "datasetId": "ARKUSDT", "exchange": "binance-futures", "baseCurrency": "ARK", "quoteCurrency": "USDT", "type": "perpetual", "active": true, "availableSince": "2023-09-19T00:00:00.000Z", "priceIncrement": 0.0001, "amountIncrement": 1, "minTradeAmount": 1, "makerFee": 0.0002, "takerFee": 0.0004, "inverse": false, "contractType": "linear_perpetual", "contractMultiplier": 1, "underlyingIndex": "arkusdt", "listing": "2023-09-19T14:30:00.000Z"}, {"id": "bicousdt", "datasetId": "BICOUSDT", "exchange": "binance-futures", "baseCurrency": "BICO", "quoteCurrency": "USDT", "type": "perpetual", "active": true, "availableSince": "2023-09-28T00:00:00.000Z", "priceIncrement": 0.0001, "amountIncrement": 1, "minTradeAmount": 1, "makerFee": 0.0002, "takerFee": 0.0004, "inverse": false, "contractType": "linear_perpetual", "contractMultiplier": 1, "underlyingIndex": "bicousdt", "listing": "2023-09-28T12:30:00.000Z"}, {"id": "bigtimeusdt", "datasetId": "BIGTIMEUSDT", "exchange": "binance-futures", "baseCurrency": "BIGTIME", "quoteCurrency": "USDT", "type": "perpetual", "active": true, "availableSince": "2023-10-12T00:00:00.000Z", "priceIncrement": 1e-05, "amountIncrement": 1, "minTradeAmount": 1, "makerFee": 0.0002, "takerFee": 0.0004, "inverse": false, "contractType": "linear_perpetual", "contractMultiplier": 1, "underlyingIndex": "bigtimeusdt", "listing": "2023-10-12T14:30:00.000Z", "changes": [{"until": "2024-09-20T06:35:00.000Z", "priceIncrement": 0.0001}]}, {"id": "polyxusdt", "datasetId": "POLYXUSDT", "exchange": "binance-futures", "baseCurrency": "POLYX", "quoteCurrency": "USDT", "type": "perpetual", "active": true, "availableSince": "2023-10-25T00:00:00.000Z", "priceIncrement": 1e-05, "amountIncrement": 1, "minTradeAmount": 1, "makerFee": 0.0002, "takerFee": 0.0004, "inverse": false, "contractType": "linear_perpetual", "contractMultiplier": 1, "underlyingIndex": "polyxusdt", "changes": [{"until": "2024-02-05T06:40:00.000Z", "priceIncrement": 0.0001}], "listing": "2023-10-25T02:30:00.000Z"}, {"id": "powrusdt", "datasetId": "POWRUSDT", "exchange": "binance-futures", "baseCurrency": "POWR", "quoteCurrency": "USDT", "type": "perpetual", "active": true, "availableSince": "2023-10-27T00:00:00.000Z", "priceIncrement": 0.0001, "amountIncrement": 1, "minTradeAmount": 1, "makerFee": 0.0002, "takerFee": 0.0004, "inverse": false, "contractType": "linear_perpetual", "contractMultiplier": 1, "underlyingIndex": "powrusdt", "listing": "2023-10-27T02:30:00.000Z"}, {"id": "tiausdt", "datasetId": "TIAUSDT", "exchange": "binance-futures", "baseCurrency": "TIA", "quoteCurrency": "USDT", "type": "perpetual", "active": true, "availableSince": "2023-10-31T00:00:00.000Z", "priceIncrement": 0.0001, "amountIncrement": 1, "minTradeAmount": 1, "makerFee": 0.0002, "takerFee": 0.0004, "inverse": false, "contractType": "linear_perpetual", "contractMultiplier": 1, "underlyingIndex": "tiausdt", "listing": "2023-10-31T16:30:00.000Z"}, {"id": "tokenusdt", "datasetId": "TOKENUSDT", "exchange": "binance-futures", "baseCurrency": "TOKEN", "quoteCurrency": "USDT", "type": "perpetual", "active": true, "availableSince": "2023-11-03T00:00:00.000Z", "priceIncrement": 1e-05, "amountIncrement": 1, "minTradeAmount": 1, "makerFee": 0.0002, "takerFee": 0.0004, "inverse": false, "contractType": "linear_perpetual", "contractMultiplier": 1, "underlyingIndex": "tokenusdt", "listing": "2023-11-03T15:00:00.000Z"}, {"id": "ilvusdt", "datasetId": "ILVUSDT", "exchange": "binance-futures", "baseCurrency": "ILV", "quoteCurrency": "USDT", "type": "perpetual", "active": true, "availableSince": "2023-11-10T00:00:00.000Z", "priceIncrement": 0.001, "amountIncrement": 0.1, "minTradeAmount": 0.1, "makerFee": 0.0002, "takerFee": 0.0004, "inverse": false, "contractType": "linear_perpetual", "contractMultiplier": 1, "underlyingIndex": "ilvusdt", "listing": "2023-11-10T16:30:00.000Z", "changes": [{"until": "2024-09-20T06:35:00.000Z", "priceIncrement": 0.01}]}, {"id": "ntrnusdt", "datasetId": "NTRNUSDT", "exchange": "binance-futures", "baseCurrency": "NTRN", "quoteCurrency": "USDT", "type": "perpetual", "active": true, "availableSince": "2023-11-14T00:00:00.000Z", "priceIncrement": 0.0001, "amountIncrement": 1, "minTradeAmount": 1, "makerFee": 0.0002, "takerFee": 0.0004, "inverse": false, "contractType": "linear_perpetual", "contractMultiplier": 1, "underlyingIndex": "ntrnusdt", "listing": "2023-11-14T12:00:00.000Z"}, {"id": "kasusdt", "datasetId": "KASUSDT", "exchange": "binance-futures", "baseCurrency": "KAS", "quoteCurrency": "USDT", "type": "perpetual", "active": true, "availableSince": "2023-11-17T00:00:00.000Z", "priceIncrement": 1e-05, "amountIncrement": 1, "minTradeAmount": 1, "makerFee": 0.0002, "takerFee": 0.0004, "inverse": false, "contractType": "linear_perpetual", "contractMultiplier": 1, "underlyingIndex": "kasusdt", "listing": "2023-11-17T02:00:00.000Z"}, {"id": "beamxusdt", "datasetId": "BEAMXUSDT", "exchange": "binance-futures", "baseCurrency": "BEAMX", "quoteCurrency": "USDT", "type": "perpetual", "active": true, "availableSince": "2023-11-17T00:00:00.000Z", "priceIncrement": 1e-06, "amountIncrement": 1, "minTradeAmount": 1, "makerFee": 0.0002, "takerFee": 0.0004, "inverse": false, "contractType": "linear_perpetual", "contractMultiplier": 1, "underlyingIndex": "beamxusdt", "listing": "2023-11-17T13:30:00.000Z"}, {"id": "1000bonkusdt", "datasetId": "1000BONKUSDT", "exchange": "binance-futures", "baseCurrency": "1000BONK", "quoteCurrency": "USDT", "type": "perpetual", "active": true, "availableSince": "2023-11-22T00:00:00.000Z", "priceIncrement": 1e-06, "amountIncrement": 1, "minTradeAmount": 1, "makerFee": 0.0002, "takerFee": 0.0004, "inverse": false, "contractType": "linear_perpetual", "contractMultiplier": 1, "underlyingIndex": "1000bonkusdt", "listing": "2023-11-22T14:00:00.000Z"}, {"id": "pythusdt", "datasetId": "PYTHUSDT", "exchange": "binance-futures", "baseCurrency": "PYTH", "quoteCurrency": "USDT", "type": "perpetual", "active": true, "availableSince": "2023-11-22T00:00:00.000Z", "priceIncrement": 1e-05, "amountIncrement": 1, "minTradeAmount": 1, "makerFee": 0.0002, "takerFee": 0.0004, "inverse": false, "contractType": "linear_perpetual", "contractMultiplier": 1, "underlyingIndex": "pythusdt", "listing": "2023-11-22T14:30:00.000Z", "changes": [{"until": "2024-11-28T06:30:00.000Z", "priceIncrement": 0.0001}]}, {"id": "ustcusdt", "datasetId": "USTCUSDT", "exchange": "binance-futures", "baseCurrency": "USTC", "quoteCurrency": "USDT", "type": "perpetual", "active": true, "availableSince": "2023-11-27T00:00:00.000Z", "priceIncrement": 1e-06, "amountIncrement": 1, "minTradeAmount": 1, "makerFee": 0.0002, "takerFee": 0.0004, "inverse": false, "contractType": "linear_perpetual", "contractMultiplier": 1, "underlyingIndex": "ustcusdt", "listing": "2023-11-27T12:30:00.000Z", "changes": [{"until": "2024-11-04T06:35:00.000Z", "priceIncrement": 1e-05}]}, {"id": "ongusdt", "datasetId": "ONGUSDT", "exchange": "binance-futures", "baseCurrency": "ONG", "quoteCurrency": "USDT", "type": "perpetual", "active": true, "availableSince": "2023-11-27T00:00:00.000Z", "priceIncrement": 1e-05, "amountIncrement": 1, "minTradeAmount": 1, "makerFee": 0.0002, "takerFee": 0.0004, "inverse": false, "contractType": "linear_perpetual", "contractMultiplier": 1, "underlyingIndex": "ongusdt", "changes": [{"until": "2024-03-19T06:35:00.000Z", "priceIncrement": 0.0001}], "listing": "2023-11-27T13:00:00.000Z"}, {"id": "auctionusdt", "datasetId": "AUCTIONUSDT", "exchange": "binance-futures", "baseCurrency": "AUCTION", "quoteCurrency": "USDT", "type": "perpetual", "active": true, "availableSince": "2023-12-15T00:00:00.000Z", "priceIncrement": 0.001, "amountIncrement": 0.01, "minTradeAmount": 0.01, "makerFee": 0.0002, "takerFee": 0.0004, "inverse": false, "contractType": "linear_perpetual", "contractMultiplier": 1, "underlyingIndex": "auctionusdt", "changes": [{"until": "2024-03-19T06:35:00.000Z", "priceIncrement": 0.01}], "listing": "2023-12-15T13:00:00.000Z"}, {"id": "1000ratsusdt", "datasetId": "1000RATSUSDT", "exchange": "binance-futures", "baseCurrency": "1000RATS", "quoteCurrency": "USDT", "type": "perpetual", "active": true, "availableSince": "2023-12-15T00:00:00.000Z", "priceIncrement": 1e-05, "amountIncrement": 1, "minTradeAmount": 1, "makerFee": 0.0002, "takerFee": 0.0004, "inverse": false, "contractType": "linear_perpetual", "contractMultiplier": 1, "underlyingIndex": "1000ratsusdt", "listing": "2023-12-15T14:00:00.000Z"}, {"id": "aceusdt", "datasetId": "ACEUSDT", "exchange": "binance-futures", "baseCurrency": "ACE", "quoteCurrency": "USDT", "type": "perpetual", "active": true, "availableSince": "2023-12-18T00:00:00.000Z", "priceIncrement": 0.0001, "amountIncrement": 0.01, "minTradeAmount": 0.01, "makerFee": 0.0002, "takerFee": 0.0004, "inverse": false, "contractType": "linear_perpetual", "contractMultiplier": 1, "underlyingIndex": "aceusdt", "listing": "2023-12-18T10:00:00.000Z"}, {"id": "movrusdt", "datasetId": "MOVRUSDT", "exchange": "binance-futures", "baseCurrency": "MOVR", "quoteCurrency": "USDT", "type": "perpetual", "active": true, "availableSince": "2023-12-26T00:00:00.000Z", "priceIncrement": 0.001, "amountIncrement": 0.01, "minTradeAmount": 0.01, "makerFee": 0.0002, "takerFee": 0.0004, "inverse": false, "contractType": "linear_perpetual", "contractMultiplier": 1, "underlyingIndex": "movrusdt", "listing": "2023-12-26T12:30:00.000Z"}, {"id": "nfpusdt", "datasetId": "NFPUSDT", "exchange": "binance-futures", "baseCurrency": "NFP", "quoteCurrency": "USDT", "type": "perpetual", "active": true, "availableSince": "2023-12-27T00:00:00.000Z", "priceIncrement": 0.0001, "amountIncrement": 0.1, "minTradeAmount": 0.1, "makerFee": 0.0002, "takerFee": 0.0004, "inverse": false, "contractType": "linear_perpetual", "contractMultiplier": 1, "underlyingIndex": "nfpusdt", "listing": "2023-12-27T12:30:00.000Z"}, {"id": "aiusdt", "datasetId": "AIUSDT", "exchange": "binance-futures", "baseCurrency": "AI", "quoteCurrency": "USDT", "type": "perpetual", "active": true, "availableSince": "2024-01-08T00:00:00.000Z", "priceIncrement": 1e-05, "amountIncrement": 1, "minTradeAmount": 1, "makerFee": 0.0002, "takerFee": 0.0004, "inverse": false, "contractType": "linear_perpetual", "contractMultiplier": 1, "underlyingIndex": "aiusdt", "listing": "2024-01-08T12:30:00.000Z"}, {"id": "xaiusdt", "datasetId": "XAIUSDT", "exchange": "binance-futures", "baseCurrency": "XAI", "quoteCurrency": "USDT", "type": "perpetual", "active": true, "availableSince": "2024-01-09T00:00:00.000Z", "priceIncrement": 1e-05, "amountIncrement": 1, "minTradeAmount": 1, "makerFee": 0.0002, "takerFee": 0.0004, "inverse": false, "contractType": "linear_perpetual", "contractMultiplier": 1, "underlyingIndex": "xaiusdt", "listing": "2024-01-09T14:00:00.000Z", "changes": [{"until": "2024-11-28T06:35:00.000Z", "priceIncrement": 0.0001}]}, {"id": "wifusdt", "datasetId": "WIFUSDT", "exchange": "binance-futures", "baseCurrency": "WIF", "quoteCurrency": "USDT", "type": "perpetual", "active": true, "availableSince": "2024-01-18T00:00:00.000Z", "priceIncrement": 0.0001, "amountIncrement": 0.1, "minTradeAmount": 0.1, "makerFee": 0.0002, "takerFee": 0.0004, "inverse": false, "contractType": "linear_perpetual", "contractMultiplier": 1, "underlyingIndex": "wifusdt", "listing": "2024-01-18T14:15:00.000Z"}, {"id": "jupusdt", "datasetId": "JUPUSDT", "exchange": "binance-futures", "baseCurrency": "JUP", "quoteCurrency": "USDT", "type": "perpetual", "active": true, "availableSince": "2024-01-31T00:00:00.000Z", "priceIncrement": 0.0001, "amountIncrement": 1, "minTradeAmount": 1, "makerFee": 0.0002, "takerFee": 0.0004, "inverse": false, "contractType": "linear_perpetual", "contractMultiplier": 1, "underlyingIndex": "jupusdt", "listing": "2024-01-31T18:30:00.000Z"}, {"id": "roninusdt", "datasetId": "RONINUSDT", "exchange": "binance-futures", "baseCurrency": "RONIN", "quoteCurrency": "USDT", "type": "perpetual", "active": true, "availableSince": "2024-02-06T00:00:00.000Z", "priceIncrement": 0.0001, "amountIncrement": 0.1, "minTradeAmount": 0.1, "makerFee": 0.0002, "takerFee": 0.0004, "inverse": false, "contractType": "linear_perpetual", "contractMultiplier": 1, "underlyingIndex": "roninusdt", "changes": [{"until": "2024-03-19T06:40:00.000Z", "priceIncrement": 0.001}], "listing": "2024-02-06T04:30:00.000Z"}, {"id": "suiusdc", "datasetId": "SUIUSDC", "exchange": "binance-futures", "baseCurrency": "SUI", "quoteCurrency": "USDC", "type": "perpetual", "active": true, "availableSince": "2024-02-08T00:00:00.000Z", "priceIncrement": 1e-05, "amountIncrement": 0.1, "minTradeAmount": 0.1, "makerFee": 0.0002, "takerFee": 0.0004, "inverse": false, "contractType": "linear_perpetual", "contractMultiplier": 1, "underlyingIndex": "suiusdc", "changes": [{"until": "2024-03-19T06:35:00.000Z", "priceIncrement": 0.0001}], "listing": "2024-02-08T07:00:00.000Z"}, {"id": "omusdt", "datasetId": "OMUSDT", "exchange": "binance-futures", "baseCurrency": "OM", "quoteCurrency": "USDT", "type": "perpetual", "active": true, "availableSince": "2024-02-13T00:00:00.000Z", "priceIncrement": 1e-05, "amountIncrement": 0.1, "minTradeAmount": 0.1, "makerFee": 0.0002, "takerFee": 0.0004, "inverse": false, "contractType": "linear_perpetual", "contractMultiplier": 1, "underlyingIndex": "omusdt", "listing": "2024-02-13T14:00:00.000Z"}, {"id": "pixelusdt", "datasetId": "PIXELUSDT", "exchange": "binance-futures", "baseCurrency": "PIXEL", "quoteCurrency": "USDT", "type": "perpetual", "active": true, "availableSince": "2024-02-19T00:00:00.000Z", "priceIncrement": 1e-05, "amountIncrement": 1, "minTradeAmount": 1, "makerFee": 0.0002, "takerFee": 0.0004, "inverse": false, "contractType": "linear_perpetual", "contractMultiplier": 1, "underlyingIndex": "pixelusdt", "listing": "2024-02-19T15:00:00.000Z", "changes": [{"until": "2024-11-28T06:35:00.000Z", "priceIncrement": 0.0001}]}, {"id": "portalusdt", "datasetId": "PORTALUSDT", "exchange": "binance-futures", "baseCurrency": "PORTAL", "quoteCurrency": "USDT", "type": "perpetual", "active": true, "availableSince": "2024-02-29T00:00:00.000Z", "priceIncrement": 0.0001, "amountIncrement": 0.1, "minTradeAmount": 0.1, "makerFee": 0.0002, "takerFee": 0.0004, "inverse": false, "contractType": "linear_perpetual", "contractMultiplier": 1, "underlyingIndex": "portalusdt", "listing": "2024-02-29T15:00:00.000Z"}, {"id": "myrousdt", "datasetId": "MYROUSDT", "exchange": "binance-futures", "baseCurrency": "MYRO", "quoteCurrency": "USDT", "type": "perpetual", "active": true, "availableSince": "2024-03-05T00:00:00.000Z", "priceIncrement": 1e-05, "amountIncrement": 1, "minTradeAmount": 1, "makerFee": 0.0002, "takerFee": 0.0004, "inverse": false, "contractType": "linear_perpetual", "contractMultiplier": 1, "underlyingIndex": "myrousdt", "listing": "2024-03-05T08:30:00.000Z"}, {"id": "1000pepeusdc", "datasetId": "1000PEPEUSDC", "exchange": "binance-futures", "baseCurrency": "1000PEPE", "quoteCurrency": "USDC", "type": "perpetual", "active": true, "availableSince": "2024-03-07T00:00:00.000Z", "priceIncrement": 1e-07, "amountIncrement": 1, "minTradeAmount": 1, "makerFee": 0.0002, "takerFee": 0.0004, "inverse": false, "contractType": "linear_perpetual", "contractMultiplier": 1, "underlyingIndex": "1000pepeusdc", "listing": "2024-03-07T08:30:00.000Z"}, {"id": "vanryusdt", "datasetId": "VANRYUSDT", "exchange": "binance-futures", "baseCurrency": "VANRY", "quoteCurrency": "USDT", "type": "perpetual", "active": true, "availableSince": "2024-03-13T00:00:00.000Z", "priceIncrement": 1e-05, "amountIncrement": 1, "minTradeAmount": 1, "makerFee": 0.0002, "takerFee": 0.0004, "inverse": false, "contractType": "linear_perpetual", "contractMultiplier": 1, "underlyingIndex": "vanryusdt", "listing": "2024-03-13T17:30:00.000Z"}, {"id": "wldusdc", "datasetId": "WLDUSDC", "exchange": "binance-futures", "baseCurrency": "WLD", "quoteCurrency": "USDC", "type": "perpetual", "active": true, "availableSince": "2024-03-14T00:00:00.000Z", "priceIncrement": 1e-05, "amountIncrement": 0.1, "minTradeAmount": 0.1, "makerFee": 0.0002, "takerFee": 0.0004, "inverse": false, "contractType": "linear_perpetual", "contractMultiplier": 1, "underlyingIndex": "wldusdc", "changes": [{"until": "2024-03-19T06:35:00.000Z", "priceIncrement": 0.0001}], "listing": "2024-03-14T07:00:00.000Z"}, {"id": "1000shibusdc", "datasetId": "1000SHIBUSDC", "exchange": "binance-futures", "baseCurrency": "1000SHIB", "quoteCurrency": "USDC", "type": "perpetual", "active": true, "availableSince": "2024-03-28T00:00:00.000Z", "priceIncrement": 1e-06, "amountIncrement": 1, "minTradeAmount": 1, "makerFee": 0.0002, "takerFee": 0.0004, "inverse": false, "contractType": "linear_perpetual", "contractMultiplier": 1, "underlyingIndex": "1000shibusdc", "listing": "2024-03-28T07:00:00.000Z"}, {"id": "enausdt", "datasetId": "ENAUSDT", "exchange": "binance-futures", "baseCurrency": "ENA", "quoteCurrency": "USDT", "type": "perpetual", "active": true, "availableSince": "2024-04-02T00:00:00.000Z", "priceIncrement": 0.0001, "amountIncrement": 1, "minTradeAmount": 1, "makerFee": 0.0002, "takerFee": 0.0004, "inverse": false, "contractType": "linear_perpetual", "contractMultiplier": 1, "underlyingIndex": "enausdt", "changes": [{"until": "2024-05-08T06:35:00.000Z", "priceIncrement": 0.001}], "listing": "2024-04-02T12:30:00.000Z"}, {"id": "wifusdc", "datasetId": "WIFUSDC", "exchange": "binance-futures", "baseCurrency": "WIF", "quoteCurrency": "USDC", "type": "perpetual", "active": true, "availableSince": "2024-04-04T00:00:00.000Z", "priceIncrement": 0.0001, "amountIncrement": 0.1, "minTradeAmount": 0.1, "makerFee": 0.0002, "takerFee": 0.0004, "inverse": false, "contractType": "linear_perpetual", "contractMultiplier": 1, "underlyingIndex": "wifusdc", "listing": "2024-04-04T07:15:00.000Z"}, {"id": "tnsrusdt", "datasetId": "TNSRUSDT", "exchange": "binance-futures", "baseCurrency": "TNSR", "quoteCurrency": "USDT", "type": "perpetual", "active": true, "availableSince": "2024-04-08T00:00:00.000Z", "priceIncrement": 0.0001, "amountIncrement": 0.1, "minTradeAmount": 0.1, "makerFee": 0.0002, "takerFee": 0.0004, "inverse": false, "contractType": "linear_perpetual", "contractMultiplier": 1, "underlyingIndex": "tnsrusdt", "changes": [{"until": "2024-05-08T06:35:00.000Z", "priceIncrement": 0.001}], "listing": "2024-04-08T17:00:00.000Z"}, {"id": "sagausdt", "datasetId": "SAGAUSDT", "exchange": "binance-futures", "baseCurrency": "SAGA", "quoteCurrency": "USDT", "type": "perpetual", "active": true, "availableSince": "2024-04-09T00:00:00.000Z", "priceIncrement": 0.0001, "amountIncrement": 0.1, "minTradeAmount": 0.1, "makerFee": 0.0002, "takerFee": 0.0004, "inverse": false, "contractType": "linear_perpetual", "contractMultiplier": 1, "underlyingIndex": "sagausdt", "listing": "2024-04-09T10:30:00.000Z"}, {"id": "taousdt", "datasetId": "TAOUSDT", "exchange": "binance-futures", "baseCurrency": "TAO", "quoteCurrency": "USDT", "type": "perpetual", "active": true, "availableSince": "2024-04-11T00:00:00.000Z", "priceIncrement": 0.01, "amountIncrement": 0.001, "minTradeAmount": 0.001, "makerFee": 0.0002, "takerFee": 0.0004, "inverse": false, "contractType": "linear_perpetual", "contractMultiplier": 1, "underlyingIndex": "taousdt", "listing": "2024-04-11T14:30:00.000Z"}, {"id": "omniusdt", "datasetId": "OMNIUSDT", "exchange": "binance-futures", "baseCurrency": "OMNI", "quoteCurrency": "USDT", "type": "perpetual", "active": true, "availableSince": "2024-04-17T00:00:00.000Z", "priceIncrement": 0.001, "amountIncrement": 0.01, "minTradeAmount": 0.01, "makerFee": 0.0002, "takerFee": 0.0004, "inverse": false, "contractType": "linear_perpetual", "contractMultiplier": 1, "underlyingIndex": "omniusdt", "changes": [{"until": "2024-05-08T06:35:00.000Z", "priceIncrement": 0.01}], "listing": "2024-04-17T14:00:00.000Z"}, {"id": "arbusdc", "datasetId": "ARBUSDC", "exchange": "binance-futures", "baseCurrency": "ARB", "quoteCurrency": "USDC", "type": "perpetual", "active": true, "availableSince": "2024-04-18T00:00:00.000Z", "priceIncrement": 0.0001, "amountIncrement": 0.1, "minTradeAmount": 0.1, "makerFee": 0.0002, "takerFee": 0.0004, "inverse": false, "contractType": "linear_perpetual", "contractMultiplier": 1, "underlyingIndex": "arbusdc", "listing": "2024-04-18T07:00:00.000Z"}, {"id": "tiausdc", "datasetId": "TIAUSDC", "exchange": "binance-futures", "baseCurrency": "TIA", "quoteCurrency": "USDC", "type": "perpetual", "active": true, "availableSince": "2024-04-25T00:00:00.000Z", "priceIncrement": 0.0001, "amountIncrement": 1, "minTradeAmount": 1, "makerFee": 0.0002, "takerFee": 0.0004, "inverse": false, "contractType": "linear_perpetual", "contractMultiplier": 1, "underlyingIndex": "tiausdc", "listing": "2024-04-25T07:15:00.000Z"}, {"id": "rezusdt", "datasetId": "REZUSDT", "exchange": "binance-futures", "baseCurrency": "REZ", "quoteCurrency": "USDT", "type": "perpetual", "active": true, "availableSince": "2024-04-30T00:00:00.000Z", "priceIncrement": 1e-05, "amountIncrement": 1, "minTradeAmount": 1, "makerFee": 0.0002, "takerFee": 0.0004, "inverse": false, "contractType": "linear_perpetual", "contractMultiplier": 1, "underlyingIndex": "rezusdt", "changes": [{"until": "2024-06-21T06:35:00.000Z", "priceIncrement": 0.0001}], "listing": "2024-04-30T14:00:00.000Z"}, {"id": "enausdc", "datasetId": "ENAUSDC", "exchange": "binance-futures", "baseCurrency": "ENA", "quoteCurrency": "USDC", "type": "perpetual", "active": true, "availableSince": "2024-05-02T00:00:00.000Z", "priceIncrement": 0.0001, "amountIncrement": 1, "minTradeAmount": 1, "makerFee": 0.0002, "takerFee": 0.0004, "inverse": false, "contractType": "linear_perpetual", "contractMultiplier": 1, "underlyingIndex": "enausdc", "listing": "2024-05-02T07:00:00.000Z"}, {"id": "1000bonkusdc", "datasetId": "1000BONKUSDC", "exchange": "binance-futures", "baseCurrency": "1000BONK", "quoteCurrency": "USDC", "type": "perpetual", "active": true, "availableSince": "2024-05-02T00:00:00.000Z", "priceIncrement": 1e-06, "amountIncrement": 1, "minTradeAmount": 1, "makerFee": 0.0002, "takerFee": 0.0004, "inverse": false, "contractType": "linear_perpetual", "contractMultiplier": 1, "underlyingIndex": "1000bonkusdc", "listing": "2024-05-02T07:00:00.000Z"}, {"id": "bbusdt", "datasetId": "BBUSDT", "exchange": "binance-futures", "baseCurrency": "BB", "quoteCurrency": "USDT", "type": "perpetual", "active": true, "availableSince": "2024-05-13T00:00:00.000Z", "priceIncrement": 1e-05, "amountIncrement": 1, "minTradeAmount": 1, "makerFee": 0.0002, "takerFee": 0.0004, "inverse": false, "contractType": "linear_perpetual", "contractMultiplier": 1, "underlyingIndex": "bbusdt", "listing": "2024-05-13T12:30:00.000Z", "changes": [{"until": "2024-11-28T06:35:00.000Z", "priceIncrement": 0.0001}]}, {"id": "turbousdt", "datasetId": "TURBOUSDT", "exchange": "binance-futures", "baseCurrency": "TURBO", "quoteCurrency": "USDT", "type": "perpetual", "active": true, "availableSince": "2024-05-30T00:00:00.000Z", "priceIncrement": 1e-07, "amountIncrement": 1, "minTradeAmount": 1, "makerFee": 0.0002, "takerFee": 0.0004, "inverse": false, "contractType": "linear_perpetual", "contractMultiplier": 1, "underlyingIndex": "turbousdt", "listing": "2024-05-30T15:30:00.000Z", "changes": [{"until": "2024-09-20T06:35:00.000Z", "priceIncrement": 1e-06}]}, {"id": "iousdt", "datasetId": "IOUSDT", "exchange": "binance-futures", "baseCurrency": "IO", "quoteCurrency": "USDT", "type": "perpetual", "active": true, "availableSince": "2024-06-11T00:00:00.000Z", "priceIncrement": 0.0001, "amountIncrement": 0.1, "minTradeAmount": 0.1, "makerFee": 0.0002, "takerFee": 0.0004, "inverse": false, "contractType": "linear_perpetual", "contractMultiplier": 1, "underlyingIndex": "iousdt", "listing": "2024-06-11T14:00:00.000Z", "changes": [{"until": "2024-11-28T06:35:00.000Z", "priceIncrement": 0.001}]}, {"id": "listausdt", "datasetId": "LISTAUSDT", "exchange": "binance-futures", "baseCurrency": "LISTA", "quoteCurrency": "USDT", "type": "perpetual", "active": true, "availableSince": "2024-06-20T00:00:00.000Z", "priceIncrement": 0.0001, "amountIncrement": 1, "minTradeAmount": 1, "makerFee": 0.0002, "takerFee": 0.0004, "inverse": false, "contractType": "linear_perpetual", "contractMultiplier": 1, "underlyingIndex": "listausdt", "listing": "2024-06-20T12:30:00.000Z"}, {"id": "renderusdt", "datasetId": "RENDERUSDT", "exchange": "binance-futures", "baseCurrency": "RENDER", "quoteCurrency": "USDT", "type": "perpetual", "active": true, "availableSince": "2024-07-26T00:00:00.000Z", "priceIncrement": 0.001, "amountIncrement": 0.1, "minTradeAmount": 0.1, "makerFee": 0.0002, "takerFee": 0.0004, "inverse": false, "contractType": "linear_perpetual", "contractMultiplier": 1, "underlyingIndex": "renderusdt", "listing": "2024-07-26T10:00:00.000Z"}, {"id": "bananausdt", "datasetId": "BANANAUSDT", "exchange": "binance-futures", "baseCurrency": "BANANA", "quoteCurrency": "USDT", "type": "perpetual", "active": true, "availableSince": "2024-08-15T00:00:00.000Z", "priceIncrement": 0.001, "amountIncrement": 0.1, "minTradeAmount": 0.1, "makerFee": 0.0002, "takerFee": 0.0004, "inverse": false, "contractType": "linear_perpetual", "contractMultiplier": 1, "underlyingIndex": "bananausdt", "listing": "2024-08-15T02:00:00.000Z"}, {"id": "rareusdt", "datasetId": "RAREUSDT", "exchange": "binance-futures", "baseCurrency": "RARE", "quoteCurrency": "USDT", "type": "perpetual", "active": true, "availableSince": "2024-08-15T00:00:00.000Z", "priceIncrement": 1e-05, "amountIncrement": 1, "minTradeAmount": 1, "makerFee": 0.0002, "takerFee": 0.0004, "inverse": false, "contractType": "linear_perpetual", "contractMultiplier": 1, "underlyingIndex": "rareusdt", "listing": "2024-08-15T13:00:00.000Z", "changes": [{"until": "2024-11-04T06:35:00.000Z", "priceIncrement": 0.0001}]}, {"id": "synusdt", "datasetId": "SYNUSDT", "exchange": "binance-futures", "baseCurrency": "SYN", "quoteCurrency": "USDT", "type": "perpetual", "active": true, "availableSince": "2024-08-16T00:00:00.000Z", "priceIncrement": 0.0001, "amountIncrement": 1, "minTradeAmount": 1, "makerFee": 0.0002, "takerFee": 0.0004, "inverse": false, "contractType": "linear_perpetual", "contractMultiplier": 1, "underlyingIndex": "synusdt", "listing": "2024-08-16T12:30:00.000Z"}, {"id": "voxelusdt", "datasetId": "VOXELUSDT", "exchange": "binance-futures", "baseCurrency": "VOXEL", "quoteCurrency": "USDT", "type": "perpetual", "active": true, "availableSince": "2024-08-20T00:00:00.000Z", "priceIncrement": 0.0001, "amountIncrement": 1, "minTradeAmount": 1, "makerFee": 0.0002, "takerFee": 0.0004, "inverse": false, "contractType": "linear_perpetual", "contractMultiplier": 1, "underlyingIndex": "voxelusdt", "listing": "2024-08-20T10:30:00.000Z"}, {"id": "alpacausdt", "datasetId": "ALPACAUSDT", "exchange": "binance-futures", "baseCurrency": "ALPACA", "quoteCurrency": "USDT", "type": "perpetual", "active": true, "availableSince": "2024-08-22T00:00:00.000Z", "priceIncrement": 1e-05, "amountIncrement": 1, "minTradeAmount": 1, "makerFee": 0.0002, "takerFee": 0.0004, "inverse": false, "contractType": "linear_perpetual", "contractMultiplier": 1, "underlyingIndex": "alpacausdt", "listing": "2024-08-22T10:30:00.000Z"}, {"id": "popcatusdt", "datasetId": "POPCATUSDT", "exchange": "binance-futures", "baseCurrency": "POPCAT", "quoteCurrency": "USDT", "type": "perpetual", "active": true, "availableSince": "2024-08-22T00:00:00.000Z", "priceIncrement": 0.0001, "amountIncrement": 1, "minTradeAmount": 1, "makerFee": 0.0002, "takerFee": 0.0004, "inverse": false, "contractType": "linear_perpetual", "contractMultiplier": 1, "underlyingIndex": "popcatusdt", "listing": "2024-08-22T13:00:00.000Z"}, {"id": "vidtusdt", "datasetId": "VIDTUSDT", "exchange": "binance-futures", "baseCurrency": "VIDT", "quoteCurrency": "USDT", "type": "perpetual", "active": true, "availableSince": "2024-08-23T00:00:00.000Z", "priceIncrement": 1e-05, "amountIncrement": 1, "minTradeAmount": 1, "makerFee": 0.0002, "takerFee": 0.0004, "inverse": false, "contractType": "linear_perpetual", "contractMultiplier": 1, "underlyingIndex": "vidtusdt", "listing": "2024-08-23T09:30:00.000Z"}, {"id": "nulsusdt", "datasetId": "NULSUSDT", "exchange": "binance-futures", "baseCurrency": "NULS", "quoteCurrency": "USDT", "type": "perpetual", "active": true, "availableSince": "2024-08-26T00:00:00.000Z", "priceIncrement": 0.0001, "amountIncrement": 1, "minTradeAmount": 1, "makerFee": 0.0002, "takerFee": 0.0004, "inverse": false, "contractType": "linear_perpetual", "contractMultiplier": 1, "underlyingIndex": "nulsusdt", "listing": "2024-08-26T08:30:00.000Z"}, {"id": "mboxusdt", "datasetId": "MBOXUSDT", "exchange": "binance-futures", "baseCurrency": "MBOX", "quoteCurrency": "USDT", "type": "perpetual", "active": true, "availableSince": "2024-08-28T00:00:00.000Z", "priceIncrement": 0.0001, "amountIncrement": 1, "minTradeAmount": 1, "makerFee": 0.0002, "takerFee": 0.0004, "inverse": false, "contractType": "linear_perpetual", "contractMultiplier": 1, "underlyingIndex": "mboxusdt", "listing": "2024-08-28T09:30:00.000Z"}, {"id": "chessusdt", "datasetId": "CHESSUSDT", "exchange": "binance-futures", "baseCurrency": "CHESS", "quoteCurrency": "USDT", "type": "perpetual", "active": true, "availableSince": "2024-08-29T00:00:00.000Z", "priceIncrement": 0.0001, "amountIncrement": 1, "minTradeAmount": 1, "makerFee": 0.0002, "takerFee": 0.0004, "inverse": false, "contractType": "linear_perpetual", "contractMultiplier": 1, "underlyingIndex": "chessusdt", "listing": "2024-08-29T07:30:00.000Z"}, {"id": "fluxusdt", "datasetId": "FLUXUSDT", "exchange": "binance-futures", "baseCurrency": "FLUX", "quoteCurrency": "USDT", "type": "perpetual", "active": true, "availableSince": "2024-09-03T00:00:00.000Z", "priceIncrement": 0.0001, "amountIncrement": 1, "minTradeAmount": 1, "makerFee": 0.0002, "takerFee": 0.0004, "inverse": false, "contractType": "linear_perpetual", "contractMultiplier": 1, "underlyingIndex": "fluxusdt", "listing": "2024-09-03T07:00:00.000Z"}, {"id": "bswusdt", "datasetId": "BSWUSDT", "exchange": "binance-futures", "baseCurrency": "BSW", "quoteCurrency": "USDT", "type": "perpetual", "active": true, "availableSince": "2024-09-05T00:00:00.000Z", "priceIncrement": 1e-05, "amountIncrement": 1, "minTradeAmount": 1, "makerFee": 0.0002, "takerFee": 0.0004, "inverse": false, "contractType": "linear_perpetual", "contractMultiplier": 1, "underlyingIndex": "bswusdt", "listing": "2024-09-05T06:00:00.000Z"}, {"id": "quickusdt", "datasetId": "QUICKUSDT", "exchange": "binance-futures", "baseCurrency": "QUICK", "quoteCurrency": "USDT", "type": "perpetual", "active": true, "availableSince": "2024-09-06T00:00:00.000Z", "priceIncrement": 1e-05, "amountIncrement": 1, "minTradeAmount": 1, "makerFee": 0.0002, "takerFee": 0.0004, "inverse": false, "contractType": "linear_perpetual", "contractMultiplier": 1, "underlyingIndex": "quickusdt", "listing": "2024-09-06T05:00:00.000Z"}, {"id": "neiroethusdt", "datasetId": "NEIROETHUSDT", "exchange": "binance-futures", "baseCurrency": "NEIROETH", "quoteCurrency": "USDT", "type": "perpetual", "active": true, "availableSince": "2024-09-06T00:00:00.000Z", "priceIncrement": 1e-05, "amountIncrement": 1, "minTradeAmount": 1, "makerFee": 0.0002, "takerFee": 0.0004, "inverse": false, "contractType": "linear_perpetual", "contractMultiplier": 1, "underlyingIndex": "neiroethusdt", "listing": "2024-09-06T14:00:00.000Z", "changes": [{"until": "2024-11-04T06:35:00.000Z", "priceIncrement": 0.0001}]}, {"id": "aergousdt", "datasetId": "AERGOUSDT", "exchange": "binance-futures", "baseCurrency": "AERGO", "quoteCurrency": "USDT", "type": "perpetual", "active": true, "availableSince": "2024-09-10T00:00:00.000Z", "priceIncrement": 0.0001, "amountIncrement": 1, "minTradeAmount": 1, "makerFee": 0.0002, "takerFee": 0.0004, "inverse": false, "contractType": "linear_perpetual", "contractMultiplier": 1, "underlyingIndex": "aergousdt", "listing": "2024-09-10T12:15:00.000Z"}, {"id": "polusdt", "datasetId": "POLUSDT", "exchange": "binance-futures", "baseCurrency": "POL", "quoteCurrency": "USDT", "type": "perpetual", "active": true, "availableSince": "2024-09-13T00:00:00.000Z", "priceIncrement": 1e-05, "amountIncrement": 1, "minTradeAmount": 1, "makerFee": 0.0002, "takerFee": 0.0004, "inverse": false, "contractType": "linear_perpetual", "contractMultiplier": 1, "underlyingIndex": "polusdt", "listing": "2024-09-13T12:15:00.000Z", "changes": [{"until": "2024-11-04T06:35:00.000Z", "priceIncrement": 0.0001}]}, {"id": "uxlinkusdt", "datasetId": "UXLINKUSDT", "exchange": "binance-futures", "baseCurrency": "UXLINK", "quoteCurrency": "USDT", "type": "perpetual", "active": true, "availableSince": "2024-09-15T00:00:00.000Z", "priceIncrement": 0.0001, "amountIncrement": 1, "minTradeAmount": 1, "makerFee": 0.0002, "takerFee": 0.0004, "inverse": false, "contractType": "linear_perpetual", "contractMultiplier": 1, "underlyingIndex": "uxlinkusdt", "listing": "2024-09-15T15:00:00.000Z"}, {"id": "1mbabydogeusdt", "datasetId": "1MBABYDOGEUSDT", "exchange": "binance-futures", "baseCurrency": "1MBABYDOGE", "quoteCurrency": "USDT", "type": "perpetual", "active": true, "availableSince": "2024-09-16T00:00:00.000Z", "priceIncrement": 1e-07, "amountIncrement": 1, "minTradeAmount": 1, "makerFee": 0.0002, "takerFee": 0.0004, "inverse": false, "contractType": "linear_perpetual", "contractMultiplier": 1, "underlyingIndex": "1mbabydogeusdt", "listing": "2024-09-16T11:35:00.000Z"}, {"id": "fiousdt", "datasetId": "FIOUSDT", "exchange": "binance-futures", "baseCurrency": "FIO", "quoteCurrency": "USDT", "type": "perpetual", "active": true, "availableSince": "2024-09-20T00:00:00.000Z", "priceIncrement": 1e-05, "amountIncrement": 1, "minTradeAmount": 1, "makerFee": 0.0002, "takerFee": 0.0004, "inverse": false, "contractType": "linear_perpetual", "contractMultiplier": 1, "underlyingIndex": "fiousdt", "listing": "2024-09-20T11:30:00.000Z"}, {"id": "catiusdt", "datasetId": "CATIUSDT", "exchange": "binance-futures", "baseCurrency": "CATI", "quoteCurrency": "USDT", "type": "perpetual", "active": true, "availableSince": "2024-09-20T00:00:00.000Z", "priceIncrement": 0.0001, "amountIncrement": 1, "minTradeAmount": 1, "makerFee": 0.0002, "takerFee": 0.0004, "inverse": false, "contractType": "linear_perpetual", "contractMultiplier": 1, "underlyingIndex": "catiusdt", "listing": "2024-09-20T11:30:00.000Z"}, {"id": "lokausdt", "datasetId": "LOKAUSDT", "exchange": "binance-futures", "baseCurrency": "LOKA", "quoteCurrency": "USDT", "type": "perpetual", "active": true, "availableSince": "2024-09-24T00:00:00.000Z", "priceIncrement": 0.0001, "amountIncrement": 1, "minTradeAmount": 1, "makerFee": 0.0002, "takerFee": 0.0004, "inverse": false, "contractType": "linear_perpetual", "contractMultiplier": 1, "underlyingIndex": "lokausdt", "listing": "2024-09-24T11:30:00.000Z"}, {"id": "hmstrusdt", "datasetId": "HMSTRUSDT", "exchange": "binance-futures", "baseCurrency": "HMSTR", "quoteCurrency": "USDT", "type": "perpetual", "active": true, "availableSince": "2024-09-26T00:00:00.000Z", "priceIncrement": 1e-06, "amountIncrement": 1, "minTradeAmount": 1, "makerFee": 0.0002, "takerFee": 0.0004, "inverse": false, "contractType": "linear_perpetual", "contractMultiplier": 1, "underlyingIndex": "hmstrusdt", "listing": "2024-09-26T12:30:00.000Z"}, {"id": "reiusdt", "datasetId": "REIUSDT", "exchange": "binance-futures", "baseCurrency": "REI", "quoteCurrency": "USDT", "type": "perpetual", "active": true, "availableSince": "2024-09-27T00:00:00.000Z", "priceIncrement": 1e-05, "amountIncrement": 1, "minTradeAmount": 1, "makerFee": 0.0002, "takerFee": 0.0004, "inverse": false, "contractType": "linear_perpetual", "contractMultiplier": 1, "underlyingIndex": "reiusdt", "listing": "2024-09-27T11:00:00.000Z"}, {"id": "cosusdt", "datasetId": "COSUSDT", "exchange": "binance-futures", "baseCurrency": "COS", "quoteCurrency": "USDT", "type": "perpetual", "active": true, "availableSince": "2024-09-30T00:00:00.000Z", "priceIncrement": 1e-06, "amountIncrement": 1, "minTradeAmount": 1, "makerFee": 0.0002, "takerFee": 0.0004, "inverse": false, "contractType": "linear_perpetual", "contractMultiplier": 1, "underlyingIndex": "cosusdt", "listing": "2024-09-30T13:00:00.000Z"}, {"id": "1000catusdt", "datasetId": "1000CATUSDT", "exchange": "binance-futures", "baseCurrency": "1000CAT", "quoteCurrency": "USDT", "type": "perpetual", "active": true, "availableSince": "2024-10-21T00:00:00.000Z", "priceIncrement": 1e-05, "amountIncrement": 1, "minTradeAmount": 1, "makerFee": 0.0002, "takerFee": 0.0004, "inverse": false, "contractType": "linear_perpetual", "contractMultiplier": 1, "underlyingIndex": "1000catusdt", "listing": "2024-10-21T12:30:00.000Z"}, {"id": "scrusdt", "datasetId": "SCRUSDT", "exchange": "binance-futures", "baseCurrency": "SCR", "quoteCurrency": "USDT", "type": "perpetual", "active": true, "availableSince": "2024-10-22T00:00:00.000Z", "priceIncrement": 0.0001, "amountIncrement": 1, "minTradeAmount": 1, "makerFee": 0.0002, "takerFee": 0.0004, "inverse": false, "contractType": "linear_perpetual", "contractMultiplier": 1, "underlyingIndex": "scrusdt", "listing": "2024-10-22T10:00:00.000Z", "changes": [{"until": "2024-11-04T06:35:00.000Z", "priceIncrement": 0.001}]}, {"id": "moodengusdt", "datasetId": "MOODENGUSDT", "exchange": "binance-futures", "baseCurrency": "MOODENG", "quoteCurrency": "USDT", "type": "perpetual", "active": true, "availableSince": "2024-10-25T00:00:00.000Z", "priceIncrement": 1e-05, "amountIncrement": 1, "minTradeAmount": 1, "makerFee": 0.0002, "takerFee": 0.0004, "inverse": false, "contractType": "linear_perpetual", "contractMultiplier": 1, "underlyingIndex": "moodengusdt", "listing": "2024-10-25T10:00:00.000Z"}, {"id": "santosusdt", "datasetId": "SANTOSUSDT", "exchange": "binance-futures", "baseCurrency": "SANTOS", "quoteCurrency": "USDT", "type": "perpetual", "active": true, "availableSince": "2024-10-28T00:00:00.000Z", "priceIncrement": 0.001, "amountIncrement": 0.1, "minTradeAmount": 0.1, "makerFee": 0.0002, "takerFee": 0.0004, "inverse": false, "contractType": "linear_perpetual", "contractMultiplier": 1, "underlyingIndex": "santosusdt", "listing": "2024-10-28T14:00:00.000Z"}, {"id": "troyusdt", "datasetId": "TROYUSDT", "exchange": "binance-futures", "baseCurrency": "TROY", "quoteCurrency": "USDT", "type": "perpetual", "active": true, "availableSince": "2024-10-31T00:00:00.000Z", "priceIncrement": 1e-06, "amountIncrement": 1, "minTradeAmount": 1, "makerFee": 0.0002, "takerFee": 0.0004, "inverse": false, "contractType": "linear_perpetual", "contractMultiplier": 1, "underlyingIndex": "troyusdt", "listing": "2024-10-31T13:00:00.000Z"}, {"id": "cowusdt", "datasetId": "COWUSDT", "exchange": "binance-futures", "baseCurrency": "COW", "quoteCurrency": "USDT", "type": "perpetual", "active": true, "availableSince": "2024-11-06T00:00:00.000Z", "priceIncrement": 0.0001, "amountIncrement": 1, "minTradeAmount": 1, "makerFee": 0.0002, "takerFee": 0.0004, "inverse": false, "contractType": "linear_perpetual", "contractMultiplier": 1, "underlyingIndex": "cowusdt", "listing": "2024-11-06T13:30:00.000Z"}, {"id": "cetususdt", "datasetId": "CETUSUSDT", "exchange": "binance-futures", "baseCurrency": "CETUS", "quoteCurrency": "USDT", "type": "perpetual", "active": true, "availableSince": "2024-11-06T00:00:00.000Z", "priceIncrement": 1e-05, "amountIncrement": 1, "minTradeAmount": 1, "makerFee": 0.0002, "takerFee": 0.0004, "inverse": false, "contractType": "linear_perpetual", "contractMultiplier": 1, "underlyingIndex": "cetususdt", "listing": "2024-11-06T14:00:00.000Z"}, {"id": "1000000mogusdt", "datasetId": "1000000MOGUSDT", "exchange": "binance-futures", "baseCurrency": "1000000MOG", "quoteCurrency": "USDT", "type": "perpetual", "active": true, "availableSince": "2024-11-07T00:00:00.000Z", "priceIncrement": 0.0001, "amountIncrement": 0.1, "minTradeAmount": 0.1, "makerFee": 0.0002, "takerFee": 0.0004, "inverse": false, "contractType": "linear_perpetual", "contractMultiplier": 1, "underlyingIndex": "1000000mogusdt", "listing": "2024-11-07T12:30:00.000Z"}, {"id": "grassusdt", "datasetId": "GRASSUSDT", "exchange": "binance-futures", "baseCurrency": "GRASS", "quoteCurrency": "USDT", "type": "perpetual", "active": true, "availableSince": "2024-11-08T00:00:00.000Z", "priceIncrement": 0.0001, "amountIncrement": 0.1, "minTradeAmount": 0.1, "makerFee": 0.0002, "takerFee": 0.0004, "inverse": false, "contractType": "linear_perpetual", "contractMultiplier": 1, "underlyingIndex": "grassusdt", "listing": "2024-11-08T15:30:00.000Z"}, {"id": "driftusdt", "datasetId": "DRIFTUSDT", "exchange": "binance-futures", "baseCurrency": "DRIFT", "quoteCurrency": "USDT", "type": "perpetual", "active": true, "availableSince": "2024-11-08T00:00:00.000Z", "priceIncrement": 0.0001, "amountIncrement": 1, "minTradeAmount": 1, "makerFee": 0.0002, "takerFee": 0.0004, "inverse": false, "contractType": "linear_perpetual", "contractMultiplier": 1, "underlyingIndex": "driftusdt", "listing": "2024-11-08T16:00:00.000Z"}, {"id": "swellusdt", "datasetId": "SWELLUSDT", "exchange": "binance-futures", "baseCurrency": "SWELL", "quoteCurrency": "USDT", "type": "perpetual", "active": true, "availableSince": "2024-11-08T00:00:00.000Z", "priceIncrement": 1e-05, "amountIncrement": 1, "minTradeAmount": 1, "makerFee": 0.0002, "takerFee": 0.0004, "inverse": false, "contractType": "linear_perpetual", "contractMultiplier": 1, "underlyingIndex": "swellusdt", "listing": "2024-11-08T16:00:00.000Z"}, {"id": "actusdt", "datasetId": "ACTUSDT", "exchange": "binance-futures", "baseCurrency": "ACT", "quoteCurrency": "USDT", "type": "perpetual", "active": true, "availableSince": "2024-11-11T00:00:00.000Z", "priceIncrement": 1e-05, "amountIncrement": 1, "minTradeAmount": 1, "makerFee": 0.0002, "takerFee": 0.0004, "inverse": false, "contractType": "linear_perpetual", "contractMultiplier": 1, "underlyingIndex": "actusdt", "listing": "2024-11-11T12:15:00.000Z"}, {"id": "pnutusdt", "datasetId": "PNUTUSDT", "exchange": "binance-futures", "baseCurrency": "PNUT", "quoteCurrency": "USDT", "type": "perpetual", "active": true, "availableSince": "2024-11-11T00:00:00.000Z", "priceIncrement": 1e-05, "amountIncrement": 1, "minTradeAmount": 1, "makerFee": 0.0002, "takerFee": 0.0004, "inverse": false, "contractType": "linear_perpetual", "contractMultiplier": 1, "underlyingIndex": "pnutusdt", "listing": "2024-11-11T12:15:00.000Z"}, {"id": "hippousdt", "datasetId": "HIPPOUSDT", "exchange": "binance-futures", "baseCurrency": "HIPPO", "quoteCurrency": "USDT", "type": "perpetual", "active": true, "availableSince": "2024-11-13T00:00:00.000Z", "priceIncrement": 1e-05, "amountIncrement": 1, "minTradeAmount": 1, "makerFee": 0.0002, "takerFee": 0.0004, "inverse": false, "contractType": "linear_perpetual", "contractMultiplier": 1, "underlyingIndex": "hippousdt", "listing": "2024-11-13T12:30:00.000Z"}, {"id": "1000xusdt", "datasetId": "1000XUSDT", "exchange": "binance-futures", "baseCurrency": "1000X", "quoteCurrency": "USDT", "type": "perpetual", "active": true, "availableSince": "2024-11-13T00:00:00.000Z", "priceIncrement": 1e-05, "amountIncrement": 1, "minTradeAmount": 1, "makerFee": 0.0002, "takerFee": 0.0004, "inverse": false, "contractType": "linear_perpetual", "contractMultiplier": 1, "underlyingIndex": "1000xusdt", "listing": "2024-11-13T12:30:00.000Z"}, {"id": "degenusdt", "datasetId": "DEGENUSDT", "exchange": "binance-futures", "baseCurrency": "DEGEN", "quoteCurrency": "USDT", "type": "perpetual", "active": true, "availableSince": "2024-11-15T00:00:00.000Z", "priceIncrement": 1e-06, "amountIncrement": 1, "minTradeAmount": 1, "makerFee": 0.0002, "takerFee": 0.0004, "inverse": false, "contractType": "linear_perpetual", "contractMultiplier": 1, "underlyingIndex": "degenusdt", "listing": "2024-11-15T11:30:00.000Z"}, {"id": "banusdt", "datasetId": "BANUSDT", "exchange": "binance-futures", "baseCurrency": "BAN", "quoteCurrency": "USDT", "type": "perpetual", "active": true, "availableSince": "2024-11-18T00:00:00.000Z", "priceIncrement": 0.0001, "amountIncrement": 1, "minTradeAmount": 1, "makerFee": 0.0002, "takerFee": 0.0004, "inverse": false, "contractType": "linear_perpetual", "contractMultiplier": 1, "underlyingIndex": "banusdt", "listing": "2024-11-18T11:30:00.000Z"}, {"id": "slerfusdt", "datasetId": "SLERFUSDT", "exchange": "binance-futures", "baseCurrency": "SLERF", "quoteCurrency": "USDT", "type": "perpetual", "active": true, "availableSince": "2024-11-21T00:00:00.000Z", "priceIncrement": 0.0001, "amountIncrement": 1, "minTradeAmount": 1, "makerFee": 0.0002, "takerFee": 0.0004, "inverse": false, "contractType": "linear_perpetual", "contractMultiplier": 1, "underlyingIndex": "slerfusdt", "listing": "2024-11-21T11:30:00.000Z"}, {"id": "1000whyusdt", "datasetId": "1000WHYUSDT", "exchange": "binance-futures", "baseCurrency": "1000WHY", "quoteCurrency": "USDT", "type": "perpetual", "active": true, "availableSince": "2024-11-25T00:00:00.000Z", "priceIncrement": 1e-07, "amountIncrement": 1, "minTradeAmount": 1, "makerFee": 0.0002, "takerFee": 0.0004, "inverse": false, "contractType": "linear_perpetual", "contractMultiplier": 1, "underlyingIndex": "1000whyusdt", "listing": "2024-11-25T11:30:00.000Z", "changes": [{"until": "2024-11-29T06:05:00.000Z", "priceIncrement": 1e-06}]}, {"id": "1000cheemsusdt", "datasetId": "1000CHEEMSUSDT", "exchange": "binance-futures", "baseCurrency": "1000CHEEMS", "quoteCurrency": "USDT", "type": "perpetual", "active": true, "availableSince": "2024-11-25T00:00:00.000Z", "priceIncrement": 1e-07, "amountIncrement": 1, "minTradeAmount": 1, "makerFee": 0.0002, "takerFee": 0.0004, "inverse": false, "contractType": "linear_perpetual", "contractMultiplier": 1, "underlyingIndex": "1000cheemsusdt", "listing": "2024-11-25T11:45:00.000Z", "changes": [{"until": "2024-11-29T06:05:00.000Z", "priceIncrement": 1e-06}]}, {"id": "theusdt", "datasetId": "THEUSDT", "exchange": "binance-futures", "baseCurrency": "THE", "quoteCurrency": "USDT", "type": "perpetual", "active": true, "availableSince": "2024-11-27T00:00:00.000Z", "priceIncrement": 0.0001, "amountIncrement": 0.1, "minTradeAmount": 0.1, "makerFee": 0.0002, "takerFee": 0.0004, "inverse": false, "contractType": "linear_perpetual", "contractMultiplier": 1, "underlyingIndex": "theusdt", "listing": "2024-11-27T12:15:00.000Z"}, {"id": "morphousdt", "datasetId": "MORPHOUSDT", "exchange": "binance-futures", "baseCurrency": "MORPHO", "quoteCurrency": "USDT", "type": "perpetual", "active": true, "availableSince": "2024-11-27T00:00:00.000Z", "priceIncrement": 0.0001, "amountIncrement": 0.1, "minTradeAmount": 0.1, "makerFee": 0.0002, "takerFee": 0.0004, "inverse": false, "contractType": "linear_perpetual", "contractMultiplier": 1, "underlyingIndex": "morphousdt", "listing": "2024-11-27T14:30:00.000Z"}, {"id": "chillguyusdt", "datasetId": "CHILLGUYUSDT", "exchange": "binance-futures", "baseCurrency": "CHILLGUY", "quoteCurrency": "USDT", "type": "perpetual", "active": true, "availableSince": "2024-11-27T00:00:00.000Z", "priceIncrement": 0.0001, "amountIncrement": 1, "minTradeAmount": 1, "makerFee": 0.0002, "takerFee": 0.0004, "inverse": false, "contractType": "linear_perpetual", "contractMultiplier": 1, "underlyingIndex": "chillguyusdt", "listing": "2024-11-27T14:45:00.000Z"}, {"id": "kaiausdt", "datasetId": "KAIAUSDT", "exchange": "binance-futures", "baseCurrency": "KAIA", "quoteCurrency": "USDT", "type": "perpetual", "active": true, "availableSince": "2024-12-04T00:00:00.000Z", "priceIncrement": 0.0001, "amountIncrement": 1, "minTradeAmount": 1, "makerFee": 0.0002, "takerFee": 0.0004, "inverse": false, "contractType": "linear_perpetual", "contractMultiplier": 1, "underlyingIndex": "kaiausdt", "listing": "2024-12-04T14:00:00.000Z"}, {"id": "acxusdt", "datasetId": "ACXUSDT", "exchange": "binance-futures", "baseCurrency": "ACX", "quoteCurrency": "USDT", "type": "perpetual", "active": true, "availableSince": "2024-12-06T00:00:00.000Z", "priceIncrement": 0.0001, "amountIncrement": 0.1, "minTradeAmount": 0.1, "makerFee": 0.0002, "takerFee": 0.0004, "inverse": false, "contractType": "linear_perpetual", "contractMultiplier": 1, "underlyingIndex": "acxusdt", "listing": "2024-12-06T15:00:00.000Z"}, {"id": "orcausdt", "datasetId": "ORCAUSDT", "exchange": "binance-futures", "baseCurrency": "ORCA", "quoteCurrency": "USDT", "type": "perpetual", "active": true, "availableSince": "2024-12-06T00:00:00.000Z", "priceIncrement": 0.001, "amountIncrement": 0.1, "minTradeAmount": 0.1, "makerFee": 0.0002, "takerFee": 0.0004, "inverse": false, "contractType": "linear_perpetual", "contractMultiplier": 1, "underlyingIndex": "orcausdt", "listing": "2024-12-06T15:00:00.000Z"}, {"id": "moveusdt", "datasetId": "MOVEUSDT", "exchange": "binance-futures", "baseCurrency": "MOVE", "quoteCurrency": "USDT", "type": "perpetual", "active": true, "availableSince": "2024-12-09T00:00:00.000Z", "priceIncrement": 0.0001, "amountIncrement": 1, "minTradeAmount": 1, "makerFee": 0.0002, "takerFee": 0.0004, "inverse": false, "contractType": "linear_perpetual", "contractMultiplier": 1, "underlyingIndex": "moveusdt", "listing": "2024-12-09T14:00:00.000Z"}, {"id": "raysolusdt", "datasetId": "RAYSOLUSDT", "exchange": "binance-futures", "baseCurrency": "RAYSOL", "quoteCurrency": "USDT", "type": "perpetual", "active": true, "availableSince": "2024-12-10T00:00:00.000Z", "priceIncrement": 0.0001, "amountIncrement": 0.1, "minTradeAmount": 0.1, "makerFee": 0.0002, "takerFee": 0.0004, "inverse": false, "contractType": "linear_perpetual", "contractMultiplier": 1, "underlyingIndex": "raysolusdt", "listing": "2024-12-10T12:00:00.000Z"}, {"id": "komausdt", "datasetId": "KOMAUSDT", "exchange": "binance-futures", "baseCurrency": "KOMA", "quoteCurrency": "USDT", "type": "perpetual", "active": true, "availableSince": "2024-12-10T00:00:00.000Z", "priceIncrement": 1e-05, "amountIncrement": 1, "minTradeAmount": 1, "makerFee": 0.0002, "takerFee": 0.0004, "inverse": false, "contractType": "linear_perpetual", "contractMultiplier": 1, "underlyingIndex": "komausdt", "listing": "2024-12-10T12:15:00.000Z"}, {"id": "virtualusdt", "datasetId": "VIRTUALUSDT", "exchange": "binance-futures", "baseCurrency": "VIRTUAL", "quoteCurrency": "USDT", "type": "perpetual", "active": true, "availableSince": "2024-12-10T00:00:00.000Z", "priceIncrement": 0.0001, "amountIncrement": 0.1, "minTradeAmount": 0.1, "makerFee": 0.0002, "takerFee": 0.0004, "inverse": false, "contractType": "linear_perpetual", "contractMultiplier": 1, "underlyingIndex": "virtualusdt", "listing": "2024-12-10T12:30:00.000Z"}, {"id": "spxusdt", "datasetId": "SPXUSDT", "exchange": "binance-futures", "baseCurrency": "SPX", "quoteCurrency": "USDT", "type": "perpetual", "active": true, "availableSince": "2024-12-10T00:00:00.000Z", "priceIncrement": 0.0001, "amountIncrement": 1, "minTradeAmount": 1, "makerFee": 0.0002, "takerFee": 0.0004, "inverse": false, "contractType": "linear_perpetual", "contractMultiplier": 1, "underlyingIndex": "spxusdt", "listing": "2024-12-10T12:45:00.000Z"}, {"id": "meusdt", "datasetId": "MEUSDT", "exchange": "binance-futures", "baseCurrency": "ME", "quoteCurrency": "USDT", "type": "perpetual", "active": true, "availableSince": "2024-12-10T00:00:00.000Z", "priceIncrement": 0.001, "amountIncrement": 0.1, "minTradeAmount": 0.1, "makerFee": 0.0002, "takerFee": 0.0004, "inverse": false, "contractType": "linear_perpetual", "contractMultiplier": 1, "underlyingIndex": "meusdt", "listing": "2024-12-10T17:00:00.000Z"}, {"id": "degousdt", "datasetId": "DEGOUSDT", "exchange": "binance-futures", "baseCurrency": "DEGO", "quoteCurrency": "USDT", "type": "perpetual", "active": true, "availableSince": "2024-12-13T00:00:00.000Z", "priceIncrement": 0.0001, "amountIncrement": 0.1, "minTradeAmount": 0.1, "makerFee": 0.0002, "takerFee": 0.0004, "inverse": false, "contractType": "linear_perpetual", "contractMultiplier": 1, "underlyingIndex": "degousdt", "listing": "2024-12-13T13:15:00.000Z"}, {"id": "velodromeusdt", "datasetId": "VELODROMEUSDT", "exchange": "binance-futures", "baseCurrency": "VELODROME", "quoteCurrency": "USDT", "type": "perpetual", "active": true, "availableSince": "2024-12-13T00:00:00.000Z", "priceIncrement": 1e-05, "amountIncrement": 1, "minTradeAmount": 1, "makerFee": 0.0002, "takerFee": 0.0004, "inverse": false, "contractType": "linear_perpetual", "contractMultiplier": 1, "underlyingIndex": "velodromeusdt", "listing": "2024-12-13T16:15:00.000Z"}, {"id": "mocausdt", "datasetId": "MOCAUSDT", "exchange": "binance-futures", "baseCurrency": "MOCA", "quoteCurrency": "USDT", "type": "perpetual", "active": true, "availableSince": "2024-12-16T00:00:00.000Z", "priceIncrement": 0.0001, "amountIncrement": 1, "minTradeAmount": 1, "makerFee": 0.0002, "takerFee": 0.0004, "inverse": false, "contractType": "linear_perpetual", "contractMultiplier": 1, "underlyingIndex": "mocausdt", "listing": "2024-12-16T11:30:00.000Z"}, {"id": "vanausdt", "datasetId": "VANAUSDT", "exchange": "binance-futures", "baseCurrency": "VANA", "quoteCurrency": "USDT", "type": "perpetual", "active": true, "availableSince": "2024-12-16T00:00:00.000Z", "priceIncrement": 0.001, "amountIncrement": 0.01, "minTradeAmount": 0.01, "makerFee": 0.0002, "takerFee": 0.0004, "inverse": false, "contractType": "linear_perpetual", "contractMultiplier": 1, "underlyingIndex": "vanausdt", "listing": "2024-12-16T13:30:00.000Z"}, {"id": "penguusdt", "datasetId": "PENGUUSDT", "exchange": "binance-futures", "baseCurrency": "PENGU", "quoteCurrency": "USDT", "type": "perpetual", "active": true, "availableSince": "2024-12-17T00:00:00.000Z", "priceIncrement": 1e-06, "amountIncrement": 1, "minTradeAmount": 1, "makerFee": 0.0002, "takerFee": 0.0004, "inverse": false, "contractType": "linear_perpetual", "contractMultiplier": 1, "underlyingIndex": "penguusdt", "listing": "2024-12-17T16:15:00.000Z"}, {"id": "lumiausdt", "datasetId": "LUMIAUSDT", "exchange": "binance-futures", "baseCurrency": "LUMIA", "quoteCurrency": "USDT", "type": "perpetual", "active": true, "availableSince": "2024-12-18T00:00:00.000Z", "priceIncrement": 0.001, "amountIncrement": 0.1, "minTradeAmount": 0.1, "makerFee": 0.0002, "takerFee": 0.0004, "inverse": false, "contractType": "linear_perpetual", "contractMultiplier": 1, "underlyingIndex": "lumiausdt", "listing": "2024-12-18T11:30:00.000Z"}, {"id": "usualusdt", "datasetId": "USUALUSDT", "exchange": "binance-futures", "baseCurrency": "USUAL", "quoteCurrency": "USDT", "type": "perpetual", "active": true, "availableSince": "2024-12-18T00:00:00.000Z", "priceIncrement": 0.0001, "amountIncrement": 1, "minTradeAmount": 1, "makerFee": 0.0002, "takerFee": 0.0004, "inverse": false, "contractType": "linear_perpetual", "contractMultiplier": 1, "underlyingIndex": "usualusdt", "listing": "2024-12-18T13:00:00.000Z"}, {"id": "aixbtusdt", "datasetId": "AIXBTUSDT", "exchange": "binance-futures", "baseCurrency": "AIXBT", "quoteCurrency": "USDT", "type": "perpetual", "active": true, "availableSince": "2024-12-20T00:00:00.000Z", "priceIncrement": 1e-05, "amountIncrement": 1, "minTradeAmount": 1, "makerFee": 0.0002, "takerFee": 0.0004, "inverse": false, "contractType": "linear_perpetual", "contractMultiplier": 1, "underlyingIndex": "aixbtusdt", "listing": "2024-12-20T18:30:00.000Z"}, {"id": "fartcoinusdt", "datasetId": "FARTCOINUSDT", "exchange": "binance-futures", "baseCurrency": "FARTCOIN", "quoteCurrency": "USDT", "type": "perpetual", "active": true, "availableSince": "2024-12-20T00:00:00.000Z", "priceIncrement": 0.0001, "amountIncrement": 0.1, "minTradeAmount": 0.1, "makerFee": 0.0002, "takerFee": 0.0004, "inverse": false, "contractType": "linear_perpetual", "contractMultiplier": 1, "underlyingIndex": "fartcoinusdt", "listing": "2024-12-20T18:45:00.000Z"}, {"id": "kmnousdt", "datasetId": "KMNOUSDT", "exchange": "binance-futures", "baseCurrency": "KMNO", "quoteCurrency": "USDT", "type": "perpetual", "active": true, "availableSince": "2024-12-20T00:00:00.000Z", "priceIncrement": 1e-05, "amountIncrement": 1, "minTradeAmount": 1, "makerFee": 0.0002, "takerFee": 0.0004, "inverse": false, "contractType": "linear_perpetual", "contractMultiplier": 1, "underlyingIndex": "kmnousdt", "listing": "2024-12-20T19:00:00.000Z"}, {"id": "cgptusdt", "datasetId": "CGPTUSDT", "exchange": "binance-futures", "baseCurrency": "CGPT", "quoteCurrency": "USDT", "type": "perpetual", "active": true, "availableSince": "2024-12-20T00:00:00.000Z", "priceIncrement": 1e-05, "amountIncrement": 1, "minTradeAmount": 1, "makerFee": 0.0002, "takerFee": 0.0004, "inverse": false, "contractType": "linear_perpetual", "contractMultiplier": 1, "underlyingIndex": "cgptusdt", "listing": "2024-12-20T19:15:00.000Z"}, {"id": "btcbusd", "datasetId": "BTCBUSD", "exchange": "binance-futures", "baseCurrency": "BTC", "quoteCurrency": "BUSD", "type": "perpetual", "active": false, "availableSince": "2021-01-12T00:00:00.000Z", "priceIncrement": 0.1, "amountIncrement": 0.001, "minTradeAmount": 0.001, "makerFee": 0.0002, "takerFee": 0.0004, "inverse": false, "contractType": "linear_perpetual", "contractMultiplier": 1, "underlyingIndex": "btcbusd", "availableTo": "2023-12-12T00:00:00.000Z"}, {"id": "ethbusd", "datasetId": "ETHBUSD", "exchange": "binance-futures", "baseCurrency": "ETH", "quoteCurrency": "BUSD", "type": "perpetual", "active": false, "availableSince": "2021-06-16T00:00:00.000Z", "priceIncrement": 0.01, "amountIncrement": 0.001, "minTradeAmount": 0.001, "makerFee": 0.0002, "takerFee": 0.0004, "inverse": false, "contractType": "linear_perpetual", "contractMultiplier": 1, "underlyingIndex": "ethbusd", "availableTo": "2023-12-12T00:00:00.000Z"}, {"id": "bnbbusd", "datasetId": "BNBBUSD", "exchange": "binance-futures", "baseCurrency": "BNB", "quoteCurrency": "BUSD", "type": "perpetual", "active": false, "availableSince": "2021-07-28T00:00:00.000Z", "priceIncrement": 0.01, "amountIncrement": 0.01, "minTradeAmount": 0.01, "makerFee": 0.0002, "takerFee": 0.0004, "inverse": false, "contractType": "linear_perpetual", "contractMultiplier": 1, "underlyingIndex": "bnbbusd", "availableTo": "2023-12-09T00:00:00.000Z"}, {"id": "ltcbusd", "datasetId": "LTCBUSD", "exchange": "binance-futures", "baseCurrency": "LTC", "quoteCurrency": "BUSD", "type": "perpetual", "active": false, "availableSince": "2022-07-07T00:00:00.000Z", "priceIncrement": 0.01, "amountIncrement": 0.01, "minTradeAmount": 0.01, "makerFee": 0.0002, "takerFee": 0.0004, "inverse": false, "contractType": "linear_perpetual", "contractMultiplier": 1, "underlyingIndex": "ltcbusd", "availableTo": "2023-08-25T00:00:00.000Z"}, {"id": "solbusd", "datasetId": "SOLBUSD", "exchange": "binance-futures", "baseCurrency": "SOL", "quoteCurrency": "BUSD", "type": "perpetual", "active": false, "availableSince": "2021-09-03T00:00:00.000Z", "priceIncrement": 0.001, "amountIncrement": 1, "minTradeAmount": 1, "makerFee": 0.0002, "takerFee": 0.0004, "inverse": false, "contractType": "linear_perpetual", "contractMultiplier": 1, "underlyingIndex": "solbusd", "changes": [{"until": "2021-12-13T03:30:00.000Z", "priceIncrement": 0.001}, {"until": "2022-11-09T12:00:00.000Z", "priceIncrement": 0.01}], "availableTo": "2023-08-29T00:00:00.000Z"}, {"id": "xrpbusd", "datasetId": "XRPBUSD", "exchange": "binance-futures", "baseCurrency": "XRP", "quoteCurrency": "BUSD", "type": "perpetual", "active": false, "availableSince": "2021-08-09T00:00:00.000Z", "priceIncrement": 0.0001, "amountIncrement": 0.1, "minTradeAmount": 0.1, "makerFee": 0.0002, "takerFee": 0.0004, "inverse": false, "contractType": "linear_perpetual", "contractMultiplier": 1, "underlyingIndex": "xrpbusd", "availableTo": "2023-12-09T00:00:00.000Z"}, {"id": "lunabusd", "datasetId": "LUNABUSD", "exchange": "binance-futures", "baseCurrency": "LUNA", "quoteCurrency": "BUSD", "type": "perpetual", "active": false, "availableSince": "2022-05-12T00:00:00.000Z", "priceIncrement": 1e-07, "amountIncrement": 1, "minTradeAmount": 1, "makerFee": 0.0002, "takerFee": 0.0004, "inverse": false, "contractType": "linear_perpetual", "contractMultiplier": 1, "underlyingIndex": "lunabusd", "availableTo": "2022-05-14T00:00:00.000Z", "changes": [{"until": "2022-05-13T00:30:00.000Z", "priceIncrement": 1e-06}]}, {"id": "lunausdt", "datasetId": "LUNAUSDT", "exchange": "binance-futures", "baseCurrency": "LUNA", "quoteCurrency": "USDT", "type": "perpetual", "active": false, "availableSince": "2021-01-28T00:00:00.000Z", "priceIncrement": 0.0001, "amountIncrement": 1, "minTradeAmount": 1, "makerFee": 0.0002, "takerFee": 0.0004, "inverse": false, "contractType": "linear_perpetual", "contractMultiplier": 1, "underlyingIndex": "lunausdt", "changes": [{"until": "2022-05-11T12:30:00.000Z", "priceIncrement": 0.001}], "availableTo": "2022-05-13T00:00:00.000Z"}, {"id": "avaxbusd", "datasetId": "AVAXBUSD", "exchange": "binance-futures", "baseCurrency": "AVAX", "quoteCurrency": "BUSD", "type": "perpetual", "active": false, "availableSince": "2022-05-13T00:00:00.000Z", "priceIncrement": 0.001, "amountIncrement": 0.1, "minTradeAmount": 0.1, "makerFee": 0.0002, "takerFee": 0.0004, "inverse": false, "contractType": "linear_perpetual", "contractMultiplier": 1, "underlyingIndex": "avaxbusd", "availableTo": "2023-04-19T00:00:00.000Z"}, {"id": "trxbusd", "datasetId": "TRXBUSD", "exchange": "binance-futures", "baseCurrency": "TRX", "quoteCurrency": "BUSD", "type": "perpetual", "active": false, "availableSince": "2022-05-26T00:00:00.000Z", "priceIncrement": 1e-06, "amountIncrement": 1, "minTradeAmount": 1, "makerFee": 0.0002, "takerFee": 0.0004, "inverse": false, "contractType": "linear_perpetual", "contractMultiplier": 1, "underlyingIndex": "trxbusd", "availableTo": "2023-08-11T00:00:00.000Z"}, {"id": "etcbusd", "datasetId": "ETCBUSD", "exchange": "binance-futures", "baseCurrency": "ETC", "quoteCurrency": "BUSD", "type": "perpetual", "active": false, "availableSince": "2022-07-28T00:00:00.000Z", "priceIncrement": 0.001, "amountIncrement": 0.1, "minTradeAmount": 0.1, "makerFee": 0.0002, "takerFee": 0.0004, "inverse": false, "contractType": "linear_perpetual", "contractMultiplier": 1, "underlyingIndex": "etcbusd", "availableTo": "2023-04-26T00:00:00.000Z"}, {"id": "dotbusd", "datasetId": "DOTBUSD", "exchange": "binance-futures", "baseCurrency": "DOT", "quoteCurrency": "BUSD", "type": "perpetual", "active": false, "availableSince": "2022-06-08T00:00:00.000Z", "priceIncrement": 0.001, "amountIncrement": 0.1, "minTradeAmount": 0.1, "makerFee": 0.0002, "takerFee": 0.0004, "inverse": false, "contractType": "linear_perpetual", "contractMultiplier": 1, "underlyingIndex": "dotbusd", "availableTo": "2023-05-10T00:00:00.000Z"}, {"id": "linkbusd", "datasetId": "LINKBUSD", "exchange": "binance-futures", "baseCurrency": "LINK", "quoteCurrency": "BUSD", "type": "perpetual", "active": false, "availableSince": "2022-06-30T00:00:00.000Z", "priceIncrement": 0.001, "amountIncrement": 0.1, "minTradeAmount": 0.1, "makerFee": 0.0002, "takerFee": 0.0004, "inverse": false, "contractType": "linear_perpetual", "contractMultiplier": 1, "underlyingIndex": "linkbusd", "availableTo": "2023-05-24T00:00:00.000Z"}, {"id": "adabusd", "datasetId": "ADABUSD", "exchange": "binance-futures", "baseCurrency": "ADA", "quoteCurrency": "BUSD", "type": "perpetual", "active": false, "availableSince": "2021-08-02T00:00:00.000Z", "priceIncrement": 0.0001, "amountIncrement": 1, "minTradeAmount": 1, "makerFee": 0.0002, "takerFee": 0.0004, "inverse": false, "contractType": "linear_perpetual", "contractMultiplier": 1, "underlyingIndex": "adabusd", "availableTo": "2023-08-18T00:00:00.000Z"}, {"id": "dogebusd", "datasetId": "DOGEBUSD", "exchange": "binance-futures", "baseCurrency": "DOGE", "quoteCurrency": "BUSD", "type": "perpetual", "active": false, "availableSince": "2021-08-18T00:00:00.000Z", "priceIncrement": 1e-05, "amountIncrement": 1, "minTradeAmount": 1, "makerFee": 0.0002, "takerFee": 0.0004, "inverse": false, "contractType": "linear_perpetual", "contractMultiplier": 1, "underlyingIndex": "dogebusd", "availableTo": "2023-08-25T00:00:00.000Z"}, {"id": "unibusd", "datasetId": "UNIBUSD", "exchange": "binance-futures", "baseCurrency": "UNI", "quoteCurrency": "BUSD", "type": "perpetual", "active": false, "availableSince": "2022-08-05T00:00:00.000Z", "priceIncrement": 0.001, "amountIncrement": 0.1, "minTradeAmount": 0.1, "makerFee": 0.0002, "takerFee": 0.0004, "inverse": false, "contractType": "linear_perpetual", "contractMultiplier": 1, "underlyingIndex": "unibusd", "availableTo": "2023-04-12T00:00:00.000Z"}, {"id": "lendusdt", "datasetId": "LENDUSDT", "exchange": "binance-futures", "baseCurrency": "LEND", "quoteCurrency": "USDT", "type": "perpetual", "active": false, "availableSince": "2020-07-23T00:00:00.000Z", "availableTo": "2020-10-10T00:00:00.000Z", "priceIncrement": 0.0001, "amountIncrement": 0.1, "minTradeAmount": 0.1, "makerFee": 0.0002, "takerFee": 0.0004, "inverse": false, "contractType": "linear_perpetual", "contractMultiplier": 1, "underlyingIndex": "lendusdt"}, {"id": "filbusd", "datasetId": "FILBUSD", "exchange": "binance-futures", "baseCurrency": "FIL", "quoteCurrency": "BUSD", "type": "perpetual", "active": false, "availableSince": "2022-07-20T00:00:00.000Z", "priceIncrement": 0.001, "amountIncrement": 0.1, "minTradeAmount": 0.1, "makerFee": 0.0002, "takerFee": 0.0004, "inverse": false, "contractType": "linear_perpetual", "contractMultiplier": 1, "underlyingIndex": "filbusd", "availableTo": "2023-05-03T00:00:00.000Z"}, {"id": "fttbusd", "datasetId": "FTTBUSD", "exchange": "binance-futures", "baseCurrency": "FTT", "quoteCurrency": "BUSD", "type": "perpetual", "active": false, "availableSince": "2021-09-08T00:00:00.000Z", "priceIncrement": 0.001, "amountIncrement": 0.1, "minTradeAmount": 0.1, "makerFee": 0.0002, "takerFee": 0.0004, "inverse": false, "contractType": "linear_perpetual", "contractMultiplier": 1, "underlyingIndex": "fttbusd", "availableTo": "2022-11-15T00:00:00.000Z"}, {"id": "fttusdt", "datasetId": "FTTUSDT", "exchange": "binance-futures", "baseCurrency": "FTT", "quoteCurrency": "USDT", "type": "perpetual", "active": false, "availableSince": "2022-04-15T00:00:00.000Z", "priceIncrement": 0.0001, "amountIncrement": 0.1, "minTradeAmount": 0.1, "makerFee": 0.0002, "takerFee": 0.0004, "inverse": false, "contractType": "linear_perpetual", "contractMultiplier": 1, "underlyingIndex": "fttusdt", "changes": [{"until": "2022-11-08T19:30:00.000Z", "priceIncrement": 0.001}], "availableTo": "2022-11-15T00:00:00.000Z", "listing": "2022-04-14T07:00:00.000Z"}, {"id": "xemusdt", "datasetId": "XEMUSDT", "exchange": "binance-futures", "baseCurrency": "XEM", "quoteCurrency": "USDT", "type": "perpetual", "active": false, "availableSince": "2021-03-03T00:00:00.000Z", "priceIncrement": 0.0001, "amountIncrement": 1, "minTradeAmount": 1, "makerFee": 0.0002, "takerFee": 0.0004, "inverse": false, "contractType": "linear_perpetual", "contractMultiplier": 1, "underlyingIndex": "xemusdt", "listing": "2021-03-02T07:00:00.000Z", "availableTo": "2024-12-10T00:00:00.000Z"}, {"id": "srmusdt", "datasetId": "SRMUSDT", "exchange": "binance-futures", "baseCurrency": "SRM", "quoteCurrency": "USDT", "type": "perpetual", "active": false, "availableSince": "2020-09-05T00:00:00.000Z", "priceIncrement": 0.0001, "amountIncrement": 1, "minTradeAmount": 1, "makerFee": 0.0002, "takerFee": 0.0004, "inverse": false, "contractType": "linear_perpetual", "contractMultiplier": 1, "underlyingIndex": "srmusdt", "changes": [{"until": "2022-10-25T03:00:00.000Z", "priceIncrement": 0.001}], "availableTo": "2022-11-16T00:00:00.000Z"}, {"id": "dgbusdt", "datasetId": "DGBUSDT", "exchange": "binance-futures", "baseCurrency": "DGB", "quoteCurrency": "USDT", "type": "perpetual", "active": false, "availableSince": "2021-04-21T00:00:00.000Z", "priceIncrement": 1e-05, "amountIncrement": 1, "minTradeAmount": 1, "makerFee": 0.0002, "takerFee": 0.0004, "inverse": false, "contractType": "linear_perpetual", "contractMultiplier": 1, "underlyingIndex": "dgbusdt", "availableTo": "2024-04-02T00:00:00.000Z", "listing": "2021-04-19T07:00:00.000Z"}, {"id": "scusdt", "datasetId": "SCUSDT", "exchange": "binance-futures", "baseCurrency": "SC", "quoteCurrency": "USDT", "type": "perpetual", "active": false, "availableSince": "2021-04-12T00:00:00.000Z", "priceIncrement": 1e-06, "amountIncrement": 1, "minTradeAmount": 1, "makerFee": 0.0002, "takerFee": 0.0004, "inverse": false, "contractType": "linear_perpetual", "contractMultiplier": 1, "underlyingIndex": "scusdt", "availableTo": "2022-06-18T00:00:00.000Z", "listing": "2021-04-12T07:00:00.000Z"}, {"id": "renusdt", "datasetId": "RENUSDT", "exchange": "binance-futures", "baseCurrency": "REN", "quoteCurrency": "USDT", "type": "perpetual", "active": false, "availableSince": "2020-10-13T00:00:00.000Z", "priceIncrement": 1e-05, "amountIncrement": 1, "minTradeAmount": 1, "makerFee": 0.0002, "takerFee": 0.0004, "inverse": false, "contractType": "linear_perpetual", "contractMultiplier": 1, "underlyingIndex": "renusdt", "changes": [{"until": "2021-11-15T03:00:00.000Z", "priceIncrement": 1e-05}, {"until": "2022-11-10T06:00:00.000Z", "priceIncrement": 0.0001}], "listing": "2019-09-25T08:00:00.000Z", "availableTo": "2024-12-04T00:00:00.000Z"}, {"id": "wavesusdt", "datasetId": "WAVESUSDT", "exchange": "binance-futures", "baseCurrency": "WAVES", "quoteCurrency": "USDT", "type": "perpetual", "active": false, "availableSince": "2020-08-12T00:00:00.000Z", "priceIncrement": 0.0001, "amountIncrement": 0.1, "minTradeAmount": 0.1, "makerFee": 0.0002, "takerFee": 0.0004, "inverse": false, "contractType": "linear_perpetual", "contractMultiplier": 1, "underlyingIndex": "wavesusdt", "changes": [{"until": "2022-12-16T06:30:00.000Z", "priceIncrement": 0.001}], "availableTo": "2024-06-12T00:00:00.000Z", "listing": "2019-09-25T08:00:00.000Z"}, {"id": "wavesbusd", "datasetId": "WAVESBUSD", "exchange": "binance-futures", "baseCurrency": "WAVES", "quoteCurrency": "BUSD", "type": "perpetual", "active": false, "availableSince": "2022-06-29T00:00:00.000Z", "priceIncrement": 0.0001, "amountIncrement": 0.1, "minTradeAmount": 0.1, "makerFee": 0.0002, "takerFee": 0.0004, "inverse": false, "contractType": "linear_perpetual", "contractMultiplier": 1, "underlyingIndex": "wavesbusd", "changes": [{"until": "2022-12-16T06:30:00.000Z", "priceIncrement": 0.001}], "availableTo": "2023-03-16T00:00:00.000Z"}, {"id": "maticusdt", "datasetId": "MATICUSDT", "exchange": "binance-futures", "baseCurrency": "MATIC", "quoteCurrency": "USDT", "type": "perpetual", "active": false, "availableSince": "2020-10-22T00:00:00.000Z", "priceIncrement": 0.0001, "amountIncrement": 1, "minTradeAmount": 1, "makerFee": 0.0002, "takerFee": 0.0004, "inverse": false, "contractType": "linear_perpetual", "contractMultiplier": 1, "underlyingIndex": "maticusdt", "listing": "2019-09-25T08:00:00.000Z", "availableTo": "2024-09-06T00:00:00.000Z"}, {"id": "maticusdc", "datasetId": "MATICUSDC", "exchange": "binance-futures", "baseCurrency": "MATIC", "quoteCurrency": "USDC", "type": "perpetual", "active": false, "availableSince": "2024-04-25T00:00:00.000Z", "priceIncrement": 0.0001, "amountIncrement": 1, "minTradeAmount": 1, "makerFee": 0.0002, "takerFee": 0.0004, "inverse": false, "contractType": "linear_perpetual", "contractMultiplier": 1, "underlyingIndex": "maticusdc", "listing": "2024-04-25T07:30:00.000Z", "availableTo": "2024-09-06T00:00:00.000Z"}, {"id": "maticbusd", "datasetId": "MATICBUSD", "exchange": "binance-futures", "baseCurrency": "MATIC", "quoteCurrency": "BUSD", "type": "perpetual", "active": false, "availableSince": "2022-07-13T00:00:00.000Z", "priceIncrement": 0.0001, "amountIncrement": 1, "minTradeAmount": 1, "makerFee": 0.0002, "takerFee": 0.0004, "inverse": false, "contractType": "linear_perpetual", "contractMultiplier": 1, "underlyingIndex": "maticbusd", "availableTo": "2023-08-18T00:00:00.000Z"}, {"id": "yfiiusdt", "datasetId": "YFIIUSDT", "exchange": "binance-futures", "baseCurrency": "YFII", "quoteCurrency": "USDT", "type": "perpetual", "active": false, "availableSince": "2020-09-03T00:00:00.000Z", "priceIncrement": 0.1, "amountIncrement": 0.001, "minTradeAmount": 0.001, "makerFee": 0.0002, "takerFee": 0.0004, "inverse": false, "contractType": "linear_perpetual", "contractMultiplier": 1, "underlyingIndex": "yfiiusdt", "availableTo": "2022-04-13T00:00:00.000Z"}, {"id": "tomousdt", "datasetId": "TOMOUSDT", "exchange": "binance-futures", "baseCurrency": "TOMO", "quoteCurrency": "USDT", "type": "perpetual", "active": false, "availableSince": "2020-10-12T00:00:00.000Z", "priceIncrement": 0.0001, "amountIncrement": 1, "minTradeAmount": 1, "makerFee": 0.0002, "takerFee": 0.0004, "inverse": false, "contractType": "linear_perpetual", "contractMultiplier": 1, "underlyingIndex": "tomousdt", "availableTo": "2023-11-15T00:00:00.000Z"}, {"id": "bttusdt", "datasetId": "BTTUSDT", "exchange": "binance-futures", "baseCurrency": "BTT", "quoteCurrency": "USDT", "type": "perpetual", "active": false, "availableSince": "2021-04-06T00:00:00.000Z", "priceIncrement": 1e-06, "amountIncrement": 1, "minTradeAmount": 1, "makerFee": 0.0002, "takerFee": 0.0004, "inverse": false, "contractType": "linear_perpetual", "contractMultiplier": 1, "underlyingIndex": "bttusdt", "availableTo": "2022-01-15T00:00:00.000Z"}, {"id": "cvcusdt", "datasetId": "CVCUSDT", "exchange": "binance-futures", "baseCurrency": "CVC", "quoteCurrency": "USDT", "type": "perpetual", "active": false, "availableSince": "2020-11-12T00:00:00.000Z", "priceIncrement": 1e-05, "amountIncrement": 1, "minTradeAmount": 1, "makerFee": 0.0002, "takerFee": 0.0004, "inverse": false, "contractType": "linear_perpetual", "contractMultiplier": 1, "underlyingIndex": "cvcusdt", "availableTo": "2022-11-30T00:00:00.000Z", "listing": "2019-09-25T08:00:00.000Z"}, {"id": "bzrxusdt", "datasetId": "BZRXUSDT", "exchange": "binance-futures", "baseCurrency": "BZRX", "quoteCurrency": "USDT", "type": "perpetual", "active": false, "availableSince": "2020-09-05T00:00:00.000Z", "priceIncrement": 0.0001, "amountIncrement": 1, "minTradeAmount": 1, "makerFee": 0.0002, "takerFee": 0.0004, "inverse": false, "contractType": "linear_perpetual", "contractMultiplier": 1, "underlyingIndex": "bzrxusdt", "availableTo": "2021-12-20T00:00:00.000Z"}, {"id": "ftmbusd", "datasetId": "FTMBUSD", "exchange": "binance-futures", "baseCurrency": "FTM", "quoteCurrency": "BUSD", "type": "perpetual", "active": false, "availableSince": "2022-05-24T00:00:00.000Z", "priceIncrement": 0.0001, "amountIncrement": 1, "minTradeAmount": 1, "makerFee": 0.0002, "takerFee": 0.0004, "inverse": false, "contractType": "linear_perpetual", "contractMultiplier": 1, "underlyingIndex": "ftmbusd", "availableTo": "2023-08-04T00:00:00.000Z"}, {"id": "loomusdt", "datasetId": "LOOMUSDT", "exchange": "binance-futures", "baseCurrency": "LOOM", "quoteCurrency": "USDT", "type": "perpetual", "active": false, "availableSince": "2023-10-11T00:00:00.000Z", "priceIncrement": 1e-05, "amountIncrement": 1, "minTradeAmount": 1, "makerFee": 0.0002, "takerFee": 0.0004, "inverse": false, "contractType": "linear_perpetual", "contractMultiplier": 1, "underlyingIndex": "loomusdt", "changes": [{"until": "2024-02-05T06:40:00.000Z", "priceIncrement": 0.0001}], "listing": "2023-10-11T14:30:00.000Z", "availableTo": "2024-12-10T00:00:00.000Z"}, {"id": "blzusdt", "datasetId": "BLZUSDT", "exchange": "binance-futures", "baseCurrency": "BLZ", "quoteCurrency": "USDT", "type": "perpetual", "active": false, "availableSince": "2020-09-18T00:00:00.000Z", "priceIncrement": 1e-05, "amountIncrement": 1, "minTradeAmount": 1, "makerFee": 0.0002, "takerFee": 0.0004, "inverse": false, "contractType": "linear_perpetual", "contractMultiplier": 1, "underlyingIndex": "blzusdt", "listing": "2019-09-25T08:00:00.000Z", "availableTo": "2024-12-24T00:00:00.000Z"}, {"id": "sntusdt", "datasetId": "SNTUSDT", "exchange": "binance-futures", "baseCurrency": "SNT", "quoteCurrency": "USDT", "type": "perpetual", "active": false, "availableSince": "2023-11-02T00:00:00.000Z", "priceIncrement": 1e-05, "amountIncrement": 1, "minTradeAmount": 1, "makerFee": 0.0002, "takerFee": 0.0004, "inverse": false, "contractType": "linear_perpetual", "contractMultiplier": 1, "underlyingIndex": "sntusdt", "availableTo": "2024-05-14T00:00:00.000Z", "listing": "2023-11-02T12:30:00.000Z"}, {"id": "oceanusdt", "datasetId": "OCEANUSDT", "exchange": "binance-futures", "baseCurrency": "OCEAN", "quoteCurrency": "USDT", "type": "perpetual", "active": false, "availableSince": "2020-11-04T00:00:00.000Z", "priceIncrement": 0.0001, "amountIncrement": 1, "minTradeAmount": 1, "makerFee": 0.0002, "takerFee": 0.0004, "inverse": false, "contractType": "linear_perpetual", "contractMultiplier": 1, "underlyingIndex": "oceanusdt", "changes": [{"until": "2023-02-10T09:00:00.000Z", "priceIncrement": 1e-05}], "availableTo": "2024-06-27T00:00:00.000Z", "listing": "2019-09-25T08:00:00.000Z"}, {"id": "btsusdt", "datasetId": "BTSUSDT", "exchange": "binance-futures", "baseCurrency": "BTS", "quoteCurrency": "USDT", "type": "perpetual", "active": false, "availableSince": "2021-02-01T00:00:00.000Z", "priceIncrement": 1e-05, "amountIncrement": 1, "minTradeAmount": 1, "makerFee": 0.0002, "takerFee": 0.0004, "inverse": false, "contractType": "linear_perpetual", "contractMultiplier": 1, "underlyingIndex": "btsusdt", "availableTo": "2022-08-19T00:00:00.000Z"}, {"id": "ctkusdt", "datasetId": "CTKUSDT", "exchange": "binance-futures", "baseCurrency": "CTK", "quoteCurrency": "USDT", "type": "perpetual", "active": false, "availableSince": "2020-11-19T00:00:00.000Z", "priceIncrement": 0.0001, "amountIncrement": 1, "minTradeAmount": 1, "makerFee": 0.0002, "takerFee": 0.0004, "inverse": false, "contractType": "linear_perpetual", "contractMultiplier": 1, "underlyingIndex": "ctkusdt", "changes": [{"until": "2022-05-19T08:30:00.000Z", "priceIncrement": 0.001}], "availableTo": "2024-04-03T00:00:00.000Z", "listing": "2019-09-25T08:00:00.000Z"}, {"id": "hntusdt", "datasetId": "HNTUSDT", "exchange": "binance-futures", "baseCurrency": "HNT", "quoteCurrency": "USDT", "type": "perpetual", "active": false, "availableSince": "2020-09-28T00:00:00.000Z", "priceIncrement": 0.001, "amountIncrement": 1, "minTradeAmount": 1, "makerFee": 0.0002, "takerFee": 0.0004, "inverse": false, "contractType": "linear_perpetual", "contractMultiplier": 1, "underlyingIndex": "hntusdt", "availableTo": "2023-03-21T00:00:00.000Z"}, {"id": "nearbusd", "datasetId": "NEARBUSD", "exchange": "binance-futures", "baseCurrency": "NEAR", "quoteCurrency": "BUSD", "type": "perpetual", "active": false, "availableSince": "2022-05-17T00:00:00.000Z", "priceIncrement": 0.001, "amountIncrement": 0.1, "minTradeAmount": 0.1, "makerFee": 0.0002, "takerFee": 0.0004, "inverse": false, "contractType": "linear_perpetual", "contractMultiplier": 1, "underlyingIndex": "nearbusd", "availableTo": "2023-04-19T00:00:00.000Z"}, {"id": "frontusdt", "datasetId": "FRONTUSDT", "exchange": "binance-futures", "baseCurrency": "FRONT", "quoteCurrency": "USDT", "type": "perpetual", "active": false, "availableSince": "2023-09-22T00:00:00.000Z", "priceIncrement": 0.0001, "amountIncrement": 1, "minTradeAmount": 1, "makerFee": 0.0002, "takerFee": 0.0004, "inverse": false, "contractType": "linear_perpetual", "contractMultiplier": 1, "underlyingIndex": "frontusdt", "listing": "2023-09-22T14:30:00.000Z", "availableTo": "2024-08-24T00:00:00.000Z"}, {"id": "akrousdt", "datasetId": "AKROUSDT", "exchange": "binance-futures", "baseCurrency": "AKRO", "quoteCurrency": "USDT", "type": "perpetual", "active": false, "availableSince": "2021-01-19T00:00:00.000Z", "priceIncrement": 1e-05, "amountIncrement": 1, "minTradeAmount": 1, "makerFee": 0.0002, "takerFee": 0.0004, "inverse": false, "contractType": "linear_perpetual", "contractMultiplier": 1, "underlyingIndex": "akrousdt", "availableTo": "2022-05-28T00:00:00.000Z"}, {"id": "unfiusdt", "datasetId": "UNFIUSDT", "exchange": "binance-futures", "baseCurrency": "UNFI", "quoteCurrency": "USDT", "type": "perpetual", "active": false, "availableSince": "2021-02-19T00:00:00.000Z", "priceIncrement": 0.001, "amountIncrement": 0.1, "minTradeAmount": 0.1, "makerFee": 0.0002, "takerFee": 0.0004, "inverse": false, "contractType": "linear_perpetual", "contractMultiplier": 1, "underlyingIndex": "unfiusdt", "listing": "2021-02-09T07:00:00.000Z", "availableTo": "2024-11-01T00:00:00.000Z"}, {"id": "sandbusd", "datasetId": "SANDBUSD", "exchange": "binance-futures", "baseCurrency": "SAND", "quoteCurrency": "BUSD", "type": "perpetual", "active": false, "availableSince": "2022-07-07T00:00:00.000Z", "priceIncrement": 0.0001, "amountIncrement": 0.1, "minTradeAmount": 0.1, "makerFee": 0.0002, "takerFee": 0.0004, "inverse": false, "contractType": "linear_perpetual", "contractMultiplier": 1, "underlyingIndex": "sandbusd", "changes": [{"until": "2022-10-25T03:00:00.000Z", "priceIncrement": 0.001}], "availableTo": "2023-04-12T00:00:00.000Z"}, {"id": "dodobusd", "datasetId": "DODOBUSD", "exchange": "binance-futures", "baseCurrency": "DODO", "quoteCurrency": "BUSD", "type": "perpetual", "active": false, "availableSince": "2022-05-25T00:00:00.000Z", "priceIncrement": 0.0001, "amountIncrement": 1, "minTradeAmount": 1, "makerFee": 0.0002, "takerFee": 0.0004, "inverse": false, "contractType": "linear_perpetual", "contractMultiplier": 1, "underlyingIndex": "dodobusd", "availableTo": "2023-08-11T00:00:00.000Z"}, {"id": "dodousdt", "datasetId": "DODOUSDT", "exchange": "binance-futures", "baseCurrency": "DODO", "quoteCurrency": "USDT", "type": "perpetual", "active": false, "availableSince": "2021-02-19T00:00:00.000Z", "priceIncrement": 0.001, "amountIncrement": 0.1, "minTradeAmount": 0.1, "makerFee": 0.0002, "takerFee": 0.0004, "inverse": false, "contractType": "linear_perpetual", "contractMultiplier": 1, "underlyingIndex": "dodousdt", "availableTo": "2022-05-28T00:00:00.000Z"}, {"id": "antusdt", "datasetId": "ANTUSDT", "exchange": "binance-futures", "baseCurrency": "ANT", "quoteCurrency": "USDT", "type": "perpetual", "active": false, "availableSince": "2021-12-27T00:00:00.000Z", "priceIncrement": 0.001, "amountIncrement": 0.1, "minTradeAmount": 0.1, "makerFee": 0.0002, "takerFee": 0.0004, "inverse": false, "contractType": "linear_perpetual", "contractMultiplier": 1, "underlyingIndex": "antusdt", "availableTo": "2024-04-02T00:00:00.000Z"}, {"id": "rayusdt", "datasetId": "RAYUSDT", "exchange": "binance-futures", "baseCurrency": "RAY", "quoteCurrency": "USDT", "type": "perpetual", "active": false, "availableSince": "2021-08-20T00:00:00.000Z", "priceIncrement": 0.001, "amountIncrement": 0.1, "minTradeAmount": 0.1, "makerFee": 0.0002, "takerFee": 0.0004, "inverse": false, "contractType": "linear_perpetual", "contractMultiplier": 1, "underlyingIndex": "rayusdt", "availableTo": "2022-11-16T00:00:00.000Z", "listing": "2021-08-18T07:00:00.000Z"}, {"id": "icpbusd", "datasetId": "ICPBUSD", "exchange": "binance-futures", "baseCurrency": "ICP", "quoteCurrency": "BUSD", "type": "perpetual", "active": false, "availableSince": "2022-06-09T00:00:00.000Z", "priceIncrement": 0.001, "amountIncrement": 0.1, "minTradeAmount": 0.1, "makerFee": 0.0002, "takerFee": 0.0004, "inverse": false, "contractType": "linear_perpetual", "contractMultiplier": 1, "underlyingIndex": "icpbusd", "availableTo": "2023-03-23T00:00:00.000Z"}, {"id": "klayusdt", "datasetId": "KLAYUSDT", "exchange": "binance-futures", "baseCurrency": "KLAY", "quoteCurrency": "USDT", "type": "perpetual", "active": false, "availableSince": "2021-10-12T00:00:00.000Z", "priceIncrement": 0.0001, "amountIncrement": 0.1, "minTradeAmount": 0.1, "makerFee": 0.0002, "takerFee": 0.0004, "inverse": false, "contractType": "linear_perpetual", "contractMultiplier": 1, "underlyingIndex": "klayusdt", "listing": "2021-10-11T07:00:00.000Z", "availableTo": "2024-10-23T00:00:00.000Z"}, {"id": "galabusd", "datasetId": "GALABUSD", "exchange": "binance-futures", "baseCurrency": "GALA", "quoteCurrency": "BUSD", "type": "perpetual", "active": false, "availableSince": "2022-05-26T00:00:00.000Z", "priceIncrement": 1e-06, "amountIncrement": 1, "minTradeAmount": 1, "makerFee": 0.0002, "takerFee": 0.0004, "inverse": false, "contractType": "linear_perpetual", "contractMultiplier": 1, "underlyingIndex": "galabusd", "availableTo": "2023-07-28T00:00:00.000Z"}, {"id": "cvxusdt", "datasetId": "CVXUSDT", "exchange": "binance-futures", "baseCurrency": "CVX", "quoteCurrency": "USDT", "type": "perpetual", "active": false, "availableSince": "2022-09-22T00:00:00.000Z", "priceIncrement": 0.001, "amountIncrement": 1, "minTradeAmount": 1, "makerFee": 0.0002, "takerFee": 0.0004, "inverse": false, "contractType": "linear_perpetual", "contractMultiplier": 1, "underlyingIndex": "cvxusdt", "availableTo": "2024-05-15T00:00:00.000Z", "listing": "2022-09-21T07:00:00.000Z"}, {"id": "cvxbusd", "datasetId": "CVXBUSD", "exchange": "binance-futures", "baseCurrency": "CVX", "quoteCurrency": "BUSD", "type": "perpetual", "active": false, "availableSince": "2022-07-13T00:00:00.000Z", "priceIncrement": 0.001, "amountIncrement": 0.1, "minTradeAmount": 0.1, "makerFee": 0.0002, "takerFee": 0.0004, "inverse": false, "contractType": "linear_perpetual", "contractMultiplier": 1, "underlyingIndex": "cvxbusd", "availableTo": "2023-03-16T00:00:00.000Z"}, {"id": "rndrusdt", "datasetId": "RNDRUSDT", "exchange": "binance-futures", "baseCurrency": "RNDR", "quoteCurrency": "USDT", "type": "perpetual", "active": false, "availableSince": "2023-02-03T00:00:00.000Z", "priceIncrement": 0.0001, "amountIncrement": 0.1, "minTradeAmount": 0.1, "makerFee": 0.0002, "takerFee": 0.0004, "inverse": false, "contractType": "linear_perpetual", "contractMultiplier": 1, "underlyingIndex": "rndrusdt", "availableTo": "2024-07-18T00:00:00.000Z"}, {"id": "audiousdt", "datasetId": "AUDIOUSDT", "exchange": "binance-futures", "baseCurrency": "AUDIO", "quoteCurrency": "USDT", "type": "perpetual", "active": false, "availableSince": "2021-08-19T00:00:00.000Z", "priceIncrement": 0.0001, "amountIncrement": 1, "minTradeAmount": 1, "makerFee": 0.0002, "takerFee": 0.0004, "inverse": false, "contractType": "linear_perpetual", "contractMultiplier": 1, "underlyingIndex": "audiousdt", "availableTo": "2024-05-17T00:00:00.000Z"}, {"id": "ldobusd", "datasetId": "LDOBUSD", "exchange": "binance-futures", "baseCurrency": "LDO", "quoteCurrency": "BUSD", "type": "perpetual", "active": false, "availableSince": "2022-07-28T00:00:00.000Z", "priceIncrement": 0.0001, "amountIncrement": 0.1, "minTradeAmount": 0.1, "makerFee": 0.0002, "takerFee": 0.0004, "inverse": false, "contractType": "linear_perpetual", "contractMultiplier": 1, "underlyingIndex": "ldobusd", "changes": [{"until": "2022-11-10T06:00:00.000Z", "priceIncrement": 0.001}], "availableTo": "2023-07-28T00:00:00.000Z"}, {"id": "apebusd", "datasetId": "APEBUSD", "exchange": "binance-futures", "baseCurrency": "APE", "quoteCurrency": "BUSD", "type": "perpetual", "active": false, "availableSince": "2022-05-19T00:00:00.000Z", "priceIncrement": 0.001, "amountIncrement": 0.1, "minTradeAmount": 0.1, "makerFee": 0.0002, "takerFee": 0.0004, "inverse": false, "contractType": "linear_perpetual", "contractMultiplier": 1, "underlyingIndex": "apebusd", "availableTo": "2023-05-17T00:00:00.000Z"}, {"id": "gmtbusd", "datasetId": "GMTBUSD", "exchange": "binance-futures", "baseCurrency": "GMT", "quoteCurrency": "BUSD", "type": "perpetual", "active": false, "availableSince": "2022-05-18T00:00:00.000Z", "priceIncrement": 0.0001, "amountIncrement": 0.1, "minTradeAmount": 0.1, "makerFee": 0.0002, "takerFee": 0.0004, "inverse": false, "contractType": "linear_perpetual", "contractMultiplier": 1, "underlyingIndex": "gmtbusd", "availableTo": "2023-04-19T00:00:00.000Z"}, {"id": "darusdt", "datasetId": "DARUSDT", "exchange": "binance-futures", "baseCurrency": "DAR", "quoteCurrency": "USDT", "type": "perpetual", "active": false, "availableSince": "2022-04-29T00:00:00.000Z", "priceIncrement": 0.0001, "amountIncrement": 0.1, "minTradeAmount": 0.1, "makerFee": 0.0002, "takerFee": 0.0004, "inverse": false, "contractType": "linear_perpetual", "contractMultiplier": 1, "underlyingIndex": "darusdt", "changes": [{"until": "2022-05-19T08:30:00.000Z", "priceIncrement": 0.001}], "listing": "2022-04-28T07:00:00.000Z", "availableTo": "2024-12-27T00:00:00.000Z"}, {"id": "bondusdt", "datasetId": "BONDUSDT", "exchange": "binance-futures", "baseCurrency": "BOND", "quoteCurrency": "USDT", "type": "perpetual", "active": false, "availableSince": "2023-10-15T00:00:00.000Z", "priceIncrement": 0.001, "amountIncrement": 0.1, "minTradeAmount": 0.1, "makerFee": 0.0002, "takerFee": 0.0004, "inverse": false, "contractType": "linear_perpetual", "contractMultiplier": 1, "underlyingIndex": "bondusdt", "listing": "2023-10-15T14:30:00.000Z", "availableTo": "2024-12-17T00:00:00.000Z"}, {"id": "maviausdt", "datasetId": "MAVIAUSDT", "exchange": "binance-futures", "baseCurrency": "MAVIA", "quoteCurrency": "USDT", "type": "perpetual", "active": false, "availableSince": "2024-02-21T00:00:00.000Z", "priceIncrement": 0.0001, "amountIncrement": 0.1, "minTradeAmount": 0.1, "makerFee": 0.0002, "takerFee": 0.0004, "inverse": false, "contractType": "linear_perpetual", "contractMultiplier": 1, "underlyingIndex": "maviausdt", "listing": "2024-02-21T10:00:00.000Z", "availableTo": "2024-12-17T00:00:00.000Z"}, {"id": "orbsusdt", "datasetId": "ORBSUSDT", "exchange": "binance-futures", "baseCurrency": "ORBS", "quoteCurrency": "USDT", "type": "perpetual", "active": false, "availableSince": "2023-10-17T00:00:00.000Z", "priceIncrement": 1e-06, "amountIncrement": 1, "minTradeAmount": 1, "makerFee": 0.0002, "takerFee": 0.0004, "inverse": false, "contractType": "linear_perpetual", "contractMultiplier": 1, "underlyingIndex": "orbsusdt", "listing": "2023-10-17T06:00:00.000Z", "changes": [{"until": "2024-11-04T06:35:00.000Z", "priceIncrement": 1e-05}], "availableTo": "2024-12-10T00:00:00.000Z"}, {"id": "keyusdt", "datasetId": "KEYUSDT", "exchange": "binance-futures", "baseCurrency": "KEY", "quoteCurrency": "USDT", "type": "perpetual", "active": false, "availableSince": "2023-05-24T00:00:00.000Z", "priceIncrement": 1e-07, "amountIncrement": 1, "minTradeAmount": 1, "makerFee": 0.0002, "takerFee": 0.0004, "inverse": false, "contractType": "linear_perpetual", "contractMultiplier": 1, "underlyingIndex": "keyusdt", "listing": "2023-05-23T00:00:00.000Z", "changes": [{"until": "2024-09-20T06:35:00.000Z", "priceIncrement": 1e-06}], "availableTo": "2024-12-04T00:00:00.000Z"}, {"id": "galusdt", "datasetId": "GALUSDT", "exchange": "binance-futures", "baseCurrency": "GAL", "quoteCurrency": "USDT", "type": "perpetual", "active": false, "availableSince": "2022-05-05T00:00:00.000Z", "priceIncrement": 0.0001, "amountIncrement": 1, "minTradeAmount": 1, "makerFee": 0.0002, "takerFee": 0.0004, "inverse": false, "contractType": "linear_perpetual", "contractMultiplier": 1, "underlyingIndex": "galusdt", "availableTo": "2024-07-12T00:00:00.000Z"}, {"id": "agixusdt", "datasetId": "AGIXUSDT", "exchange": "binance-futures", "baseCurrency": "AGIX", "quoteCurrency": "USDT", "type": "perpetual", "active": false, "availableSince": "2023-02-16T00:00:00.000Z", "priceIncrement": 0.0001, "amountIncrement": 1, "minTradeAmount": 1, "makerFee": 0.0002, "takerFee": 0.0004, "inverse": false, "contractType": "linear_perpetual", "contractMultiplier": 1, "underlyingIndex": "agixusdt", "availableTo": "2024-06-27T00:00:00.000Z", "listing": "2023-02-15T07:00:00.000Z"}, {"id": "mdtusdt", "datasetId": "MDTUSDT", "exchange": "binance-futures", "baseCurrency": "MDT", "quoteCurrency": "USDT", "type": "perpetual", "active": false, "availableSince": "2023-06-30T00:00:00.000Z", "priceIncrement": 1e-05, "amountIncrement": 1, "minTradeAmount": 1, "makerFee": 0.0002, "takerFee": 0.0004, "inverse": false, "contractType": "linear_perpetual", "contractMultiplier": 1, "underlyingIndex": "mdtusdt", "availableTo": "2024-05-17T00:00:00.000Z", "listing": "2023-06-30T12:00:00.000Z"}, {"id": "idexusdt", "datasetId": "IDEXUSDT", "exchange": "binance-futures", "baseCurrency": "IDEX", "quoteCurrency": "USDT", "type": "perpetual", "active": false, "availableSince": "2023-05-03T00:00:00.000Z", "priceIncrement": 1e-05, "amountIncrement": 1, "minTradeAmount": 1, "makerFee": 0.0002, "takerFee": 0.0004, "inverse": false, "contractType": "linear_perpetual", "contractMultiplier": 1, "underlyingIndex": "idexusdt", "availableTo": "2024-05-16T00:00:00.000Z", "listing": "2023-05-02T00:00:00.000Z"}, {"id": "glmrusdt", "datasetId": "GLMRUSDT", "exchange": "binance-futures", "baseCurrency": "GLMR", "quoteCurrency": "USDT", "type": "perpetual", "active": false, "availableSince": "2023-09-26T00:00:00.000Z", "priceIncrement": 1e-05, "amountIncrement": 1, "minTradeAmount": 1, "makerFee": 0.0002, "takerFee": 0.0004, "inverse": false, "contractType": "linear_perpetual", "contractMultiplier": 1, "underlyingIndex": "glmrusdt", "changes": [{"until": "2024-04-11T06:40:00.000Z", "priceIncrement": 0.0001}], "availableTo": "2024-05-16T00:00:00.000Z", "listing": "2023-09-26T01:30:00.000Z"}, {"id": "slpusdt", "datasetId": "SLPUSDT", "exchange": "binance-futures", "baseCurrency": "SLP", "quoteCurrency": "USDT", "type": "perpetual", "active": false, "availableSince": "2023-10-31T00:00:00.000Z", "priceIncrement": 1e-06, "amountIncrement": 1, "minTradeAmount": 1, "makerFee": 0.0002, "takerFee": 0.0004, "inverse": false, "contractType": "linear_perpetual", "contractMultiplier": 1, "underlyingIndex": "slpusdt", "availableTo": "2024-05-16T00:00:00.000Z", "listing": "2023-10-31T14:30:00.000Z"}, {"id": "radusdt", "datasetId": "RADUSDT", "exchange": "binance-futures", "baseCurrency": "RAD", "quoteCurrency": "USDT", "type": "perpetual", "active": false, "availableSince": "2023-05-10T00:00:00.000Z", "priceIncrement": 0.0001, "amountIncrement": 1, "minTradeAmount": 1, "makerFee": 0.0002, "takerFee": 0.0004, "inverse": false, "contractType": "linear_perpetual", "contractMultiplier": 1, "underlyingIndex": "radusdt", "changes": [{"until": "2024-03-19T06:40:00.000Z", "priceIncrement": 0.001}], "availableTo": "2024-05-15T00:00:00.000Z", "listing": "2023-05-09T00:00:00.000Z"}, {"id": "stptusdt", "datasetId": "STPTUSDT", "exchange": "binance-futures", "baseCurrency": "STPT", "quoteCurrency": "USDT", "type": "perpetual", "active": false, "availableSince": "2023-10-18T00:00:00.000Z", "priceIncrement": 1e-05, "amountIncrement": 1, "minTradeAmount": 1, "makerFee": 0.0002, "takerFee": 0.0004, "inverse": false, "contractType": "linear_perpetual", "contractMultiplier": 1, "underlyingIndex": "stptusdt", "availableTo": "2024-05-14T00:00:00.000Z", "listing": "2023-10-18T14:30:00.000Z"}, {"id": "mblusdt", "datasetId": "MBLUSDT", "exchange": "binance-futures", "baseCurrency": "MBL", "quoteCurrency": "USDT", "type": "perpetual", "active": false, "availableSince": "2023-11-14T00:00:00.000Z", "priceIncrement": 1e-06, "amountIncrement": 1, "minTradeAmount": 1, "makerFee": 0.0002, "takerFee": 0.0004, "inverse": false, "contractType": "linear_perpetual", "contractMultiplier": 1, "underlyingIndex": "mblusdt", "availableTo": "2024-05-14T00:00:00.000Z"}, {"id": "footballusdt", "datasetId": "FOOTBALLUSDT", "exchange": "binance-futures", "baseCurrency": "FOOTBALL", "quoteCurrency": "USDT", "type": "perpetual", "active": false, "availableSince": "2022-09-01T00:00:00.000Z", "priceIncrement": 0.01, "amountIncrement": 0.01, "minTradeAmount": 0.01, "makerFee": 0.0002, "takerFee": 0.0004, "inverse": false, "contractType": "linear_perpetual", "contractMultiplier": 1, "underlyingIndex": "footballusdt", "availableTo": "2024-03-27T00:00:00.000Z"}, {"id": "bluebirdusdt", "datasetId": "BLUEBIRDUSDT", "exchange": "binance-futures", "baseCurrency": "BLUEBIRD", "quoteCurrency": "USDT", "type": "perpetual", "active": false, "availableSince": "2022-11-02T00:00:00.000Z", "priceIncrement": 0.001, "amountIncrement": 0.1, "minTradeAmount": 0.1, "makerFee": 0.0002, "takerFee": 0.0004, "inverse": false, "contractType": "linear_perpetual", "contractMultiplier": 1, "underlyingIndex": "bluebirdusdt", "availableTo": "2024-03-27T00:00:00.000Z"}, {"id": "straxusdt", "datasetId": "STRAXUSDT", "exchange": "binance-futures", "baseCurrency": "STRAX", "quoteCurrency": "USDT", "type": "perpetual", "active": false, "availableSince": "2023-10-11T00:00:00.000Z", "priceIncrement": 0.0001, "amountIncrement": 1, "minTradeAmount": 1, "makerFee": 0.0002, "takerFee": 0.0004, "inverse": false, "contractType": "linear_perpetual", "contractMultiplier": 1, "underlyingIndex": "straxusdt", "availableTo": "2024-03-16T00:00:00.000Z", "listing": "2023-10-11T02:30:00.000Z"}, {"id": "aptbusd", "datasetId": "APTBUSD", "exchange": "binance-futures", "baseCurrency": "APT", "quoteCurrency": "BUSD", "type": "perpetual", "active": false, "availableSince": "2022-10-25T00:00:00.000Z", "priceIncrement": 0.001, "amountIncrement": 0.1, "minTradeAmount": 0.1, "makerFee": 0.0002, "takerFee": 0.0004, "inverse": false, "contractType": "linear_perpetual", "contractMultiplier": 1, "underlyingIndex": "aptbusd", "changes": [{"until": "2022-11-09T12:00:00.000Z", "priceIncrement": 0.001}, {"until": "2023-02-10T09:00:00.000Z", "priceIncrement": 0.0001}], "availableTo": "2023-08-04T00:00:00.000Z"}, {"id": "agixbusd", "datasetId": "AGIXBUSD", "exchange": "binance-futures", "baseCurrency": "AGIX", "quoteCurrency": "BUSD", "type": "perpetual", "active": false, "availableSince": "2023-01-19T00:00:00.000Z", "priceIncrement": 0.0001, "amountIncrement": 1, "minTradeAmount": 1, "makerFee": 0.0002, "takerFee": 0.0004, "inverse": false, "contractType": "linear_perpetual", "contractMultiplier": 1, "underlyingIndex": "agixbusd", "availableTo": "2023-07-21T00:00:00.000Z"}, {"id": "1000luncbusd", "datasetId": "1000LUNCBUSD", "exchange": "binance-futures", "baseCurrency": "1000LUNC", "quoteCurrency": "BUSD", "type": "perpetual", "active": false, "availableSince": "2022-05-31T00:00:00.000Z", "priceIncrement": 1e-05, "amountIncrement": 1, "minTradeAmount": 1, "makerFee": 0.0002, "takerFee": 0.0004, "inverse": false, "contractType": "linear_perpetual", "contractMultiplier": 1, "underlyingIndex": "1000luncbusd", "changes": [{"until": "2023-06-05T06:30:00.000Z", "priceIncrement": 0.0001}], "availableTo": "2023-06-09T00:00:00.000Z"}, {"id": "1000shibbusd", "datasetId": "1000SHIBBUSD", "exchange": "binance-futures", "baseCurrency": "1000SHIB", "quoteCurrency": "BUSD", "type": "perpetual", "active": false, "availableSince": "2022-07-20T00:00:00.000Z", "priceIncrement": 1e-06, "amountIncrement": 1, "minTradeAmount": 1, "makerFee": 0.0002, "takerFee": 0.0004, "inverse": false, "contractType": "linear_perpetual", "contractMultiplier": 1, "underlyingIndex": "1000shibbusd", "availableTo": "2023-06-02T00:00:00.000Z"}, {"id": "cocosusdt", "datasetId": "COCOSUSDT", "exchange": "binance-futures", "baseCurrency": "COCOS", "quoteCurrency": "USDT", "type": "perpetual", "active": false, "availableSince": "2023-02-21T00:00:00.000Z", "priceIncrement": 0.001, "amountIncrement": 0.1, "minTradeAmount": 0.1, "makerFee": 0.0002, "takerFee": 0.0004, "inverse": false, "contractType": "linear_perpetual", "contractMultiplier": 1, "underlyingIndex": "cocosusdt", "availableTo": "2023-05-26T00:00:00.000Z"}, {"id": "phbbusd", "datasetId": "PHBBUSD", "exchange": "binance-futures", "baseCurrency": "PHB", "quoteCurrency": "BUSD", "type": "perpetual", "active": false, "availableSince": "2022-09-16T00:00:00.000Z", "priceIncrement": 0.0001, "amountIncrement": 1, "minTradeAmount": 1, "makerFee": 0.0002, "takerFee": 0.0004, "inverse": false, "contractType": "linear_perpetual", "contractMultiplier": 1, "underlyingIndex": "phbbusd", "availableTo": "2023-04-12T00:00:00.000Z"}, {"id": "tlmbusd", "datasetId": "TLMBUSD", "exchange": "binance-futures", "baseCurrency": "TLM", "quoteCurrency": "BUSD", "type": "perpetual", "active": false, "availableSince": "2022-06-09T00:00:00.000Z", "priceIncrement": 1e-05, "amountIncrement": 1, "minTradeAmount": 1, "makerFee": 0.0002, "takerFee": 0.0004, "inverse": false, "contractType": "linear_perpetual", "contractMultiplier": 1, "underlyingIndex": "tlmbusd", "availableTo": "2023-04-05T00:00:00.000Z"}, {"id": "leverbusd", "datasetId": "LEVERBUSD", "exchange": "binance-futures", "baseCurrency": "LEVER", "quoteCurrency": "BUSD", "type": "perpetual", "active": false, "availableSince": "2022-07-20T00:00:00.000Z", "priceIncrement": 1e-07, "amountIncrement": 1, "minTradeAmount": 1, "makerFee": 0.0002, "takerFee": 0.0004, "inverse": false, "contractType": "linear_perpetual", "contractMultiplier": 1, "underlyingIndex": "leverbusd", "changes": [{"until": "2022-11-10T06:00:00.000Z", "priceIncrement": 1e-06}], "availableTo": "2023-04-05T00:00:00.000Z"}, {"id": "ambbusd", "datasetId": "AMBBUSD", "exchange": "binance-futures", "baseCurrency": "AMB", "quoteCurrency": "BUSD", "type": "perpetual", "active": false, "availableSince": "2022-09-14T00:00:00.000Z", "priceIncrement": 1e-06, "amountIncrement": 1, "minTradeAmount": 1, "makerFee": 0.0002, "takerFee": 0.0004, "inverse": false, "contractType": "linear_perpetual", "contractMultiplier": 1, "underlyingIndex": "ambbusd", "changes": [{"until": "2022-11-10T06:00:00.000Z", "priceIncrement": 1e-05}], "availableTo": "2023-04-05T00:00:00.000Z"}, {"id": "luna2busd", "datasetId": "LUNA2BUSD", "exchange": "binance-futures", "baseCurrency": "LUNA2", "quoteCurrency": "BUSD", "type": "perpetual", "active": false, "availableSince": "2022-06-01T00:00:00.000Z", "priceIncrement": 0.0001, "amountIncrement": 1, "minTradeAmount": 1, "makerFee": 0.0002, "takerFee": 0.0004, "inverse": false, "contractType": "linear_perpetual", "contractMultiplier": 1, "underlyingIndex": "luna2busd", "availableTo": "2023-03-23T00:00:00.000Z"}, {"id": "galbusd", "datasetId": "GALBUSD", "exchange": "binance-futures", "baseCurrency": "GAL", "quoteCurrency": "BUSD", "type": "perpetual", "active": false, "availableSince": "2022-05-24T00:00:00.000Z", "priceIncrement": 0.001, "amountIncrement": 1, "minTradeAmount": 1, "makerFee": 0.0002, "takerFee": 0.0004, "inverse": false, "contractType": "linear_perpetual", "contractMultiplier": 1, "underlyingIndex": "galbusd", "availableTo": "2023-03-16T00:00:00.000Z"}, {"id": "ancbusd", "datasetId": "ANCBUSD", "exchange": "binance-futures", "baseCurrency": "ANC", "quoteCurrency": "BUSD", "type": "perpetual", "active": false, "availableSince": "2022-05-25T00:00:00.000Z", "priceIncrement": 1e-05, "amountIncrement": 1, "minTradeAmount": 1, "makerFee": 0.0002, "takerFee": 0.0004, "inverse": false, "contractType": "linear_perpetual", "contractMultiplier": 1, "underlyingIndex": "ancbusd", "changes": [{"until": "2022-11-10T06:00:00.000Z", "priceIncrement": 0.0001}], "availableTo": "2022-12-16T00:00:00.000Z"}, {"id": "auctionbusd", "datasetId": "AUCTIONBUSD", "exchange": "binance-futures", "baseCurrency": "AUCTION", "quoteCurrency": "BUSD", "type": "perpetual", "active": false, "availableSince": "2022-08-05T00:00:00.000Z", "priceIncrement": 0.001, "amountIncrement": 0.1, "minTradeAmount": 0.1, "makerFee": 0.0002, "takerFee": 0.0004, "inverse": false, "contractType": "linear_perpetual", "contractMultiplier": 1, "underlyingIndex": "auctionbusd", "availableTo": "2022-12-16T00:00:00.000Z"}, {"id": "ancusdt", "datasetId": "ANCUSDT", "exchange": "binance-futures", "baseCurrency": "ANC", "quoteCurrency": "USDT", "type": "perpetual", "active": false, "availableSince": "2022-03-08T00:00:00.000Z", "priceIncrement": 0.0001, "amountIncrement": 0.1, "minTradeAmount": 0.1, "makerFee": 0.0002, "takerFee": 0.0004, "inverse": false, "contractType": "linear_perpetual", "contractMultiplier": 1, "underlyingIndex": "ancusdt", "changes": [{"until": "2022-05-11T07:50:00.000Z", "priceIncrement": 0.001}], "availableTo": "2022-05-14T00:00:00.000Z"}, {"id": "1000bttcusdt", "datasetId": "1000BTTCUSDT", "exchange": "binance-futures", "baseCurrency": "1000BTTC", "quoteCurrency": "USDT", "type": "perpetual", "active": false, "availableSince": "2022-01-26T00:00:00.000Z", "priceIncrement": 1e-06, "amountIncrement": 1, "minTradeAmount": 1, "makerFee": 0.0002, "takerFee": 0.0004, "inverse": false, "contractType": "linear_perpetual", "contractMultiplier": 1, "underlyingIndex": "1000bttcusdt", "availableTo": "2022-04-12T00:00:00.000Z"}, {"id": "keepusdt", "datasetId": "KEEPUSDT", "exchange": "binance-futures", "baseCurrency": "KEEP", "quoteCurrency": "USDT", "type": "perpetual", "active": false, "availableSince": "2021-06-22T00:00:00.000Z", "priceIncrement": 0.0001, "amountIncrement": 1, "minTradeAmount": 1, "makerFee": 0.0002, "takerFee": 0.0004, "inverse": false, "contractType": "linear_perpetual", "contractMultiplier": 1, "underlyingIndex": "keepusdt", "availableTo": "2022-02-16T00:00:00.000Z"}, {"id": "nuusdt", "datasetId": "NUUSDT", "exchange": "binance-futures", "baseCurrency": "NU", "quoteCurrency": "USDT", "type": "perpetual", "active": false, "availableSince": "2021-10-21T00:00:00.000Z", "priceIncrement": 0.0001, "amountIncrement": 0.1, "minTradeAmount": 0.1, "makerFee": 0.0002, "takerFee": 0.0004, "inverse": false, "contractType": "linear_perpetual", "contractMultiplier": 1, "underlyingIndex": "nuusdt", "availableTo": "2022-02-16T00:00:00.000Z"}, {"id": "btcstusdt", "datasetId": "BTCSTUSDT", "exchange": "binance-futures", "baseCurrency": "BTCST", "quoteCurrency": "USDT", "type": "perpetual", "active": false, "availableSince": "2021-03-04T00:00:00.000Z", "priceIncrement": 0.001, "amountIncrement": 0.1, "minTradeAmount": 0.1, "makerFee": 0.0002, "takerFee": 0.0004, "inverse": false, "contractType": "linear_perpetual", "contractMultiplier": 1, "availableTo": "2021-03-13T00:00:00.000Z", "underlyingIndex": "btcstusdt", "listing": "2021-03-03T07:00:00.000Z"}, {"id": "dotecousdt", "datasetId": "DOTECOUSDT", "exchange": "binance-futures", "baseCurrency": "DOTECO", "quoteCurrency": "USDT", "type": "perpetual", "active": false, "availableSince": "2021-01-20T00:00:00.000Z", "priceIncrement": 0.1, "amountIncrement": 0.001, "minTradeAmount": 0.001, "makerFee": 0.0002, "takerFee": 0.0004, "inverse": false, "contractType": "linear_perpetual", "contractMultiplier": 1, "availableTo": "2021-02-20T00:00:00.000Z"}]
|