• Language & Exchange Rate Switch
  • Preference Settings
    Rise/fall colour
    Start-End Time of the Change
Exchange Web3

API Document


API (4.0) provides spot, margin and futures trading operations


REST API (Spot, Margin and Futures)


Futures WebSocket API


Spot WebSocket API

API Keys


API V4 Keys are independent from API 2.0 Keys. Generate them in APIv4 Keys.

API (2.0) only provides spot


REST API

Demos: PHP, JAVA, NODEJS, PYTHON, GO, CSHARP, PERL


Spot WebSocket API


Trading Pairs API

Return all the trading pairs supported by gate.io

URL: https://data.gateapi.io/api2/1/pairs

Return data example:

    # Request
    GET: https://data.gateapi.io/api2/1/pairs
    # Response
        [
                "eth_btc","etc_btc","etc_eth","zec_btc","dash_btc","ltc_btc","bcc_btc","qtum_btc",
                "qtum_eth","xrp_btc","zrx_btc","zrx_eth","dnt_eth","dpy_eth","oax_eth","lrc_eth",
                "lrc_btc","pst_eth","tnt_eth","snt_eth","snt_btc","omg_eth","omg_btc","pay_eth",
                "pay_btc","bat_eth","cvc_eth","storj_eth","storj_btc","eos_eth","eos_btc"
        ]
            

Market Info API

Returns all markets fee, minimum order total amount, price decimal places.

URL: https://data.gateapi.io/api2/1/marketinfo

Return data example:

    # Request
    GET: https://data.gateapi.io/api2/1/marketinfo
    # Response
   {
        "result": "true",
        "pairs": [
                      {
                            "eth_btc": {
                                "decimal_places": 6,
                                "amount_decimal_places": 4,
                                "min_amount": 0.001,
                                "min_amount_a": 0.001,
                                "min_amount_b": 0.0001,
                                "fee": 0.2,
                                "trade_disabled ": 0,
                                "buy_disabled" : 0,
                                "sell_disabled" : 0,
                            }
                      },
                      {
                            "zec_btc": {
                                "decimal_places": 4,
                                "amount_decimal_places": 5,
                                "min_amount": 0.0001,
                                "min_amount_a": 0.0001,
                                "min_amount_b": 0.0001,
                                "fee": 0.2,
                                "trade_disabled ": 0,
                                "buy_disabled" : 0,
                                "sell_disabled" : 0,
                            }
                      }
            ]
    }
            

CoinInfo

Return coin info include deposit, withdraw, trade status

URL: https://data.gateapi.io/api2/1/coininfo

Return data example:

    # Request
    GET: https://data.gateapi.io/api2/1/coininfo
    # Response
   {
        "result": "true",
        "pairs": [
                      {
                            "USDT": {
                                "delisted": 0,
                                "withdraw_disabled": 0,
								"withdraw_delayed ": 0,
                                "deposit_disabled": 0,
                                "trade_disabled": 0,
                            }
                      }
            ]
    }
            

Market Details API

Returns market details including pair, coin name, coin symbol, last price, trading volume, coin supply, coin market cap, price trend, etc.

URL: https://data.gateapi.io/api2/1/marketlist

Return data example:

    # Request
    GET: https://data.gateapi.io/api2/1/marketlist
    # Response
       {
        "result": "true",
        "data": [
                {
                    "no": 1,
                    "symbol": "LTC",
                    "name": "Litecoin",
                    "name_en": "Litecoin",
                    "name_cn": "莱特币",
                    "pair": "ltc_btc",
                    "rate": "418.00",
                    "vol_a": 168120.2,
                    "vol_b": "65,616,561",
                    "curr_a": "LTC",
                    "curr_b": "BTC",
                    "curr_suffix": " BTC",
                    "rate_percent": "19.73",
                    "trend": "up",
                    "supply": 25760300,
                    "marketcap": "10,767,805,404",
                    "plot": null
                },
                {
                    "no": 2,
                    "symbol": "ETH",
                    "name": "ETH",
                    "name_en": "ETH",
                    "name_cn": "以太币",
                    "pair": "etc_eth",
                    "rate": "0.7450",
                    "vol_a": 65227328.3,
                    "vol_b": "51,041,999",
                    "curr_a": "etc",
                    "curr_b": "eth",
                    "curr_suffix": " eth",
                    "rate_percent": "-1.84",
                    "trend": "up",
                    "supply": 1050000000,
                    "marketcap": "782,250,000",
                    "plot": null
                }
            ]
    }
            

Tickers API

returns the tickers for all the supported trading pairs at once, cached in 20 seconds:

URL: https://data.gateapi.io/api2/1/tickers

Return data example:

    # Request
    GET: https://data.gateapi.io/api2/1/tickers
    # Response
      {
          "eth_btc": {
                "result": "true",
                "last": 0.1,
                "lowestAsk": 0.1,
                "highestBid": "0.00000000",
                "percentChange": 0,
                "baseVolume": 0.001,
                "quoteVolume": 0.01,
                "high24hr": 0.1,
                "low24hr": 0.1
            },
        "xrp_btc": {
                "result": "true",
                "last": "0.00004720",
                "lowestAsk": "0.00005620",
                "highestBid": "0.00004550",
                "percentChange": -7.4510907045863,
                "baseVolume": 0.5324,
                "quoteVolume": 11417.333,
                "high24hr": "0.00005580",
                "low24hr": "0.00004560"
            }
        }
            

Ticker API

returns the tickers for all the supported trading pairs at once, cached in 20 seconds:

URL: https://data.gateapi.io/api2/1/ticker/[CURR_A]_[CURR_B]

Replace [CURR_A] and [CURR_B] with the selected currencies.

Links:

  1. https://data.gateapi.io/api2/1/ticker/usdt_cny
  2. https://data.gateapi.io/api2/1/ticker/usdt_cnyx
  3. https://data.gateapi.io/api2/1/ticker/btc_usdt
  4. https://data.gateapi.io/api2/1/ticker/bch_usdt
  5. https://data.gateapi.io/api2/1/ticker/eth_usdt
  6. https://data.gateapi.io/api2/1/ticker/etc_usdt
  7. https://data.gateapi.io/api2/1/ticker/qtum_usdt
  8. https://data.gateapi.io/api2/1/ticker/ltc_usdt
  9. https://data.gateapi.io/api2/1/ticker/dash_usdt
  10. https://data.gateapi.io/api2/1/ticker/zec_usdt
  11. https://data.gateapi.io/api2/1/ticker/btm_usdt
  12. https://data.gateapi.io/api2/1/ticker/eos_usdt
  13. https://data.gateapi.io/api2/1/ticker/req_usdt
  14. https://data.gateapi.io/api2/1/ticker/snt_usdt
  15. https://data.gateapi.io/api2/1/ticker/omg_usdt
  16. https://data.gateapi.io/api2/1/ticker/pay_usdt
  17. https://data.gateapi.io/api2/1/ticker/cvc_usdt
  18. https://data.gateapi.io/api2/1/ticker/zrx_usdt
  19. https://data.gateapi.io/api2/1/ticker/xmr_usdt
  20. https://data.gateapi.io/api2/1/ticker/xrp_usdt
  21. https://data.gateapi.io/api2/1/ticker/doge_usdt
  22. https://data.gateapi.io/api2/1/ticker/bat_usdt
  23. https://data.gateapi.io/api2/1/ticker/pst_usdt
  24. https://data.gateapi.io/api2/1/ticker/btg_usdt
  25. https://data.gateapi.io/api2/1/ticker/dpy_usdt
  26. https://data.gateapi.io/api2/1/ticker/lrc_usdt
  27. https://data.gateapi.io/api2/1/ticker/storj_usdt
  28. https://data.gateapi.io/api2/1/ticker/rdn_usdt
  29. https://data.gateapi.io/api2/1/ticker/knc_usdt
  30. https://data.gateapi.io/api2/1/ticker/link_usdt
  31. https://data.gateapi.io/api2/1/ticker/cdt_usdt
  32. https://data.gateapi.io/api2/1/ticker/ae_usdt
  33. https://data.gateapi.io/api2/1/ticker/ae_eth
  34. https://data.gateapi.io/api2/1/ticker/ae_btc
  35. https://data.gateapi.io/api2/1/ticker/cdt_eth
  36. https://data.gateapi.io/api2/1/ticker/rdn_eth
  37. https://data.gateapi.io/api2/1/ticker/knc_eth
  38. https://data.gateapi.io/api2/1/ticker/link_eth
  39. https://data.gateapi.io/api2/1/ticker/req_eth
  40. https://data.gateapi.io/api2/1/ticker/rcn_eth
  41. https://data.gateapi.io/api2/1/ticker/trx_eth
  42. https://data.gateapi.io/api2/1/ticker/bnt_eth
  43. https://data.gateapi.io/api2/1/ticker/vet_eth
  44. https://data.gateapi.io/api2/1/ticker/fun_eth
  45. https://data.gateapi.io/api2/1/ticker/data_eth
  46. https://data.gateapi.io/api2/1/ticker/rlc_eth
  47. https://data.gateapi.io/api2/1/ticker/rlc_usdt
  48. https://data.gateapi.io/api2/1/ticker/zsc_eth
  49. https://data.gateapi.io/api2/1/ticker/mda_eth
  50. https://data.gateapi.io/api2/1/ticker/rcn_usdt
  51. https://data.gateapi.io/api2/1/ticker/trx_usdt
  52. https://data.gateapi.io/api2/1/ticker/vet_usdt
  53. https://data.gateapi.io/api2/1/ticker/fun_usdt
  54. https://data.gateapi.io/api2/1/ticker/data_usdt
  55. https://data.gateapi.io/api2/1/ticker/zsc_usdt
  56. https://data.gateapi.io/api2/1/ticker/mda_usdt
  57. https://data.gateapi.io/api2/1/ticker/xtz_usdt
  58. https://data.gateapi.io/api2/1/ticker/xtz_btc
  59. https://data.gateapi.io/api2/1/ticker/xtz_eth
  60. https://data.gateapi.io/api2/1/ticker/gem_usdt
  61. https://data.gateapi.io/api2/1/ticker/gem_eth
  62. https://data.gateapi.io/api2/1/ticker/rfr_usdt
  63. https://data.gateapi.io/api2/1/ticker/rfr_eth
  64. https://data.gateapi.io/api2/1/ticker/abt_usdt
  65. https://data.gateapi.io/api2/1/ticker/abt_eth
  66. https://data.gateapi.io/api2/1/ticker/ledu_btc
  67. https://data.gateapi.io/api2/1/ticker/ledu_eth
  68. https://data.gateapi.io/api2/1/ticker/ost_usdt
  69. https://data.gateapi.io/api2/1/ticker/ost_eth
  70. https://data.gateapi.io/api2/1/ticker/xlm_usdt
  71. https://data.gateapi.io/api2/1/ticker/xlm_eth
  72. https://data.gateapi.io/api2/1/ticker/xlm_btc
  73. https://data.gateapi.io/api2/1/ticker/mobi_usdt
  74. https://data.gateapi.io/api2/1/ticker/mobi_eth
  75. https://data.gateapi.io/api2/1/ticker/mobi_btc
  76. https://data.gateapi.io/api2/1/ticker/ocn_usdt
  77. https://data.gateapi.io/api2/1/ticker/ocn_eth
  78. https://data.gateapi.io/api2/1/ticker/ocn_btc
  79. https://data.gateapi.io/api2/1/ticker/cofi_usdt
  80. https://data.gateapi.io/api2/1/ticker/cofi_eth
  81. https://data.gateapi.io/api2/1/ticker/blz_usdt
  82. https://data.gateapi.io/api2/1/ticker/blz_eth
  83. https://data.gateapi.io/api2/1/ticker/gxs_usdt
  84. https://data.gateapi.io/api2/1/ticker/gxs_btc
  85. https://data.gateapi.io/api2/1/ticker/mtn_usdt
  86. https://data.gateapi.io/api2/1/ticker/mtn_eth
  87. https://data.gateapi.io/api2/1/ticker/ruff_usdt
  88. https://data.gateapi.io/api2/1/ticker/ruff_eth
  89. https://data.gateapi.io/api2/1/ticker/ruff_btc
  90. https://data.gateapi.io/api2/1/ticker/tnc_usdt
  91. https://data.gateapi.io/api2/1/ticker/tnc_eth
  92. https://data.gateapi.io/api2/1/ticker/tnc_btc
  93. https://data.gateapi.io/api2/1/ticker/zil_usdt
  94. https://data.gateapi.io/api2/1/ticker/zil_eth
  95. https://data.gateapi.io/api2/1/ticker/bto_usdt
  96. https://data.gateapi.io/api2/1/ticker/bto_eth
  97. https://data.gateapi.io/api2/1/ticker/theta_usdt
  98. https://data.gateapi.io/api2/1/ticker/theta_eth
  99. https://data.gateapi.io/api2/1/ticker/ddd_usdt
  100. https://data.gateapi.io/api2/1/ticker/ddd_eth
  101. https://data.gateapi.io/api2/1/ticker/ddd_btc
  102. https://data.gateapi.io/api2/1/ticker/mkr_usdt
  103. https://data.gateapi.io/api2/1/ticker/mkr_eth
  104. https://data.gateapi.io/api2/1/ticker/dai_usdt
  105. https://data.gateapi.io/api2/1/ticker/smt_usdt
  106. https://data.gateapi.io/api2/1/ticker/smt_eth
  107. https://data.gateapi.io/api2/1/ticker/mdt_usdt
  108. https://data.gateapi.io/api2/1/ticker/mdt_eth
  109. https://data.gateapi.io/api2/1/ticker/mdt_btc
  110. https://data.gateapi.io/api2/1/ticker/mana_usdt
  111. https://data.gateapi.io/api2/1/ticker/mana_eth
  112. https://data.gateapi.io/api2/1/ticker/salt_usdt
  113. https://data.gateapi.io/api2/1/ticker/salt_eth
  114. https://data.gateapi.io/api2/1/ticker/fuel_usdt
  115. https://data.gateapi.io/api2/1/ticker/fuel_eth
  116. https://data.gateapi.io/api2/1/ticker/elf_usdt
  117. https://data.gateapi.io/api2/1/ticker/elf_eth
  118. https://data.gateapi.io/api2/1/ticker/drgn_usdt
  119. https://data.gateapi.io/api2/1/ticker/drgn_eth
  120. https://data.gateapi.io/api2/1/ticker/gtc_usdt
  121. https://data.gateapi.io/api2/1/ticker/gtc_eth
  122. https://data.gateapi.io/api2/1/ticker/gtc_btc
  123. https://data.gateapi.io/api2/1/ticker/qlc_usdt
  124. https://data.gateapi.io/api2/1/ticker/qlc_btc
  125. https://data.gateapi.io/api2/1/ticker/qlc_eth
  126. https://data.gateapi.io/api2/1/ticker/dbc_usdt
  127. https://data.gateapi.io/api2/1/ticker/dbc_btc
  128. https://data.gateapi.io/api2/1/ticker/dbc_eth
  129. https://data.gateapi.io/api2/1/ticker/bnty_usdt
  130. https://data.gateapi.io/api2/1/ticker/bnty_eth
  131. https://data.gateapi.io/api2/1/ticker/icx_usdt
  132. https://data.gateapi.io/api2/1/ticker/icx_eth
  133. https://data.gateapi.io/api2/1/ticker/btf_usdt
  134. https://data.gateapi.io/api2/1/ticker/btf_btc
  135. https://data.gateapi.io/api2/1/ticker/ada_usdt
  136. https://data.gateapi.io/api2/1/ticker/ada_btc
  137. https://data.gateapi.io/api2/1/ticker/lsk_usdt
  138. https://data.gateapi.io/api2/1/ticker/lsk_btc
  139. https://data.gateapi.io/api2/1/ticker/waves_usdt
  140. https://data.gateapi.io/api2/1/ticker/waves_btc
  141. https://data.gateapi.io/api2/1/ticker/bifi_usdt
  142. https://data.gateapi.io/api2/1/ticker/bifi_btc
  143. https://data.gateapi.io/api2/1/ticker/mds_eth
  144. https://data.gateapi.io/api2/1/ticker/mds_usdt
  145. https://data.gateapi.io/api2/1/ticker/qash_usdt
  146. https://data.gateapi.io/api2/1/ticker/qash_eth
  147. https://data.gateapi.io/api2/1/ticker/qash_btc
  148. https://data.gateapi.io/api2/1/ticker/powr_usdt
  149. https://data.gateapi.io/api2/1/ticker/powr_eth
  150. https://data.gateapi.io/api2/1/ticker/powr_btc
  151. https://data.gateapi.io/api2/1/ticker/bcd_usdt
  152. https://data.gateapi.io/api2/1/ticker/bcd_btc
  153. https://data.gateapi.io/api2/1/ticker/sbtc_usdt
  154. https://data.gateapi.io/api2/1/ticker/sbtc_btc
  155. https://data.gateapi.io/api2/1/ticker/god_usdt
  156. https://data.gateapi.io/api2/1/ticker/god_btc
  157. https://data.gateapi.io/api2/1/ticker/bcx_usdt
  158. https://data.gateapi.io/api2/1/ticker/bcx_btc
  159. https://data.gateapi.io/api2/1/ticker/qsp_usdt
  160. https://data.gateapi.io/api2/1/ticker/qsp_eth
  161. https://data.gateapi.io/api2/1/ticker/ink_btc
  162. https://data.gateapi.io/api2/1/ticker/ink_usdt
  163. https://data.gateapi.io/api2/1/ticker/ink_eth
  164. https://data.gateapi.io/api2/1/ticker/qbt_eth
  165. https://data.gateapi.io/api2/1/ticker/qbt_usdt
  166. https://data.gateapi.io/api2/1/ticker/tsl_usdt
  167. https://data.gateapi.io/api2/1/ticker/gnx_usdt
  168. https://data.gateapi.io/api2/1/ticker/gnx_eth
  169. https://data.gateapi.io/api2/1/ticker/neo_usdt
  170. https://data.gateapi.io/api2/1/ticker/gas_usdt
  171. https://data.gateapi.io/api2/1/ticker/neo_btc
  172. https://data.gateapi.io/api2/1/ticker/gas_btc
  173. https://data.gateapi.io/api2/1/ticker/iota_usdt
  174. https://data.gateapi.io/api2/1/ticker/iota_btc
  175. https://data.gateapi.io/api2/1/ticker/nas_usdt
  176. https://data.gateapi.io/api2/1/ticker/nas_eth
  177. https://data.gateapi.io/api2/1/ticker/nas_btc
  178. https://data.gateapi.io/api2/1/ticker/eth_btc
  179. https://data.gateapi.io/api2/1/ticker/etc_btc
  180. https://data.gateapi.io/api2/1/ticker/etc_eth
  181. https://data.gateapi.io/api2/1/ticker/zec_btc
  182. https://data.gateapi.io/api2/1/ticker/dash_btc
  183. https://data.gateapi.io/api2/1/ticker/ltc_btc
  184. https://data.gateapi.io/api2/1/ticker/bch_btc
  185. https://data.gateapi.io/api2/1/ticker/btg_btc
  186. https://data.gateapi.io/api2/1/ticker/qtum_btc
  187. https://data.gateapi.io/api2/1/ticker/qtum_eth
  188. https://data.gateapi.io/api2/1/ticker/xrp_btc
  189. https://data.gateapi.io/api2/1/ticker/doge_btc
  190. https://data.gateapi.io/api2/1/ticker/xmr_btc
  191. https://data.gateapi.io/api2/1/ticker/zrx_btc
  192. https://data.gateapi.io/api2/1/ticker/zrx_eth
  193. https://data.gateapi.io/api2/1/ticker/dnt_eth
  194. https://data.gateapi.io/api2/1/ticker/dpy_eth
  195. https://data.gateapi.io/api2/1/ticker/oax_btc
  196. https://data.gateapi.io/api2/1/ticker/oax_usdt
  197. https://data.gateapi.io/api2/1/ticker/oax_eth
  198. https://data.gateapi.io/api2/1/ticker/lrc_eth
  199. https://data.gateapi.io/api2/1/ticker/lrc_btc
  200. https://data.gateapi.io/api2/1/ticker/pst_eth
  201. https://data.gateapi.io/api2/1/ticker/bcdn_eth
  202. https://data.gateapi.io/api2/1/ticker/bcdn_usdt
  203. https://data.gateapi.io/api2/1/ticker/snt_eth
  204. https://data.gateapi.io/api2/1/ticker/snt_btc
  205. https://data.gateapi.io/api2/1/ticker/btm_eth
  206. https://data.gateapi.io/api2/1/ticker/btm_btc
  207. https://data.gateapi.io/api2/1/ticker/snet_eth
  208. https://data.gateapi.io/api2/1/ticker/snet_usdt
  209. https://data.gateapi.io/api2/1/ticker/llt_snet
  210. https://data.gateapi.io/api2/1/ticker/omg_eth
  211. https://data.gateapi.io/api2/1/ticker/omg_btc
  212. https://data.gateapi.io/api2/1/ticker/pay_eth
  213. https://data.gateapi.io/api2/1/ticker/pay_btc
  214. https://data.gateapi.io/api2/1/ticker/bat_eth
  215. https://data.gateapi.io/api2/1/ticker/bat_btc
  216. https://data.gateapi.io/api2/1/ticker/cvc_eth
  217. https://data.gateapi.io/api2/1/ticker/storj_eth
  218. https://data.gateapi.io/api2/1/ticker/storj_btc
  219. https://data.gateapi.io/api2/1/ticker/eos_eth
  220. https://data.gateapi.io/api2/1/ticker/eos_btc
  221. https://data.gateapi.io/api2/1/ticker/bts_usdt
  222. https://data.gateapi.io/api2/1/ticker/bts_btc
  223. https://data.gateapi.io/api2/1/ticker/btc_sgd
  224. https://data.gateapi.io/api2/1/ticker/bch_sgd
  225. https://data.gateapi.io/api2/1/ticker/eth_sgd
  226. https://data.gateapi.io/api2/1/ticker/etc_sgd
  227. https://data.gateapi.io/api2/1/ticker/xrp_sgd
  228. https://data.gateapi.io/api2/1/ticker/ltc_sgd
  229. https://data.gateapi.io/api2/1/ticker/xtz_try
  230. https://data.gateapi.io/api2/1/ticker/xrp_try
  231. https://data.gateapi.io/api2/1/ticker/xlm_try
  232. https://data.gateapi.io/api2/1/ticker/wbtc_try
  233. https://data.gateapi.io/api2/1/ticker/waves_try
  234. https://data.gateapi.io/api2/1/ticker/usdt_try
  235. https://data.gateapi.io/api2/1/ticker/uni_try
  236. https://data.gateapi.io/api2/1/ticker/uma_try
  237. https://data.gateapi.io/api2/1/ticker/trx_try
  238. https://data.gateapi.io/api2/1/ticker/sxp_try
  239. https://data.gateapi.io/api2/1/ticker/sol_try
  240. https://data.gateapi.io/api2/1/ticker/shib_try
  241. https://data.gateapi.io/api2/1/ticker/sand_try
  242. https://data.gateapi.io/api2/1/ticker/omg_try
  243. https://data.gateapi.io/api2/1/ticker/neo_try
  244. https://data.gateapi.io/api2/1/ticker/mkr_try
  245. https://data.gateapi.io/api2/1/ticker/mana_try
  246. https://data.gateapi.io/api2/1/ticker/ltc_try
  247. https://data.gateapi.io/api2/1/ticker/lrc_try
  248. https://data.gateapi.io/api2/1/ticker/link_try
  249. https://data.gateapi.io/api2/1/ticker/hot_try
  250. https://data.gateapi.io/api2/1/ticker/gst_try
  251. https://data.gateapi.io/api2/1/ticker/gala_try
  252. https://data.gateapi.io/api2/1/ticker/ftm_try
  253. https://data.gateapi.io/api2/1/ticker/eth_try
  254. https://data.gateapi.io/api2/1/ticker/eos_try
  255. https://data.gateapi.io/api2/1/ticker/enj_try
  256. https://data.gateapi.io/api2/1/ticker/dot_try
  257. https://data.gateapi.io/api2/1/ticker/doge_try
  258. https://data.gateapi.io/api2/1/ticker/dai_try
  259. https://data.gateapi.io/api2/1/ticker/crv_try
  260. https://data.gateapi.io/api2/1/ticker/chz_try
  261. https://data.gateapi.io/api2/1/ticker/btt_try
  262. https://data.gateapi.io/api2/1/ticker/btc_try
  263. https://data.gateapi.io/api2/1/ticker/bnb_try
  264. https://data.gateapi.io/api2/1/ticker/bat_try
  265. https://data.gateapi.io/api2/1/ticker/axs_try
  266. https://data.gateapi.io/api2/1/ticker/avax_try
  267. https://data.gateapi.io/api2/1/ticker/atom_try
  268. https://data.gateapi.io/api2/1/ticker/ape_try
  269. https://data.gateapi.io/api2/1/ticker/ankr_try
  270. https://data.gateapi.io/api2/1/ticker/amp_try
  271. https://data.gateapi.io/api2/1/ticker/algo_try
  272. https://data.gateapi.io/api2/1/ticker/ada_try
  273. https://data.gateapi.io/api2/1/ticker/aave_try
  274. https://data.gateapi.io/api2/1/ticker/1inch_try
  275. https://data.gateapi.io/api2/1/ticker/mask_try
  276. https://data.gateapi.io/api2/1/ticker/apt_try
  277. https://data.gateapi.io/api2/1/ticker/ar_try
  278. https://data.gateapi.io/api2/1/ticker/luna_try
  279. https://data.gateapi.io/api2/1/ticker/lunc_try
  280. https://data.gateapi.io/api2/1/ticker/flow_try
  281. https://data.gateapi.io/api2/1/ticker/fil_try
  282. https://data.gateapi.io/api2/1/ticker/dydx_try
  283. https://data.gateapi.io/api2/1/ticker/op_try
  284. https://data.gateapi.io/api2/1/ticker/icp_try
  285. https://data.gateapi.io/api2/1/ticker/lit_try
  286. https://data.gateapi.io/api2/1/ticker/people_try
  287. https://data.gateapi.io/api2/1/ticker/jasmy_try
  288. https://data.gateapi.io/api2/1/ticker/vinu_try
  289. https://data.gateapi.io/api2/1/ticker/arb_try
  290. https://data.gateapi.io/api2/1/ticker/id_try
  291. https://data.gateapi.io/api2/1/ticker/sui_try
  292. https://data.gateapi.io/api2/1/ticker/pepe_try
  293. https://data.gateapi.io/api2/1/ticker/aidoge_try
  294. https://data.gateapi.io/api2/1/ticker/blur_try
  295. https://data.gateapi.io/api2/1/ticker/ordi_try
  296. https://data.gateapi.io/api2/1/ticker/asr_try
  297. https://data.gateapi.io/api2/1/ticker/psg_try
  298. https://data.gateapi.io/api2/1/ticker/acm_try
  299. https://data.gateapi.io/api2/1/ticker/atm_try
  300. https://data.gateapi.io/api2/1/ticker/juv_try
  301. https://data.gateapi.io/api2/1/ticker/sei_try
  302. https://data.gateapi.io/api2/1/ticker/lpt_try
  303. https://data.gateapi.io/api2/1/ticker/cyber_try
  304. https://data.gateapi.io/api2/1/ticker/wld_try
  305. https://data.gateapi.io/api2/1/ticker/hbar_try
  306. https://data.gateapi.io/api2/1/ticker/arkm_try
  307. https://data.gateapi.io/api2/1/ticker/ygg_try
  308. https://data.gateapi.io/api2/1/ticker/flm_try
  309. https://data.gateapi.io/api2/1/ticker/blz_try
  310. https://data.gateapi.io/api2/1/ticker/oax_try
  311. https://data.gateapi.io/api2/1/ticker/unfi_try
  312. https://data.gateapi.io/api2/1/ticker/vgx_try
  313. https://data.gateapi.io/api2/1/ticker/igu_try
  314. https://data.gateapi.io/api2/1/ticker/bch_try
  315. https://data.gateapi.io/api2/1/ticker/tomi_try
  316. https://data.gateapi.io/api2/1/ticker/syn_try
  317. https://data.gateapi.io/api2/1/ticker/dodo_try
  318. https://data.gateapi.io/api2/1/ticker/cfx_try
  319. https://data.gateapi.io/api2/1/ticker/astra_try
  320. https://data.gateapi.io/api2/1/ticker/kas_try
  321. https://data.gateapi.io/api2/1/ticker/lqty_try
  322. https://data.gateapi.io/api2/1/ticker/perp_try
  323. https://data.gateapi.io/api2/1/ticker/snx_try
  324. https://data.gateapi.io/api2/1/ticker/nmr_try
  325. https://data.gateapi.io/api2/1/ticker/matic_try
  326. https://data.gateapi.io/api2/1/ticker/flux_try
  327. https://data.gateapi.io/api2/1/ticker/og_try
  328. https://data.gateapi.io/api2/1/ticker/ftt_try
  329. https://data.gateapi.io/api2/1/ticker/xvg_try
  330. https://data.gateapi.io/api2/1/ticker/ogn_try
  331. https://data.gateapi.io/api2/1/ticker/storj_try
  332. https://data.gateapi.io/api2/1/ticker/hifi_try
  333. https://data.gateapi.io/api2/1/ticker/trb_try
  334. https://data.gateapi.io/api2/1/ticker/srm_try
  335. https://data.gateapi.io/api2/1/ticker/ladys_try
  336. https://data.gateapi.io/api2/1/ticker/akro_try
  337. https://data.gateapi.io/api2/1/ticker/loom_try
  338. https://data.gateapi.io/api2/1/ticker/gari_try
  339. https://data.gateapi.io/api2/1/ticker/fitfi_try
  340. https://data.gateapi.io/api2/1/ticker/bsv_try
  341. https://data.gateapi.io/api2/1/ticker/vra_try
  342. https://data.gateapi.io/api2/1/ticker/etc_try
  343. https://data.gateapi.io/api2/1/ticker/avax_usdt
  344. https://data.gateapi.io/api2/1/ticker/sxp_usdt
  345. https://data.gateapi.io/api2/1/ticker/chz_usdt
  346. https://data.gateapi.io/api2/1/ticker/gt_usdt
  347. https://data.gateapi.io/api2/1/ticker/busd_usdt
  348. https://data.gateapi.io/api2/1/ticker/busd_eth
  349. https://data.gateapi.io/api2/1/ticker/usdc_usdt
  350. https://data.gateapi.io/api2/1/ticker/tusd_usdt
  351. https://data.gateapi.io/api2/1/ticker/usdp_usdt
  352. https://data.gateapi.io/api2/1/ticker/usdg_usdt
  353. https://data.gateapi.io/api2/1/ticker/gt_btc
  354. https://data.gateapi.io/api2/1/ticker/gt_eth
  355. https://data.gateapi.io/api2/1/ticker/eth_usdc
  356. https://data.gateapi.io/api2/1/ticker/ethf_usdt
  357. https://data.gateapi.io/api2/1/ticker/ethw_usdt
  358. https://data.gateapi.io/api2/1/ticker/ethw_eth
  359. https://data.gateapi.io/api2/1/ticker/btc_usdc
  360. https://data.gateapi.io/api2/1/ticker/sys_usdt
  361. https://data.gateapi.io/api2/1/ticker/sys_eth
  362. https://data.gateapi.io/api2/1/ticker/atom_btc
  363. https://data.gateapi.io/api2/1/ticker/atom_usdt
  364. https://data.gateapi.io/api2/1/ticker/nyzo_usdt
  365. https://data.gateapi.io/api2/1/ticker/nyzo_eth
  366. https://data.gateapi.io/api2/1/ticker/scrt_usdt
  367. https://data.gateapi.io/api2/1/ticker/scrt_eth
  368. https://data.gateapi.io/api2/1/ticker/eth2_usdt
  369. https://data.gateapi.io/api2/1/ticker/eth2_eth
  370. https://data.gateapi.io/api2/1/ticker/hard_usdt
  371. https://data.gateapi.io/api2/1/ticker/hard_eth
  372. https://data.gateapi.io/api2/1/ticker/kava_usdt
  373. https://data.gateapi.io/api2/1/ticker/iris_usdt
  374. https://data.gateapi.io/api2/1/ticker/ant_usdt
  375. https://data.gateapi.io/api2/1/ticker/ankr_usdt
  376. https://data.gateapi.io/api2/1/ticker/stpt_usdt
  377. https://data.gateapi.io/api2/1/ticker/rsr_usdt
  378. https://data.gateapi.io/api2/1/ticker/kai_usdt
  379. https://data.gateapi.io/api2/1/ticker/ctsi_usdt
  380. https://data.gateapi.io/api2/1/ticker/comp_usdt
  381. https://data.gateapi.io/api2/1/ticker/ocean_usdt
  382. https://data.gateapi.io/api2/1/ticker/sc_usdt
  383. https://data.gateapi.io/api2/1/ticker/sc_eth
  384. https://data.gateapi.io/api2/1/ticker/ksm_usdt
  385. https://data.gateapi.io/api2/1/ticker/firo_usdt
  386. https://data.gateapi.io/api2/1/ticker/dot_usdt
  387. https://data.gateapi.io/api2/1/ticker/dot_btc
  388. https://data.gateapi.io/api2/1/ticker/mtr_usdt
  389. https://data.gateapi.io/api2/1/ticker/mtrg_usdt
  390. https://data.gateapi.io/api2/1/ticker/sol_usdt
  391. https://data.gateapi.io/api2/1/ticker/sol_usdc
  392. https://data.gateapi.io/api2/1/ticker/coti_usdt
  393. https://data.gateapi.io/api2/1/ticker/ampl_usdt
  394. https://data.gateapi.io/api2/1/ticker/digg_usdt
  395. https://data.gateapi.io/api2/1/ticker/digg_eth
  396. https://data.gateapi.io/api2/1/ticker/grap_usdt
  397. https://data.gateapi.io/api2/1/ticker/grap_eth
  398. https://data.gateapi.io/api2/1/ticker/wnxm_usdt
  399. https://data.gateapi.io/api2/1/ticker/wnxm_eth
  400. https://data.gateapi.io/api2/1/ticker/luna_usdt
  401. https://data.gateapi.io/api2/1/ticker/luna_eth
  402. https://data.gateapi.io/api2/1/ticker/lunc_usdt
  403. https://data.gateapi.io/api2/1/ticker/avax_eth
  404. https://data.gateapi.io/api2/1/ticker/avax_usdc
  405. https://data.gateapi.io/api2/1/ticker/fsn_usdt
  406. https://data.gateapi.io/api2/1/ticker/fsn_eth
  407. https://data.gateapi.io/api2/1/ticker/chng_usdt
  408. https://data.gateapi.io/api2/1/ticker/chng_btc
  409. https://data.gateapi.io/api2/1/ticker/ooki_usdt
  410. https://data.gateapi.io/api2/1/ticker/pcx_usdt
  411. https://data.gateapi.io/api2/1/ticker/yam_usdt
  412. https://data.gateapi.io/api2/1/ticker/yam_eth
  413. https://data.gateapi.io/api2/1/ticker/box_usdt
  414. https://data.gateapi.io/api2/1/ticker/crv_usdt
  415. https://data.gateapi.io/api2/1/ticker/crv_btc
  416. https://data.gateapi.io/api2/1/ticker/crv_eth
  417. https://data.gateapi.io/api2/1/ticker/uni_usdt
  418. https://data.gateapi.io/api2/1/ticker/uni_eth
  419. https://data.gateapi.io/api2/1/ticker/sushi_usdt
  420. https://data.gateapi.io/api2/1/ticker/sushi_eth
  421. https://data.gateapi.io/api2/1/ticker/aave_usdt
  422. https://data.gateapi.io/api2/1/ticker/aave_eth
  423. https://data.gateapi.io/api2/1/ticker/pols_usdt
  424. https://data.gateapi.io/api2/1/ticker/erg_usdt
  425. https://data.gateapi.io/api2/1/ticker/erg_eth
  426. https://data.gateapi.io/api2/1/ticker/gof_usdt
  427. https://data.gateapi.io/api2/1/ticker/bnc_usdt
  428. https://data.gateapi.io/api2/1/ticker/kar_usdt
  429. https://data.gateapi.io/api2/1/ticker/sdn_usdt
  430. https://data.gateapi.io/api2/1/ticker/sdn_eth
  431. https://data.gateapi.io/api2/1/ticker/sdn_btc
  432. https://data.gateapi.io/api2/1/ticker/wit_usdt
  433. https://data.gateapi.io/api2/1/ticker/wit_eth
  434. https://data.gateapi.io/api2/1/ticker/wit_btc
  435. https://data.gateapi.io/api2/1/ticker/rmrk_usdt
  436. https://data.gateapi.io/api2/1/ticker/gens_usdt
  437. https://data.gateapi.io/api2/1/ticker/aca_usdt
  438. https://data.gateapi.io/api2/1/ticker/astr_usdt
  439. https://data.gateapi.io/api2/1/ticker/astr_eth
  440. https://data.gateapi.io/api2/1/ticker/astr_btc
  441. https://data.gateapi.io/api2/1/ticker/neer_usdt
  442. https://data.gateapi.io/api2/1/ticker/kma_usdt
  443. https://data.gateapi.io/api2/1/ticker/teer_usdt
  444. https://data.gateapi.io/api2/1/ticker/tt_usdt
  445. https://data.gateapi.io/api2/1/ticker/tt_eth
  446. https://data.gateapi.io/api2/1/ticker/kint_usdt
  447. https://data.gateapi.io/api2/1/ticker/kint_eth
  448. https://data.gateapi.io/api2/1/ticker/intr_usdt
  449. https://data.gateapi.io/api2/1/ticker/sgb_usdt
  450. https://data.gateapi.io/api2/1/ticker/air_usdt
  451. https://data.gateapi.io/api2/1/ticker/movr_usdt
  452. https://data.gateapi.io/api2/1/ticker/movr_eth
  453. https://data.gateapi.io/api2/1/ticker/glmr_usdt
  454. https://data.gateapi.io/api2/1/ticker/glmr_eth
  455. https://data.gateapi.io/api2/1/ticker/pha_usdt
  456. https://data.gateapi.io/api2/1/ticker/sashimi_usdt
  457. https://data.gateapi.io/api2/1/ticker/sashimi_eth
  458. https://data.gateapi.io/api2/1/ticker/farm_usdt
  459. https://data.gateapi.io/api2/1/ticker/farm_eth
  460. https://data.gateapi.io/api2/1/ticker/swrv_usdt
  461. https://data.gateapi.io/api2/1/ticker/swrv_eth
  462. https://data.gateapi.io/api2/1/ticker/razor_usdt
  463. https://data.gateapi.io/api2/1/ticker/razor_eth
  464. https://data.gateapi.io/api2/1/ticker/auction_usdt
  465. https://data.gateapi.io/api2/1/ticker/auction_eth
  466. https://data.gateapi.io/api2/1/ticker/ulu_usdt
  467. https://data.gateapi.io/api2/1/ticker/ulu_eth
  468. https://data.gateapi.io/api2/1/ticker/oin_usdt
  469. https://data.gateapi.io/api2/1/ticker/ags_usdt
  470. https://data.gateapi.io/api2/1/ticker/oxt_usdt
  471. https://data.gateapi.io/api2/1/ticker/oxt_eth
  472. https://data.gateapi.io/api2/1/ticker/sand_usdt
  473. https://data.gateapi.io/api2/1/ticker/sand_eth
  474. https://data.gateapi.io/api2/1/ticker/pool_usdt
  475. https://data.gateapi.io/api2/1/ticker/pool_eth
  476. https://data.gateapi.io/api2/1/ticker/amp_usdt
  477. https://data.gateapi.io/api2/1/ticker/amp_eth
  478. https://data.gateapi.io/api2/1/ticker/hot_usdt
  479. https://data.gateapi.io/api2/1/ticker/hot_eth
  480. https://data.gateapi.io/api2/1/ticker/bondly_usdt
  481. https://data.gateapi.io/api2/1/ticker/bondly_eth
  482. https://data.gateapi.io/api2/1/ticker/tpt_usdt
  483. https://data.gateapi.io/api2/1/ticker/tpt_eth
  484. https://data.gateapi.io/api2/1/ticker/bmi_usdt
  485. https://data.gateapi.io/api2/1/ticker/bmi_eth
  486. https://data.gateapi.io/api2/1/ticker/lpool_usdt
  487. https://data.gateapi.io/api2/1/ticker/lpool_eth
  488. https://data.gateapi.io/api2/1/ticker/super_usdt
  489. https://data.gateapi.io/api2/1/ticker/super_eth
  490. https://data.gateapi.io/api2/1/ticker/uft_usdt
  491. https://data.gateapi.io/api2/1/ticker/uft_eth
  492. https://data.gateapi.io/api2/1/ticker/ray_usdt
  493. https://data.gateapi.io/api2/1/ticker/ray_eth
  494. https://data.gateapi.io/api2/1/ticker/atlas_usdt
  495. https://data.gateapi.io/api2/1/ticker/polis_usdt
  496. https://data.gateapi.io/api2/1/ticker/orca_usdt
  497. https://data.gateapi.io/api2/1/ticker/wag_usdt
  498. https://data.gateapi.io/api2/1/ticker/sny_usdt
  499. https://data.gateapi.io/api2/1/ticker/sny_eth
  500. https://data.gateapi.io/api2/1/ticker/cstr_usdt
  501. https://data.gateapi.io/api2/1/ticker/cstr_eth
  502. https://data.gateapi.io/api2/1/ticker/gofx_usdt
  503. https://data.gateapi.io/api2/1/ticker/cys_usdt
  504. https://data.gateapi.io/api2/1/ticker/cys_eth
  505. https://data.gateapi.io/api2/1/ticker/samo_usdt
  506. https://data.gateapi.io/api2/1/ticker/samo_eth
  507. https://data.gateapi.io/api2/1/ticker/solr_usdt
  508. https://data.gateapi.io/api2/1/ticker/solr_eth
  509. https://data.gateapi.io/api2/1/ticker/liq_usdt
  510. https://data.gateapi.io/api2/1/ticker/crp_usdt
  511. https://data.gateapi.io/api2/1/ticker/crp_eth
  512. https://data.gateapi.io/api2/1/ticker/slrs_usdt
  513. https://data.gateapi.io/api2/1/ticker/slrs_eth
  514. https://data.gateapi.io/api2/1/ticker/slim_usdt
  515. https://data.gateapi.io/api2/1/ticker/slim_eth
  516. https://data.gateapi.io/api2/1/ticker/like_usdt
  517. https://data.gateapi.io/api2/1/ticker/like_eth
  518. https://data.gateapi.io/api2/1/ticker/port_usdt
  519. https://data.gateapi.io/api2/1/ticker/prt_usdt
  520. https://data.gateapi.io/api2/1/ticker/prt_eth
  521. https://data.gateapi.io/api2/1/ticker/larix_usdt
  522. https://data.gateapi.io/api2/1/ticker/larix_eth
  523. https://data.gateapi.io/api2/1/ticker/sunny_usdt
  524. https://data.gateapi.io/api2/1/ticker/sunny_eth
  525. https://data.gateapi.io/api2/1/ticker/sbr_usdt
  526. https://data.gateapi.io/api2/1/ticker/sbr_eth
  527. https://data.gateapi.io/api2/1/ticker/mngo_usdt
  528. https://data.gateapi.io/api2/1/ticker/mngo_eth
  529. https://data.gateapi.io/api2/1/ticker/tulip_usdt
  530. https://data.gateapi.io/api2/1/ticker/tulip_eth
  531. https://data.gateapi.io/api2/1/ticker/step_usdt
  532. https://data.gateapi.io/api2/1/ticker/step_eth
  533. https://data.gateapi.io/api2/1/ticker/mer_usdt
  534. https://data.gateapi.io/api2/1/ticker/fida_usdt
  535. https://data.gateapi.io/api2/1/ticker/fida_eth
  536. https://data.gateapi.io/api2/1/ticker/hai_eth
  537. https://data.gateapi.io/api2/1/ticker/hai_usdt
  538. https://data.gateapi.io/api2/1/ticker/aqt_usdt
  539. https://data.gateapi.io/api2/1/ticker/ehash_usdt
  540. https://data.gateapi.io/api2/1/ticker/ehash_eth
  541. https://data.gateapi.io/api2/1/ticker/pbr_usdt
  542. https://data.gateapi.io/api2/1/ticker/pbr_eth
  543. https://data.gateapi.io/api2/1/ticker/mask_usdt
  544. https://data.gateapi.io/api2/1/ticker/mask_eth
  545. https://data.gateapi.io/api2/1/ticker/hopr_usdt
  546. https://data.gateapi.io/api2/1/ticker/hopr_eth
  547. https://data.gateapi.io/api2/1/ticker/polk_usdt
  548. https://data.gateapi.io/api2/1/ticker/polk_eth
  549. https://data.gateapi.io/api2/1/ticker/prom_usdt
  550. https://data.gateapi.io/api2/1/ticker/prom_eth
  551. https://data.gateapi.io/api2/1/ticker/tvk_usdt
  552. https://data.gateapi.io/api2/1/ticker/tvk_eth
  553. https://data.gateapi.io/api2/1/ticker/matter_usdt
  554. https://data.gateapi.io/api2/1/ticker/matter_eth
  555. https://data.gateapi.io/api2/1/ticker/a5t_usdt
  556. https://data.gateapi.io/api2/1/ticker/a5t_eth
  557. https://data.gateapi.io/api2/1/ticker/slice_usdt
  558. https://data.gateapi.io/api2/1/ticker/slice_eth
  559. https://data.gateapi.io/api2/1/ticker/cudos_usdt
  560. https://data.gateapi.io/api2/1/ticker/muse_usdt
  561. https://data.gateapi.io/api2/1/ticker/muse_eth
  562. https://data.gateapi.io/api2/1/ticker/furucombo_usdt
  563. https://data.gateapi.io/api2/1/ticker/furucombo_eth
  564. https://data.gateapi.io/api2/1/ticker/dyp_usdt
  565. https://data.gateapi.io/api2/1/ticker/dyp_eth
  566. https://data.gateapi.io/api2/1/ticker/dows_usdt
  567. https://data.gateapi.io/api2/1/ticker/dows_eth
  568. https://data.gateapi.io/api2/1/ticker/apys_usdt
  569. https://data.gateapi.io/api2/1/ticker/apys_eth
  570. https://data.gateapi.io/api2/1/ticker/udo_usdt
  571. https://data.gateapi.io/api2/1/ticker/udo_eth
  572. https://data.gateapi.io/api2/1/ticker/xrd_usdt
  573. https://data.gateapi.io/api2/1/ticker/xrd_eth
  574. https://data.gateapi.io/api2/1/ticker/yield_usdt
  575. https://data.gateapi.io/api2/1/ticker/yield_eth
  576. https://data.gateapi.io/api2/1/ticker/utk_usdt
  577. https://data.gateapi.io/api2/1/ticker/utk_eth
  578. https://data.gateapi.io/api2/1/ticker/aergo_usdt
  579. https://data.gateapi.io/api2/1/ticker/aergo_eth
  580. https://data.gateapi.io/api2/1/ticker/etha_usdt
  581. https://data.gateapi.io/api2/1/ticker/etha_eth
  582. https://data.gateapi.io/api2/1/ticker/inv_usdt
  583. https://data.gateapi.io/api2/1/ticker/inv_eth
  584. https://data.gateapi.io/api2/1/ticker/aln_usdt
  585. https://data.gateapi.io/api2/1/ticker/aln_eth
  586. https://data.gateapi.io/api2/1/ticker/vra_usdt
  587. https://data.gateapi.io/api2/1/ticker/vra_btc
  588. https://data.gateapi.io/api2/1/ticker/audio_usdt
  589. https://data.gateapi.io/api2/1/ticker/audio_eth
  590. https://data.gateapi.io/api2/1/ticker/perl_usdt
  591. https://data.gateapi.io/api2/1/ticker/perl_eth
  592. https://data.gateapi.io/api2/1/ticker/chr_usdt
  593. https://data.gateapi.io/api2/1/ticker/chr_eth
  594. https://data.gateapi.io/api2/1/ticker/bamboo_usdt
  595. https://data.gateapi.io/api2/1/ticker/hapi_usdt
  596. https://data.gateapi.io/api2/1/ticker/blankv2_usdt
  597. https://data.gateapi.io/api2/1/ticker/blankv2_eth
  598. https://data.gateapi.io/api2/1/ticker/msol_usdt
  599. https://data.gateapi.io/api2/1/ticker/msol_eth
  600. https://data.gateapi.io/api2/1/ticker/oxy_usdt
  601. https://data.gateapi.io/api2/1/ticker/oxy_eth
  602. https://data.gateapi.io/api2/1/ticker/ern_usdt
  603. https://data.gateapi.io/api2/1/ticker/ern_eth
  604. https://data.gateapi.io/api2/1/ticker/bdp_usdt
  605. https://data.gateapi.io/api2/1/ticker/bdp_eth
  606. https://data.gateapi.io/api2/1/ticker/kine_usdt
  607. https://data.gateapi.io/api2/1/ticker/kine_eth
  608. https://data.gateapi.io/api2/1/ticker/cgg_usdt
  609. https://data.gateapi.io/api2/1/ticker/cgg_eth
  610. https://data.gateapi.io/api2/1/ticker/fet_usdt
  611. https://data.gateapi.io/api2/1/ticker/fet_eth
  612. https://data.gateapi.io/api2/1/ticker/wrx_usdt
  613. https://data.gateapi.io/api2/1/ticker/wrx_eth
  614. https://data.gateapi.io/api2/1/ticker/uos_usdt
  615. https://data.gateapi.io/api2/1/ticker/uos_eth
  616. https://data.gateapi.io/api2/1/ticker/unn_usdt
  617. https://data.gateapi.io/api2/1/ticker/unn_eth
  618. https://data.gateapi.io/api2/1/ticker/alice_usdt
  619. https://data.gateapi.io/api2/1/ticker/alice_eth
  620. https://data.gateapi.io/api2/1/ticker/adel_usdt
  621. https://data.gateapi.io/api2/1/ticker/adel_eth
  622. https://data.gateapi.io/api2/1/ticker/tonc_usdt
  623. https://data.gateapi.io/api2/1/ticker/kimchi_usdt
  624. https://data.gateapi.io/api2/1/ticker/kimchi_eth
  625. https://data.gateapi.io/api2/1/ticker/kton_usdt
  626. https://data.gateapi.io/api2/1/ticker/ring_usdt
  627. https://data.gateapi.io/api2/1/ticker/ring_eth
  628. https://data.gateapi.io/api2/1/ticker/mini_usdt
  629. https://data.gateapi.io/api2/1/ticker/mini_eth
  630. https://data.gateapi.io/api2/1/ticker/cream_usdt
  631. https://data.gateapi.io/api2/1/ticker/cream_eth
  632. https://data.gateapi.io/api2/1/ticker/jgn_usdt
  633. https://data.gateapi.io/api2/1/ticker/jgn_eth
  634. https://data.gateapi.io/api2/1/ticker/dego_usdt
  635. https://data.gateapi.io/api2/1/ticker/rfuel_usdt
  636. https://data.gateapi.io/api2/1/ticker/sfg_usdt
  637. https://data.gateapi.io/api2/1/ticker/nest_usdt
  638. https://data.gateapi.io/api2/1/ticker/nest_eth
  639. https://data.gateapi.io/api2/1/ticker/cvaultcore_eth
  640. https://data.gateapi.io/api2/1/ticker/cvaultcore_usdt
  641. https://data.gateapi.io/api2/1/ticker/core_usdt
  642. https://data.gateapi.io/api2/1/ticker/near_eth
  643. https://data.gateapi.io/api2/1/ticker/near_usdt
  644. https://data.gateapi.io/api2/1/ticker/stake_usdt
  645. https://data.gateapi.io/api2/1/ticker/tru_usdt
  646. https://data.gateapi.io/api2/1/ticker/tru_eth
  647. https://data.gateapi.io/api2/1/ticker/rose_usdt
  648. https://data.gateapi.io/api2/1/ticker/rose_eth
  649. https://data.gateapi.io/api2/1/ticker/badger_usdt
  650. https://data.gateapi.io/api2/1/ticker/badger_eth
  651. https://data.gateapi.io/api2/1/ticker/cover_usdt
  652. https://data.gateapi.io/api2/1/ticker/cover_eth
  653. https://data.gateapi.io/api2/1/ticker/glm_usdt
  654. https://data.gateapi.io/api2/1/ticker/glm_eth
  655. https://data.gateapi.io/api2/1/ticker/pickle_usdt
  656. https://data.gateapi.io/api2/1/ticker/pickle_eth
  657. https://data.gateapi.io/api2/1/ticker/hegic_usdt
  658. https://data.gateapi.io/api2/1/ticker/hegic_eth
  659. https://data.gateapi.io/api2/1/ticker/gth_usdt
  660. https://data.gateapi.io/api2/1/ticker/gth_eth
  661. https://data.gateapi.io/api2/1/ticker/dusk_usdt
  662. https://data.gateapi.io/api2/1/ticker/dusk_eth
  663. https://data.gateapi.io/api2/1/ticker/88mph_usdt
  664. https://data.gateapi.io/api2/1/ticker/88mph_eth
  665. https://data.gateapi.io/api2/1/ticker/unfi_usdt
  666. https://data.gateapi.io/api2/1/ticker/unfi_eth
  667. https://data.gateapi.io/api2/1/ticker/flm_usdt
  668. https://data.gateapi.io/api2/1/ticker/flm_eth
  669. https://data.gateapi.io/api2/1/ticker/ghst_usdt
  670. https://data.gateapi.io/api2/1/ticker/ghst_eth
  671. https://data.gateapi.io/api2/1/ticker/loon_usdt
  672. https://data.gateapi.io/api2/1/ticker/loon_eth
  673. https://data.gateapi.io/api2/1/ticker/ach_usdt
  674. https://data.gateapi.io/api2/1/ticker/ach_eth
  675. https://data.gateapi.io/api2/1/ticker/duck_usdt
  676. https://data.gateapi.io/api2/1/ticker/duck_eth
  677. https://data.gateapi.io/api2/1/ticker/grt_usdt
  678. https://data.gateapi.io/api2/1/ticker/grt_eth
  679. https://data.gateapi.io/api2/1/ticker/esd_usdt
  680. https://data.gateapi.io/api2/1/ticker/esd_eth
  681. https://data.gateapi.io/api2/1/ticker/aleph_usdt
  682. https://data.gateapi.io/api2/1/ticker/aleph_eth
  683. https://data.gateapi.io/api2/1/ticker/frax_usdt
  684. https://data.gateapi.io/api2/1/ticker/frax_eth
  685. https://data.gateapi.io/api2/1/ticker/fxs_usdt
  686. https://data.gateapi.io/api2/1/ticker/fxs_eth
  687. https://data.gateapi.io/api2/1/ticker/boring_usdt
  688. https://data.gateapi.io/api2/1/ticker/boring_eth
  689. https://data.gateapi.io/api2/1/ticker/bac_usdt
  690. https://data.gateapi.io/api2/1/ticker/bac_eth
  691. https://data.gateapi.io/api2/1/ticker/bas_usdt
  692. https://data.gateapi.io/api2/1/ticker/bas_eth
  693. https://data.gateapi.io/api2/1/ticker/lon_usdt
  694. https://data.gateapi.io/api2/1/ticker/lon_eth
  695. https://data.gateapi.io/api2/1/ticker/maha_usdt
  696. https://data.gateapi.io/api2/1/ticker/maha_eth
  697. https://data.gateapi.io/api2/1/ticker/wozx_usdt
  698. https://data.gateapi.io/api2/1/ticker/wozx_eth
  699. https://data.gateapi.io/api2/1/ticker/far_usdt
  700. https://data.gateapi.io/api2/1/ticker/far_eth
  701. https://data.gateapi.io/api2/1/ticker/pond_usdt
  702. https://data.gateapi.io/api2/1/ticker/pond_eth
  703. https://data.gateapi.io/api2/1/ticker/1inch_usdt
  704. https://data.gateapi.io/api2/1/ticker/1inch_eth
  705. https://data.gateapi.io/api2/1/ticker/dsd_usdt
  706. https://data.gateapi.io/api2/1/ticker/dsd_eth
  707. https://data.gateapi.io/api2/1/ticker/octo_usdt
  708. https://data.gateapi.io/api2/1/ticker/octo_eth
  709. https://data.gateapi.io/api2/1/ticker/share_usdt
  710. https://data.gateapi.io/api2/1/ticker/share_eth
  711. https://data.gateapi.io/api2/1/ticker/lina_usdt
  712. https://data.gateapi.io/api2/1/ticker/lina_eth
  713. https://data.gateapi.io/api2/1/ticker/onc_usdt
  714. https://data.gateapi.io/api2/1/ticker/onc_eth
  715. https://data.gateapi.io/api2/1/ticker/ons_usdt
  716. https://data.gateapi.io/api2/1/ticker/ons_eth
  717. https://data.gateapi.io/api2/1/ticker/zks_usdt
  718. https://data.gateapi.io/api2/1/ticker/zks_eth
  719. https://data.gateapi.io/api2/1/ticker/frog_usdt
  720. https://data.gateapi.io/api2/1/ticker/frog_eth
  721. https://data.gateapi.io/api2/1/ticker/mis_usdt
  722. https://data.gateapi.io/api2/1/ticker/mis_eth
  723. https://data.gateapi.io/api2/1/ticker/white_usdt
  724. https://data.gateapi.io/api2/1/ticker/white_eth
  725. https://data.gateapi.io/api2/1/ticker/onx_usdt
  726. https://data.gateapi.io/api2/1/ticker/onx_eth
  727. https://data.gateapi.io/api2/1/ticker/matic_usdt
  728. https://data.gateapi.io/api2/1/ticker/matic_eth
  729. https://data.gateapi.io/api2/1/ticker/matic_usdc
  730. https://data.gateapi.io/api2/1/ticker/rif_usdt
  731. https://data.gateapi.io/api2/1/ticker/rif_eth
  732. https://data.gateapi.io/api2/1/ticker/cru_usdt
  733. https://data.gateapi.io/api2/1/ticker/cru_eth
  734. https://data.gateapi.io/api2/1/ticker/props_usdt
  735. https://data.gateapi.io/api2/1/ticker/props_eth
  736. https://data.gateapi.io/api2/1/ticker/bifif_usdt
  737. https://data.gateapi.io/api2/1/ticker/bifif_eth
  738. https://data.gateapi.io/api2/1/ticker/layer_usdt
  739. https://data.gateapi.io/api2/1/ticker/layer_eth
  740. https://data.gateapi.io/api2/1/ticker/yfdai_usdt
  741. https://data.gateapi.io/api2/1/ticker/yfdai_eth
  742. https://data.gateapi.io/api2/1/ticker/qnt_usdt
  743. https://data.gateapi.io/api2/1/ticker/qnt_eth
  744. https://data.gateapi.io/api2/1/ticker/bfc_usdt
  745. https://data.gateapi.io/api2/1/ticker/bfc_eth
  746. https://data.gateapi.io/api2/1/ticker/stmx_usdt
  747. https://data.gateapi.io/api2/1/ticker/stmx_eth
  748. https://data.gateapi.io/api2/1/ticker/room_usdt
  749. https://data.gateapi.io/api2/1/ticker/room_eth
  750. https://data.gateapi.io/api2/1/ticker/gdao_usdt
  751. https://data.gateapi.io/api2/1/ticker/gdao_eth
  752. https://data.gateapi.io/api2/1/ticker/unistake_usdt
  753. https://data.gateapi.io/api2/1/ticker/unistake_eth
  754. https://data.gateapi.io/api2/1/ticker/bond_usdt
  755. https://data.gateapi.io/api2/1/ticker/bond_eth
  756. https://data.gateapi.io/api2/1/ticker/frin_usdt
  757. https://data.gateapi.io/api2/1/ticker/fxf_usdt
  758. https://data.gateapi.io/api2/1/ticker/fxf_eth
  759. https://data.gateapi.io/api2/1/ticker/crbn_usdt
  760. https://data.gateapi.io/api2/1/ticker/crbn_eth
  761. https://data.gateapi.io/api2/1/ticker/torn_usdt
  762. https://data.gateapi.io/api2/1/ticker/torn_eth
  763. https://data.gateapi.io/api2/1/ticker/strong_usdt
  764. https://data.gateapi.io/api2/1/ticker/strong_eth
  765. https://data.gateapi.io/api2/1/ticker/umb_usdt
  766. https://data.gateapi.io/api2/1/ticker/umb_eth
  767. https://data.gateapi.io/api2/1/ticker/nux_usdt
  768. https://data.gateapi.io/api2/1/ticker/nux_eth
  769. https://data.gateapi.io/api2/1/ticker/jasmy_usdt
  770. https://data.gateapi.io/api2/1/ticker/jasmy_eth
  771. https://data.gateapi.io/api2/1/ticker/bel_usdt
  772. https://data.gateapi.io/api2/1/ticker/bel_eth
  773. https://data.gateapi.io/api2/1/ticker/rndr_usdt
  774. https://data.gateapi.io/api2/1/ticker/rndr_eth
  775. https://data.gateapi.io/api2/1/ticker/zee_usdt
  776. https://data.gateapi.io/api2/1/ticker/zee_eth
  777. https://data.gateapi.io/api2/1/ticker/kono_usdt
  778. https://data.gateapi.io/api2/1/ticker/kono_eth
  779. https://data.gateapi.io/api2/1/ticker/polc_usdt
  780. https://data.gateapi.io/api2/1/ticker/polc_eth
  781. https://data.gateapi.io/api2/1/ticker/bcug_usdt
  782. https://data.gateapi.io/api2/1/ticker/bcug_eth
  783. https://data.gateapi.io/api2/1/ticker/xed_usdt
  784. https://data.gateapi.io/api2/1/ticker/xed_eth
  785. https://data.gateapi.io/api2/1/ticker/pkf_usdt
  786. https://data.gateapi.io/api2/1/ticker/pkf_eth
  787. https://data.gateapi.io/api2/1/ticker/rly_usdt
  788. https://data.gateapi.io/api2/1/ticker/rly_eth
  789. https://data.gateapi.io/api2/1/ticker/ustc_usdt
  790. https://data.gateapi.io/api2/1/ticker/anc_usdt
  791. https://data.gateapi.io/api2/1/ticker/anc_eth
  792. https://data.gateapi.io/api2/1/ticker/pnt_usdt
  793. https://data.gateapi.io/api2/1/ticker/pnt_eth
  794. https://data.gateapi.io/api2/1/ticker/dafi_usdt
  795. https://data.gateapi.io/api2/1/ticker/dafi_eth
  796. https://data.gateapi.io/api2/1/ticker/chain_usdt
  797. https://data.gateapi.io/api2/1/ticker/chain_eth
  798. https://data.gateapi.io/api2/1/ticker/fire_usdt
  799. https://data.gateapi.io/api2/1/ticker/fire_eth
  800. https://data.gateapi.io/api2/1/ticker/math_usdt
  801. https://data.gateapi.io/api2/1/ticker/math_eth
  802. https://data.gateapi.io/api2/1/ticker/tara_usdt
  803. https://data.gateapi.io/api2/1/ticker/tara_eth
  804. https://data.gateapi.io/api2/1/ticker/tara_btc
  805. https://data.gateapi.io/api2/1/ticker/vsp_usdt
  806. https://data.gateapi.io/api2/1/ticker/vsp_eth
  807. https://data.gateapi.io/api2/1/ticker/pcnt_usdt
  808. https://data.gateapi.io/api2/1/ticker/pcnt_eth
  809. https://data.gateapi.io/api2/1/ticker/arcx_usdt
  810. https://data.gateapi.io/api2/1/ticker/arcx_eth
  811. https://data.gateapi.io/api2/1/ticker/dg_usdt
  812. https://data.gateapi.io/api2/1/ticker/dg_eth
  813. https://data.gateapi.io/api2/1/ticker/dora_usdt
  814. https://data.gateapi.io/api2/1/ticker/dora_eth
  815. https://data.gateapi.io/api2/1/ticker/spi_usdt
  816. https://data.gateapi.io/api2/1/ticker/spi_eth
  817. https://data.gateapi.io/api2/1/ticker/bank_usdt
  818. https://data.gateapi.io/api2/1/ticker/bank_eth
  819. https://data.gateapi.io/api2/1/ticker/dent_usdt
  820. https://data.gateapi.io/api2/1/ticker/dent_eth
  821. https://data.gateapi.io/api2/1/ticker/atd_usdt
  822. https://data.gateapi.io/api2/1/ticker/shr_usdt
  823. https://data.gateapi.io/api2/1/ticker/shr_eth
  824. https://data.gateapi.io/api2/1/ticker/conv_usdt
  825. https://data.gateapi.io/api2/1/ticker/conv_eth
  826. https://data.gateapi.io/api2/1/ticker/tidal_usdt
  827. https://data.gateapi.io/api2/1/ticker/tidal_eth
  828. https://data.gateapi.io/api2/1/ticker/k21_usdt
  829. https://data.gateapi.io/api2/1/ticker/k21_eth
  830. https://data.gateapi.io/api2/1/ticker/labs_usdt
  831. https://data.gateapi.io/api2/1/ticker/labs_eth
  832. https://data.gateapi.io/api2/1/ticker/oddz_usdt
  833. https://data.gateapi.io/api2/1/ticker/oddz_eth
  834. https://data.gateapi.io/api2/1/ticker/ogv_usdt
  835. https://data.gateapi.io/api2/1/ticker/ogn_usdt
  836. https://data.gateapi.io/api2/1/ticker/ogn_eth
  837. https://data.gateapi.io/api2/1/ticker/ess_usdt
  838. https://data.gateapi.io/api2/1/ticker/ess_eth
  839. https://data.gateapi.io/api2/1/ticker/bles_usdt
  840. https://data.gateapi.io/api2/1/ticker/bles_eth
  841. https://data.gateapi.io/api2/1/ticker/ovr_usdt
  842. https://data.gateapi.io/api2/1/ticker/mrch_usdt
  843. https://data.gateapi.io/api2/1/ticker/mrch_eth
  844. https://data.gateapi.io/api2/1/ticker/hget_usdt
  845. https://data.gateapi.io/api2/1/ticker/hget_eth
  846. https://data.gateapi.io/api2/1/ticker/dsla_usdt
  847. https://data.gateapi.io/api2/1/ticker/dsla_eth
  848. https://data.gateapi.io/api2/1/ticker/noia_usdt
  849. https://data.gateapi.io/api2/1/ticker/noia_eth
  850. https://data.gateapi.io/api2/1/ticker/revv_usdt
  851. https://data.gateapi.io/api2/1/ticker/revv_eth
  852. https://data.gateapi.io/api2/1/ticker/cook_usdt
  853. https://data.gateapi.io/api2/1/ticker/cook_eth
  854. https://data.gateapi.io/api2/1/ticker/axs_usdt
  855. https://data.gateapi.io/api2/1/ticker/axs_eth
  856. https://data.gateapi.io/api2/1/ticker/cfi_usdt
  857. https://data.gateapi.io/api2/1/ticker/cfi_eth
  858. https://data.gateapi.io/api2/1/ticker/mtl_usdt
  859. https://data.gateapi.io/api2/1/ticker/mtl_eth
  860. https://data.gateapi.io/api2/1/ticker/alcx_usdt
  861. https://data.gateapi.io/api2/1/ticker/alcx_eth
  862. https://data.gateapi.io/api2/1/ticker/fst_usdt
  863. https://data.gateapi.io/api2/1/ticker/fst_eth
  864. https://data.gateapi.io/api2/1/ticker/rai_usdt
  865. https://data.gateapi.io/api2/1/ticker/rai_eth
  866. https://data.gateapi.io/api2/1/ticker/ame_usdt
  867. https://data.gateapi.io/api2/1/ticker/ame_eth
  868. https://data.gateapi.io/api2/1/ticker/nmr_usdt
  869. https://data.gateapi.io/api2/1/ticker/nmr_eth
  870. https://data.gateapi.io/api2/1/ticker/stn_usdt
  871. https://data.gateapi.io/api2/1/ticker/stn_eth
  872. https://data.gateapi.io/api2/1/ticker/pmon_usdt
  873. https://data.gateapi.io/api2/1/ticker/pmon_eth
  874. https://data.gateapi.io/api2/1/ticker/shopx_usdt
  875. https://data.gateapi.io/api2/1/ticker/shopx_eth
  876. https://data.gateapi.io/api2/1/ticker/marsh_usdt
  877. https://data.gateapi.io/api2/1/ticker/marsh_eth
  878. https://data.gateapi.io/api2/1/ticker/shft_usdt
  879. https://data.gateapi.io/api2/1/ticker/shft_eth
  880. https://data.gateapi.io/api2/1/ticker/insur_usdt
  881. https://data.gateapi.io/api2/1/ticker/insur_eth
  882. https://data.gateapi.io/api2/1/ticker/rbc_usdt
  883. https://data.gateapi.io/api2/1/ticker/rbc_eth
  884. https://data.gateapi.io/api2/1/ticker/xcur_usdt
  885. https://data.gateapi.io/api2/1/ticker/xcur_eth
  886. https://data.gateapi.io/api2/1/ticker/vai_usdt
  887. https://data.gateapi.io/api2/1/ticker/orbs_usdt
  888. https://data.gateapi.io/api2/1/ticker/orbs_eth
  889. https://data.gateapi.io/api2/1/ticker/fei_usdt
  890. https://data.gateapi.io/api2/1/ticker/fei_eth
  891. https://data.gateapi.io/api2/1/ticker/tribe_usdt
  892. https://data.gateapi.io/api2/1/ticker/tribe_eth
  893. https://data.gateapi.io/api2/1/ticker/xend_usdt
  894. https://data.gateapi.io/api2/1/ticker/xend_eth
  895. https://data.gateapi.io/api2/1/ticker/key_usdt
  896. https://data.gateapi.io/api2/1/ticker/key_eth
  897. https://data.gateapi.io/api2/1/ticker/adx_usdt
  898. https://data.gateapi.io/api2/1/ticker/adx_eth
  899. https://data.gateapi.io/api2/1/ticker/hifi_usdt
  900. https://data.gateapi.io/api2/1/ticker/hifi_eth
  901. https://data.gateapi.io/api2/1/ticker/suku_usdt
  902. https://data.gateapi.io/api2/1/ticker/suku_eth
  903. https://data.gateapi.io/api2/1/ticker/suku_btc
  904. https://data.gateapi.io/api2/1/ticker/xor_usdt
  905. https://data.gateapi.io/api2/1/ticker/lto_usdt
  906. https://data.gateapi.io/api2/1/ticker/lto_eth
  907. https://data.gateapi.io/api2/1/ticker/bepro_usdt
  908. https://data.gateapi.io/api2/1/ticker/bepro_eth
  909. https://data.gateapi.io/api2/1/ticker/totm_usdt
  910. https://data.gateapi.io/api2/1/ticker/sake_usdt
  911. https://data.gateapi.io/api2/1/ticker/sake_eth
  912. https://data.gateapi.io/api2/1/ticker/bly_usdt
  913. https://data.gateapi.io/api2/1/ticker/bly_btc
  914. https://data.gateapi.io/api2/1/ticker/aioz_usdt
  915. https://data.gateapi.io/api2/1/ticker/aioz_eth
  916. https://data.gateapi.io/api2/1/ticker/lkr_usdt
  917. https://data.gateapi.io/api2/1/ticker/lkr_eth
  918. https://data.gateapi.io/api2/1/ticker/tshp_usdt
  919. https://data.gateapi.io/api2/1/ticker/pnk_usdt
  920. https://data.gateapi.io/api2/1/ticker/pnk_eth
  921. https://data.gateapi.io/api2/1/ticker/boson_usdt
  922. https://data.gateapi.io/api2/1/ticker/boson_eth
  923. https://data.gateapi.io/api2/1/ticker/raze_usdt
  924. https://data.gateapi.io/api2/1/ticker/raze_eth
  925. https://data.gateapi.io/api2/1/ticker/l3p_usdt
  926. https://data.gateapi.io/api2/1/ticker/l3p_eth
  927. https://data.gateapi.io/api2/1/ticker/duck2_usdt
  928. https://data.gateapi.io/api2/1/ticker/duck2_eth
  929. https://data.gateapi.io/api2/1/ticker/rfox_usdt
  930. https://data.gateapi.io/api2/1/ticker/rfox_eth
  931. https://data.gateapi.io/api2/1/ticker/cel_usdt
  932. https://data.gateapi.io/api2/1/ticker/cel_eth
  933. https://data.gateapi.io/api2/1/ticker/ktn_usdt
  934. https://data.gateapi.io/api2/1/ticker/ktn_eth
  935. https://data.gateapi.io/api2/1/ticker/ddim_usdt
  936. https://data.gateapi.io/api2/1/ticker/ddim_eth
  937. https://data.gateapi.io/api2/1/ticker/mofi_usdt
  938. https://data.gateapi.io/api2/1/ticker/fly_usdt
  939. https://data.gateapi.io/api2/1/ticker/multi_usdt
  940. https://data.gateapi.io/api2/1/ticker/multi_eth
  941. https://data.gateapi.io/api2/1/ticker/tlm_usdt
  942. https://data.gateapi.io/api2/1/ticker/tlm_eth
  943. https://data.gateapi.io/api2/1/ticker/dfl_usdt
  944. https://data.gateapi.io/api2/1/ticker/ddos_usdt
  945. https://data.gateapi.io/api2/1/ticker/dhv_usdt
  946. https://data.gateapi.io/api2/1/ticker/dhv_eth
  947. https://data.gateapi.io/api2/1/ticker/gs_usdt
  948. https://data.gateapi.io/api2/1/ticker/gs_eth
  949. https://data.gateapi.io/api2/1/ticker/shib_usdt
  950. https://data.gateapi.io/api2/1/ticker/shib_usdc
  951. https://data.gateapi.io/api2/1/ticker/rage_usdt
  952. https://data.gateapi.io/api2/1/ticker/ram_usdt
  953. https://data.gateapi.io/api2/1/ticker/akita_usdt
  954. https://data.gateapi.io/api2/1/ticker/cti_usdt
  955. https://data.gateapi.io/api2/1/ticker/cti_eth
  956. https://data.gateapi.io/api2/1/ticker/kif_usdt
  957. https://data.gateapi.io/api2/1/ticker/kif_eth
  958. https://data.gateapi.io/api2/1/ticker/reef_usdt
  959. https://data.gateapi.io/api2/1/ticker/reef_eth
  960. https://data.gateapi.io/api2/1/ticker/bird_usdt
  961. https://data.gateapi.io/api2/1/ticker/bird_eth
  962. https://data.gateapi.io/api2/1/ticker/maps_usdt
  963. https://data.gateapi.io/api2/1/ticker/maps_eth
  964. https://data.gateapi.io/api2/1/ticker/mdf_usdt
  965. https://data.gateapi.io/api2/1/ticker/mdf_eth
  966. https://data.gateapi.io/api2/1/ticker/mir_usdt
  967. https://data.gateapi.io/api2/1/ticker/mir_eth
  968. https://data.gateapi.io/api2/1/ticker/sfil_usdt
  969. https://data.gateapi.io/api2/1/ticker/zcn_usdt
  970. https://data.gateapi.io/api2/1/ticker/zcn_eth
  971. https://data.gateapi.io/api2/1/ticker/mars_usdt
  972. https://data.gateapi.io/api2/1/ticker/mars_eth
  973. https://data.gateapi.io/api2/1/ticker/bao_usdt
  974. https://data.gateapi.io/api2/1/ticker/bao_eth
  975. https://data.gateapi.io/api2/1/ticker/lpt_usdt
  976. https://data.gateapi.io/api2/1/ticker/lpt_eth
  977. https://data.gateapi.io/api2/1/ticker/dis_usdt
  978. https://data.gateapi.io/api2/1/ticker/dis_eth
  979. https://data.gateapi.io/api2/1/ticker/dexe_usdt
  980. https://data.gateapi.io/api2/1/ticker/dexe_eth
  981. https://data.gateapi.io/api2/1/ticker/pbtc35a_usdt
  982. https://data.gateapi.io/api2/1/ticker/pbtc35a_eth
  983. https://data.gateapi.io/api2/1/ticker/orn_usdt
  984. https://data.gateapi.io/api2/1/ticker/orn_eth
  985. https://data.gateapi.io/api2/1/ticker/nord_usdt
  986. https://data.gateapi.io/api2/1/ticker/nord_eth
  987. https://data.gateapi.io/api2/1/ticker/dao_usdt
  988. https://data.gateapi.io/api2/1/ticker/dao_eth
  989. https://data.gateapi.io/api2/1/ticker/flow_usdt
  990. https://data.gateapi.io/api2/1/ticker/flow_eth
  991. https://data.gateapi.io/api2/1/ticker/blt_usdt
  992. https://data.gateapi.io/api2/1/ticker/alpha_usdt
  993. https://data.gateapi.io/api2/1/ticker/alpha_eth
  994. https://data.gateapi.io/api2/1/ticker/api3_usdt
  995. https://data.gateapi.io/api2/1/ticker/api3_eth
  996. https://data.gateapi.io/api2/1/ticker/fin_usdt
  997. https://data.gateapi.io/api2/1/ticker/skl_usdt
  998. https://data.gateapi.io/api2/1/ticker/prq_usdt
  999. https://data.gateapi.io/api2/1/ticker/front_usdt
  1000. https://data.gateapi.io/api2/1/ticker/front_try
  1001. https://data.gateapi.io/api2/1/ticker/front_eth
  1002. https://data.gateapi.io/api2/1/ticker/inj_usdt
  1003. https://data.gateapi.io/api2/1/ticker/inj_eth
  1004. https://data.gateapi.io/api2/1/ticker/alpa_usdt
  1005. https://data.gateapi.io/api2/1/ticker/alpa_eth
  1006. https://data.gateapi.io/api2/1/ticker/roobee_usdt
  1007. https://data.gateapi.io/api2/1/ticker/nsure_usdt
  1008. https://data.gateapi.io/api2/1/ticker/nsure_eth
  1009. https://data.gateapi.io/api2/1/ticker/kp3r_usdt
  1010. https://data.gateapi.io/api2/1/ticker/kp3r_eth
  1011. https://data.gateapi.io/api2/1/ticker/woo_usdt
  1012. https://data.gateapi.io/api2/1/ticker/woo_eth
  1013. https://data.gateapi.io/api2/1/ticker/hyve_usdt
  1014. https://data.gateapi.io/api2/1/ticker/hyve_eth
  1015. https://data.gateapi.io/api2/1/ticker/kfc_usdt
  1016. https://data.gateapi.io/api2/1/ticker/lever_usdt
  1017. https://data.gateapi.io/api2/1/ticker/ramp_usdt
  1018. https://data.gateapi.io/api2/1/ticker/sylo_usdt
  1019. https://data.gateapi.io/api2/1/ticker/rari_eth
  1020. https://data.gateapi.io/api2/1/ticker/rari_usdt
  1021. https://data.gateapi.io/api2/1/ticker/dvp_usdt
  1022. https://data.gateapi.io/api2/1/ticker/dvp_eth
  1023. https://data.gateapi.io/api2/1/ticker/mph_usdt
  1024. https://data.gateapi.io/api2/1/ticker/mph_eth
  1025. https://data.gateapi.io/api2/1/ticker/df_usdt
  1026. https://data.gateapi.io/api2/1/ticker/df_eth
  1027. https://data.gateapi.io/api2/1/ticker/cvp_usdt
  1028. https://data.gateapi.io/api2/1/ticker/cvp_eth
  1029. https://data.gateapi.io/api2/1/ticker/value_usdt
  1030. https://data.gateapi.io/api2/1/ticker/value_eth
  1031. https://data.gateapi.io/api2/1/ticker/uma_usdt
  1032. https://data.gateapi.io/api2/1/ticker/yfii_usdt
  1033. https://data.gateapi.io/api2/1/ticker/yfii_eth
  1034. https://data.gateapi.io/api2/1/ticker/swap_usdt
  1035. https://data.gateapi.io/api2/1/ticker/swap_eth
  1036. https://data.gateapi.io/api2/1/ticker/sxp_eth
  1037. https://data.gateapi.io/api2/1/ticker/bal_usdt
  1038. https://data.gateapi.io/api2/1/ticker/bal_eth
  1039. https://data.gateapi.io/api2/1/ticker/band_usdt
  1040. https://data.gateapi.io/api2/1/ticker/band_eth
  1041. https://data.gateapi.io/api2/1/ticker/ast_usdt
  1042. https://data.gateapi.io/api2/1/ticker/ast_eth
  1043. https://data.gateapi.io/api2/1/ticker/troy_usdt
  1044. https://data.gateapi.io/api2/1/ticker/troy_eth
  1045. https://data.gateapi.io/api2/1/ticker/om_usdt
  1046. https://data.gateapi.io/api2/1/ticker/om_eth
  1047. https://data.gateapi.io/api2/1/ticker/spa_usdt
  1048. https://data.gateapi.io/api2/1/ticker/spa_eth
  1049. https://data.gateapi.io/api2/1/ticker/akro_usdt
  1050. https://data.gateapi.io/api2/1/ticker/akro_eth
  1051. https://data.gateapi.io/api2/1/ticker/for_usdt
  1052. https://data.gateapi.io/api2/1/ticker/for_eth
  1053. https://data.gateapi.io/api2/1/ticker/credit_usdt
  1054. https://data.gateapi.io/api2/1/ticker/credit_eth
  1055. https://data.gateapi.io/api2/1/ticker/dia_usdt
  1056. https://data.gateapi.io/api2/1/ticker/dia_eth
  1057. https://data.gateapi.io/api2/1/ticker/axis_usdt
  1058. https://data.gateapi.io/api2/1/ticker/axis_eth
  1059. https://data.gateapi.io/api2/1/ticker/trb_usdt
  1060. https://data.gateapi.io/api2/1/ticker/trb_eth
  1061. https://data.gateapi.io/api2/1/ticker/lien_usdt
  1062. https://data.gateapi.io/api2/1/ticker/lien_eth
  1063. https://data.gateapi.io/api2/1/ticker/pearl_usdt
  1064. https://data.gateapi.io/api2/1/ticker/klv_usdt
  1065. https://data.gateapi.io/api2/1/ticker/klv_eth
  1066. https://data.gateapi.io/api2/1/ticker/nft_usdt
  1067. https://data.gateapi.io/api2/1/ticker/corn_usdt
  1068. https://data.gateapi.io/api2/1/ticker/slm_usdt
  1069. https://data.gateapi.io/api2/1/ticker/tai_usdt
  1070. https://data.gateapi.io/api2/1/ticker/crt_usdt
  1071. https://data.gateapi.io/api2/1/ticker/jfi_usdt
  1072. https://data.gateapi.io/api2/1/ticker/mta_usdt
  1073. https://data.gateapi.io/api2/1/ticker/mta_eth
  1074. https://data.gateapi.io/api2/1/ticker/yfi_usdt
  1075. https://data.gateapi.io/api2/1/ticker/yfi_eth
  1076. https://data.gateapi.io/api2/1/ticker/kin_usdt
  1077. https://data.gateapi.io/api2/1/ticker/dka_usdt
  1078. https://data.gateapi.io/api2/1/ticker/dka_eth
  1079. https://data.gateapi.io/api2/1/ticker/ren_usdt
  1080. https://data.gateapi.io/api2/1/ticker/ren_eth
  1081. https://data.gateapi.io/api2/1/ticker/dos_usdt
  1082. https://data.gateapi.io/api2/1/ticker/suter_usdt
  1083. https://data.gateapi.io/api2/1/ticker/srm_usdt
  1084. https://data.gateapi.io/api2/1/ticker/srm_eth
  1085. https://data.gateapi.io/api2/1/ticker/jst_usdt
  1086. https://data.gateapi.io/api2/1/ticker/lbk_usdt
  1087. https://data.gateapi.io/api2/1/ticker/asd_usdt
  1088. https://data.gateapi.io/api2/1/ticker/swop_usdt
  1089. https://data.gateapi.io/api2/1/ticker/swop_eth
  1090. https://data.gateapi.io/api2/1/ticker/enno_usdt
  1091. https://data.gateapi.io/api2/1/ticker/nsbt_usdt
  1092. https://data.gateapi.io/api2/1/ticker/nsbt_btc
  1093. https://data.gateapi.io/api2/1/ticker/nsbt_eth
  1094. https://data.gateapi.io/api2/1/ticker/west_usdt
  1095. https://data.gateapi.io/api2/1/ticker/west_eth
  1096. https://data.gateapi.io/api2/1/ticker/fio_usdt
  1097. https://data.gateapi.io/api2/1/ticker/fio_eth
  1098. https://data.gateapi.io/api2/1/ticker/hydra_usdt
  1099. https://data.gateapi.io/api2/1/ticker/tlos_usdt
  1100. https://data.gateapi.io/api2/1/ticker/tlos_btc
  1101. https://data.gateapi.io/api2/1/ticker/olt_usdt
  1102. https://data.gateapi.io/api2/1/ticker/xem_eth
  1103. https://data.gateapi.io/api2/1/ticker/xem_usdt
  1104. https://data.gateapi.io/api2/1/ticker/xem_btc
  1105. https://data.gateapi.io/api2/1/ticker/xym_usdt
  1106. https://data.gateapi.io/api2/1/ticker/xym_eth
  1107. https://data.gateapi.io/api2/1/ticker/alaya_usdt
  1108. https://data.gateapi.io/api2/1/ticker/alaya_eth
  1109. https://data.gateapi.io/api2/1/ticker/lat_usdt
  1110. https://data.gateapi.io/api2/1/ticker/dhx_usdt
  1111. https://data.gateapi.io/api2/1/ticker/stc_usdt
  1112. https://data.gateapi.io/api2/1/ticker/icp_usdt
  1113. https://data.gateapi.io/api2/1/ticker/icp_eth
  1114. https://data.gateapi.io/api2/1/ticker/ewt_usdt
  1115. https://data.gateapi.io/api2/1/ticker/ewt_eth
  1116. https://data.gateapi.io/api2/1/ticker/hnt_usdt
  1117. https://data.gateapi.io/api2/1/ticker/hnt_eth
  1118. https://data.gateapi.io/api2/1/ticker/angle_usdt
  1119. https://data.gateapi.io/api2/1/ticker/mimir_usdt
  1120. https://data.gateapi.io/api2/1/ticker/mimir_eth
  1121. https://data.gateapi.io/api2/1/ticker/env_usdt
  1122. https://data.gateapi.io/api2/1/ticker/xrune_usdt
  1123. https://data.gateapi.io/api2/1/ticker/pixel_usdt
  1124. https://data.gateapi.io/api2/1/ticker/gov_usdt
  1125. https://data.gateapi.io/api2/1/ticker/dose_usdt
  1126. https://data.gateapi.io/api2/1/ticker/dose_eth
  1127. https://data.gateapi.io/api2/1/ticker/crpt_usdt
  1128. https://data.gateapi.io/api2/1/ticker/crpt_eth
  1129. https://data.gateapi.io/api2/1/ticker/moov_usdt
  1130. https://data.gateapi.io/api2/1/ticker/ufo_usdt
  1131. https://data.gateapi.io/api2/1/ticker/vee_usdt
  1132. https://data.gateapi.io/api2/1/ticker/gm_usdt
  1133. https://data.gateapi.io/api2/1/ticker/ace_usdt
  1134. https://data.gateapi.io/api2/1/ticker/life_usdt
  1135. https://data.gateapi.io/api2/1/ticker/life_eth
  1136. https://data.gateapi.io/api2/1/ticker/nfty_usdt
  1137. https://data.gateapi.io/api2/1/ticker/nfty_eth
  1138. https://data.gateapi.io/api2/1/ticker/adapad_usdt
  1139. https://data.gateapi.io/api2/1/ticker/phm_usdt
  1140. https://data.gateapi.io/api2/1/ticker/yin_usdt
  1141. https://data.gateapi.io/api2/1/ticker/yin_eth
  1142. https://data.gateapi.io/api2/1/ticker/bcmc_usdt
  1143. https://data.gateapi.io/api2/1/ticker/sclp_usdt
  1144. https://data.gateapi.io/api2/1/ticker/sclp_eth
  1145. https://data.gateapi.io/api2/1/ticker/vera_usdt
  1146. https://data.gateapi.io/api2/1/ticker/vera_eth
  1147. https://data.gateapi.io/api2/1/ticker/floki_usdt
  1148. https://data.gateapi.io/api2/1/ticker/floki_eth
  1149. https://data.gateapi.io/api2/1/ticker/floki_btc
  1150. https://data.gateapi.io/api2/1/ticker/dvi_usdt
  1151. https://data.gateapi.io/api2/1/ticker/cirus_usdt
  1152. https://data.gateapi.io/api2/1/ticker/talk_usdt
  1153. https://data.gateapi.io/api2/1/ticker/dydx_usdt
  1154. https://data.gateapi.io/api2/1/ticker/dydx_eth
  1155. https://data.gateapi.io/api2/1/ticker/xyo_usdt
  1156. https://data.gateapi.io/api2/1/ticker/xyo_eth
  1157. https://data.gateapi.io/api2/1/ticker/rgt_usdt
  1158. https://data.gateapi.io/api2/1/ticker/rgt_eth
  1159. https://data.gateapi.io/api2/1/ticker/sku_usdt
  1160. https://data.gateapi.io/api2/1/ticker/agld_usdt
  1161. https://data.gateapi.io/api2/1/ticker/agld_eth
  1162. https://data.gateapi.io/api2/1/ticker/spo_usdt
  1163. https://data.gateapi.io/api2/1/ticker/dognft_usdt
  1164. https://data.gateapi.io/api2/1/ticker/dognft_eth
  1165. https://data.gateapi.io/api2/1/ticker/pros_usdt
  1166. https://data.gateapi.io/api2/1/ticker/pros_eth
  1167. https://data.gateapi.io/api2/1/ticker/sov_usdt
  1168. https://data.gateapi.io/api2/1/ticker/sov_btc
  1169. https://data.gateapi.io/api2/1/ticker/spell_usdt
  1170. https://data.gateapi.io/api2/1/ticker/spell_eth
  1171. https://data.gateapi.io/api2/1/ticker/urus_usdt
  1172. https://data.gateapi.io/api2/1/ticker/urus_eth
  1173. https://data.gateapi.io/api2/1/ticker/brkl_usdt
  1174. https://data.gateapi.io/api2/1/ticker/cfg_usdt
  1175. https://data.gateapi.io/api2/1/ticker/cfg_btc
  1176. https://data.gateapi.io/api2/1/ticker/fx_usdt
  1177. https://data.gateapi.io/api2/1/ticker/fx_eth
  1178. https://data.gateapi.io/api2/1/ticker/tbtc_usdt
  1179. https://data.gateapi.io/api2/1/ticker/tbtc_eth
  1180. https://data.gateapi.io/api2/1/ticker/stos_usdt
  1181. https://data.gateapi.io/api2/1/ticker/stos_eth
  1182. https://data.gateapi.io/api2/1/ticker/ssv_usdt
  1183. https://data.gateapi.io/api2/1/ticker/ssv_eth
  1184. https://data.gateapi.io/api2/1/ticker/ssv_btc
  1185. https://data.gateapi.io/api2/1/ticker/asm_usdt
  1186. https://data.gateapi.io/api2/1/ticker/asm_eth
  1187. https://data.gateapi.io/api2/1/ticker/des_usdt
  1188. https://data.gateapi.io/api2/1/ticker/visr_usdt
  1189. https://data.gateapi.io/api2/1/ticker/visr_eth
  1190. https://data.gateapi.io/api2/1/ticker/steth_usdt
  1191. https://data.gateapi.io/api2/1/ticker/steth_eth
  1192. https://data.gateapi.io/api2/1/ticker/cpool_usdt
  1193. https://data.gateapi.io/api2/1/ticker/swash_usdt
  1194. https://data.gateapi.io/api2/1/ticker/syn_usdt
  1195. https://data.gateapi.io/api2/1/ticker/syn_eth
  1196. https://data.gateapi.io/api2/1/ticker/kuma_usdt
  1197. https://data.gateapi.io/api2/1/ticker/imx_usdt
  1198. https://data.gateapi.io/api2/1/ticker/imx_try
  1199. https://data.gateapi.io/api2/1/ticker/imx_eth
  1200. https://data.gateapi.io/api2/1/ticker/cere_usdt
  1201. https://data.gateapi.io/api2/1/ticker/cere_eth
  1202. https://data.gateapi.io/api2/1/ticker/ens_usdt
  1203. https://data.gateapi.io/api2/1/ticker/ens_eth
  1204. https://data.gateapi.io/api2/1/ticker/ton_usdt
  1205. https://data.gateapi.io/api2/1/ticker/ton_eth
  1206. https://data.gateapi.io/api2/1/ticker/psp_usdt
  1207. https://data.gateapi.io/api2/1/ticker/psp_eth
  1208. https://data.gateapi.io/api2/1/ticker/wom_usdt
  1209. https://data.gateapi.io/api2/1/ticker/wom_eth
  1210. https://data.gateapi.io/api2/1/ticker/idv_usdt
  1211. https://data.gateapi.io/api2/1/ticker/idv_eth
  1212. https://data.gateapi.io/api2/1/ticker/nftx_usdt
  1213. https://data.gateapi.io/api2/1/ticker/nftx_eth
  1214. https://data.gateapi.io/api2/1/ticker/perp_usdt
  1215. https://data.gateapi.io/api2/1/ticker/perp_eth
  1216. https://data.gateapi.io/api2/1/ticker/orai_usdt
  1217. https://data.gateapi.io/api2/1/ticker/orai_eth
  1218. https://data.gateapi.io/api2/1/ticker/cws_usdt
  1219. https://data.gateapi.io/api2/1/ticker/cws_eth
  1220. https://data.gateapi.io/api2/1/ticker/lit_usdt
  1221. https://data.gateapi.io/api2/1/ticker/lit_eth
  1222. https://data.gateapi.io/api2/1/ticker/uncx_usdt
  1223. https://data.gateapi.io/api2/1/ticker/snow_usdt
  1224. https://data.gateapi.io/api2/1/ticker/snow_eth
  1225. https://data.gateapi.io/api2/1/ticker/dodo_usdt
  1226. https://data.gateapi.io/api2/1/ticker/dodo_eth
  1227. https://data.gateapi.io/api2/1/ticker/flurry_usdt
  1228. https://data.gateapi.io/api2/1/ticker/zam_usdt
  1229. https://data.gateapi.io/api2/1/ticker/zam_eth
  1230. https://data.gateapi.io/api2/1/ticker/ipad_usdt
  1231. https://data.gateapi.io/api2/1/ticker/vrt_usdt
  1232. https://data.gateapi.io/api2/1/ticker/vrt_eth
  1233. https://data.gateapi.io/api2/1/ticker/ever_usdt
  1234. https://data.gateapi.io/api2/1/ticker/opium_usdt
  1235. https://data.gateapi.io/api2/1/ticker/opium_eth
  1236. https://data.gateapi.io/api2/1/ticker/oly_usdt
  1237. https://data.gateapi.io/api2/1/ticker/vrx_usdt
  1238. https://data.gateapi.io/api2/1/ticker/vrx_eth
  1239. https://data.gateapi.io/api2/1/ticker/fuse_usdt
  1240. https://data.gateapi.io/api2/1/ticker/fuse_eth
  1241. https://data.gateapi.io/api2/1/ticker/sdao_usdt
  1242. https://data.gateapi.io/api2/1/ticker/sdao_eth
  1243. https://data.gateapi.io/api2/1/ticker/sdao_btc
  1244. https://data.gateapi.io/api2/1/ticker/mln_usdt
  1245. https://data.gateapi.io/api2/1/ticker/mln_eth
  1246. https://data.gateapi.io/api2/1/ticker/byn_usdt
  1247. https://data.gateapi.io/api2/1/ticker/byn_eth
  1248. https://data.gateapi.io/api2/1/ticker/srk_usdt
  1249. https://data.gateapi.io/api2/1/ticker/srk_eth
  1250. https://data.gateapi.io/api2/1/ticker/cofix_usdt
  1251. https://data.gateapi.io/api2/1/ticker/mm_usdt
  1252. https://data.gateapi.io/api2/1/ticker/mm_eth
  1253. https://data.gateapi.io/api2/1/ticker/clv_usdt
  1254. https://data.gateapi.io/api2/1/ticker/clv_eth
  1255. https://data.gateapi.io/api2/1/ticker/burp_usdt
  1256. https://data.gateapi.io/api2/1/ticker/burp_eth
  1257. https://data.gateapi.io/api2/1/ticker/aiepk_usdt
  1258. https://data.gateapi.io/api2/1/ticker/cart_usdt
  1259. https://data.gateapi.io/api2/1/ticker/cart_eth
  1260. https://data.gateapi.io/api2/1/ticker/whale_usdt
  1261. https://data.gateapi.io/api2/1/ticker/c98_usdt
  1262. https://data.gateapi.io/api2/1/ticker/c98_btc
  1263. https://data.gateapi.io/api2/1/ticker/iag_usdt
  1264. https://data.gateapi.io/api2/1/ticker/dnxc_usdt
  1265. https://data.gateapi.io/api2/1/ticker/idea_usdt
  1266. https://data.gateapi.io/api2/1/ticker/derc_usdt
  1267. https://data.gateapi.io/api2/1/ticker/pyr_usdt
  1268. https://data.gateapi.io/api2/1/ticker/pyr_eth
  1269. https://data.gateapi.io/api2/1/ticker/pla_usdt
  1270. https://data.gateapi.io/api2/1/ticker/pla_eth
  1271. https://data.gateapi.io/api2/1/ticker/cre_usdt
  1272. https://data.gateapi.io/api2/1/ticker/efi_usdt
  1273. https://data.gateapi.io/api2/1/ticker/efi_eth
  1274. https://data.gateapi.io/api2/1/ticker/rad_usdt
  1275. https://data.gateapi.io/api2/1/ticker/rad_eth
  1276. https://data.gateapi.io/api2/1/ticker/game_usdt
  1277. https://data.gateapi.io/api2/1/ticker/dfa_usdt
  1278. https://data.gateapi.io/api2/1/ticker/hmt_usdt
  1279. https://data.gateapi.io/api2/1/ticker/hmt_eth
  1280. https://data.gateapi.io/api2/1/ticker/gala_usdt
  1281. https://data.gateapi.io/api2/1/ticker/gala_eth
  1282. https://data.gateapi.io/api2/1/ticker/skt_usdt
  1283. https://data.gateapi.io/api2/1/ticker/trade_usdt
  1284. https://data.gateapi.io/api2/1/ticker/sphri_usdt
  1285. https://data.gateapi.io/api2/1/ticker/wncg_usdt
  1286. https://data.gateapi.io/api2/1/ticker/wncg_btc
  1287. https://data.gateapi.io/api2/1/ticker/mnt_usdt
  1288. https://data.gateapi.io/api2/1/ticker/starl_usdt
  1289. https://data.gateapi.io/api2/1/ticker/rare_usdt
  1290. https://data.gateapi.io/api2/1/ticker/rare_eth
  1291. https://data.gateapi.io/api2/1/ticker/eden_usdt
  1292. https://data.gateapi.io/api2/1/ticker/eden_eth
  1293. https://data.gateapi.io/api2/1/ticker/zlw_usdt
  1294. https://data.gateapi.io/api2/1/ticker/zlw_eth
  1295. https://data.gateapi.io/api2/1/ticker/qrdo_usdt
  1296. https://data.gateapi.io/api2/1/ticker/qrdo_eth
  1297. https://data.gateapi.io/api2/1/ticker/qrdo_btc
  1298. https://data.gateapi.io/api2/1/ticker/skyrim_usdt
  1299. https://data.gateapi.io/api2/1/ticker/skyrim_eth
  1300. https://data.gateapi.io/api2/1/ticker/bacon_usdt
  1301. https://data.gateapi.io/api2/1/ticker/ref_usdt
  1302. https://data.gateapi.io/api2/1/ticker/oct_usdt
  1303. https://data.gateapi.io/api2/1/ticker/gno_usdt
  1304. https://data.gateapi.io/api2/1/ticker/gno_eth
  1305. https://data.gateapi.io/api2/1/ticker/ata_usdt
  1306. https://data.gateapi.io/api2/1/ticker/ata_eth
  1307. https://data.gateapi.io/api2/1/ticker/bbank_usdt
  1308. https://data.gateapi.io/api2/1/ticker/push_usdt
  1309. https://data.gateapi.io/api2/1/ticker/push_eth
  1310. https://data.gateapi.io/api2/1/ticker/kft_usdt
  1311. https://data.gateapi.io/api2/1/ticker/kft_eth
  1312. https://data.gateapi.io/api2/1/ticker/revo_usdt
  1313. https://data.gateapi.io/api2/1/ticker/revo_eth
  1314. https://data.gateapi.io/api2/1/ticker/revo_btc
  1315. https://data.gateapi.io/api2/1/ticker/vega_usdt
  1316. https://data.gateapi.io/api2/1/ticker/vega_eth
  1317. https://data.gateapi.io/api2/1/ticker/vent_usdt
  1318. https://data.gateapi.io/api2/1/ticker/hid_usdt
  1319. https://data.gateapi.io/api2/1/ticker/ldo_usdt
  1320. https://data.gateapi.io/api2/1/ticker/ldo_eth
  1321. https://data.gateapi.io/api2/1/ticker/ald_usdt
  1322. https://data.gateapi.io/api2/1/ticker/ald_eth
  1323. https://data.gateapi.io/api2/1/ticker/gel_usdt
  1324. https://data.gateapi.io/api2/1/ticker/gel_eth
  1325. https://data.gateapi.io/api2/1/ticker/idex_usdt
  1326. https://data.gateapi.io/api2/1/ticker/idex_eth
  1327. https://data.gateapi.io/api2/1/ticker/ctrc_usdt
  1328. https://data.gateapi.io/api2/1/ticker/btrst_usdt
  1329. https://data.gateapi.io/api2/1/ticker/btrst_eth
  1330. https://data.gateapi.io/api2/1/ticker/itgr_usdt
  1331. https://data.gateapi.io/api2/1/ticker/itgr_eth
  1332. https://data.gateapi.io/api2/1/ticker/toke_usdt
  1333. https://data.gateapi.io/api2/1/ticker/toke_eth
  1334. https://data.gateapi.io/api2/1/ticker/hotcross_usdt
  1335. https://data.gateapi.io/api2/1/ticker/hotcross_eth
  1336. https://data.gateapi.io/api2/1/ticker/nftd_usdt
  1337. https://data.gateapi.io/api2/1/ticker/mot_usdt
  1338. https://data.gateapi.io/api2/1/ticker/knight_usdt
  1339. https://data.gateapi.io/api2/1/ticker/forex_usdt
  1340. https://data.gateapi.io/api2/1/ticker/forex_eth
  1341. https://data.gateapi.io/api2/1/ticker/orion_usdt
  1342. https://data.gateapi.io/api2/1/ticker/opul_usdt
  1343. https://data.gateapi.io/api2/1/ticker/opul_eth
  1344. https://data.gateapi.io/api2/1/ticker/vemp_usdt
  1345. https://data.gateapi.io/api2/1/ticker/eva_usdt
  1346. https://data.gateapi.io/api2/1/ticker/eva_eth
  1347. https://data.gateapi.io/api2/1/ticker/txt_usdt
  1348. https://data.gateapi.io/api2/1/ticker/txt_eth
  1349. https://data.gateapi.io/api2/1/ticker/poli_usdt
  1350. https://data.gateapi.io/api2/1/ticker/deri_usdt
  1351. https://data.gateapi.io/api2/1/ticker/deri_eth
  1352. https://data.gateapi.io/api2/1/ticker/taur_usdt
  1353. https://data.gateapi.io/api2/1/ticker/nii_usdt
  1354. https://data.gateapi.io/api2/1/ticker/nii_eth
  1355. https://data.gateapi.io/api2/1/ticker/eqx_usdt
  1356. https://data.gateapi.io/api2/1/ticker/theos_usdt
  1357. https://data.gateapi.io/api2/1/ticker/rbn_usdt
  1358. https://data.gateapi.io/api2/1/ticker/rbn_eth
  1359. https://data.gateapi.io/api2/1/ticker/ioen_usdt
  1360. https://data.gateapi.io/api2/1/ticker/ioen_eth
  1361. https://data.gateapi.io/api2/1/ticker/strp_usdt
  1362. https://data.gateapi.io/api2/1/ticker/strp_eth
  1363. https://data.gateapi.io/api2/1/ticker/leash_usdt
  1364. https://data.gateapi.io/api2/1/ticker/leash_eth
  1365. https://data.gateapi.io/api2/1/ticker/lith_usdt
  1366. https://data.gateapi.io/api2/1/ticker/lith_eth
  1367. https://data.gateapi.io/api2/1/ticker/shoe_usdt
  1368. https://data.gateapi.io/api2/1/ticker/rice_usdt
  1369. https://data.gateapi.io/api2/1/ticker/rice_eth
  1370. https://data.gateapi.io/api2/1/ticker/lyxe_usdt
  1371. https://data.gateapi.io/api2/1/ticker/lyxe_eth
  1372. https://data.gateapi.io/api2/1/ticker/evry_usdt
  1373. https://data.gateapi.io/api2/1/ticker/mnw_usdt
  1374. https://data.gateapi.io/api2/1/ticker/mnw_eth
  1375. https://data.gateapi.io/api2/1/ticker/kst_usdt
  1376. https://data.gateapi.io/api2/1/ticker/kst_eth
  1377. https://data.gateapi.io/api2/1/ticker/baked_usdt
  1378. https://data.gateapi.io/api2/1/ticker/baked_eth
  1379. https://data.gateapi.io/api2/1/ticker/saitama_usdt
  1380. https://data.gateapi.io/api2/1/ticker/fodl_usdt
  1381. https://data.gateapi.io/api2/1/ticker/fodl_eth
  1382. https://data.gateapi.io/api2/1/ticker/pendle_usdt
  1383. https://data.gateapi.io/api2/1/ticker/pendle_eth
  1384. https://data.gateapi.io/api2/1/ticker/forth_usdt
  1385. https://data.gateapi.io/api2/1/ticker/forth_eth
  1386. https://data.gateapi.io/api2/1/ticker/lemd_usdt
  1387. https://data.gateapi.io/api2/1/ticker/lemd_eth
  1388. https://data.gateapi.io/api2/1/ticker/cards_usdt
  1389. https://data.gateapi.io/api2/1/ticker/cards_eth
  1390. https://data.gateapi.io/api2/1/ticker/ilv_usdt
  1391. https://data.gateapi.io/api2/1/ticker/ilv_eth
  1392. https://data.gateapi.io/api2/1/ticker/hord_usdt
  1393. https://data.gateapi.io/api2/1/ticker/hord_eth
  1394. https://data.gateapi.io/api2/1/ticker/xmark_usdt
  1395. https://data.gateapi.io/api2/1/ticker/xmark_eth
  1396. https://data.gateapi.io/api2/1/ticker/wbtc_usdt
  1397. https://data.gateapi.io/api2/1/ticker/wbtc_btc
  1398. https://data.gateapi.io/api2/1/ticker/moma_usdt
  1399. https://data.gateapi.io/api2/1/ticker/moma_eth
  1400. https://data.gateapi.io/api2/1/ticker/ares_usdt
  1401. https://data.gateapi.io/api2/1/ticker/ares_eth
  1402. https://data.gateapi.io/api2/1/ticker/alphr_usdt
  1403. https://data.gateapi.io/api2/1/ticker/alphr_eth
  1404. https://data.gateapi.io/api2/1/ticker/boa_usdt
  1405. https://data.gateapi.io/api2/1/ticker/renbtc_usdt
  1406. https://data.gateapi.io/api2/1/ticker/renbtc_btc
  1407. https://data.gateapi.io/api2/1/ticker/susd_usdt
  1408. https://data.gateapi.io/api2/1/ticker/susd_eth
  1409. https://data.gateapi.io/api2/1/ticker/sfi_usdt
  1410. https://data.gateapi.io/api2/1/ticker/sfi_eth
  1411. https://data.gateapi.io/api2/1/ticker/smty_usdt
  1412. https://data.gateapi.io/api2/1/ticker/smty_eth
  1413. https://data.gateapi.io/api2/1/ticker/tcp_usdt
  1414. https://data.gateapi.io/api2/1/ticker/tcp_eth
  1415. https://data.gateapi.io/api2/1/ticker/quick_usdt
  1416. https://data.gateapi.io/api2/1/ticker/quick_eth
  1417. https://data.gateapi.io/api2/1/ticker/black_usdt
  1418. https://data.gateapi.io/api2/1/ticker/black_eth
  1419. https://data.gateapi.io/api2/1/ticker/bdt_usdt
  1420. https://data.gateapi.io/api2/1/ticker/bdt_eth
  1421. https://data.gateapi.io/api2/1/ticker/ez_usdt
  1422. https://data.gateapi.io/api2/1/ticker/ez_eth
  1423. https://data.gateapi.io/api2/1/ticker/stnd_usdt
  1424. https://data.gateapi.io/api2/1/ticker/stnd_eth
  1425. https://data.gateapi.io/api2/1/ticker/vso_usdt
  1426. https://data.gateapi.io/api2/1/ticker/vso_eth
  1427. https://data.gateapi.io/api2/1/ticker/klo_usdt
  1428. https://data.gateapi.io/api2/1/ticker/xava_usdt
  1429. https://data.gateapi.io/api2/1/ticker/joe_usdt
  1430. https://data.gateapi.io/api2/1/ticker/joe_eth
  1431. https://data.gateapi.io/api2/1/ticker/png_usdt
  1432. https://data.gateapi.io/api2/1/ticker/hct_usdt
  1433. https://data.gateapi.io/api2/1/ticker/hct_eth
  1434. https://data.gateapi.io/api2/1/ticker/time_usdt
  1435. https://data.gateapi.io/api2/1/ticker/time_eth
  1436. https://data.gateapi.io/api2/1/ticker/benqi_usdt
  1437. https://data.gateapi.io/api2/1/ticker/benqi_eth
  1438. https://data.gateapi.io/api2/1/ticker/locg_usdt
  1439. https://data.gateapi.io/api2/1/ticker/locg_eth
  1440. https://data.gateapi.io/api2/1/ticker/orao_usdt
  1441. https://data.gateapi.io/api2/1/ticker/orao_eth
  1442. https://data.gateapi.io/api2/1/ticker/wsienna_usdt
  1443. https://data.gateapi.io/api2/1/ticker/wiken_usdt
  1444. https://data.gateapi.io/api2/1/ticker/wiken_btc
  1445. https://data.gateapi.io/api2/1/ticker/wemix_usdt
  1446. https://data.gateapi.io/api2/1/ticker/wemix_try
  1447. https://data.gateapi.io/api2/1/ticker/wemix_eth
  1448. https://data.gateapi.io/api2/1/ticker/busy_usdt
  1449. https://data.gateapi.io/api2/1/ticker/stbu_usdt
  1450. https://data.gateapi.io/api2/1/ticker/stbu_eth
  1451. https://data.gateapi.io/api2/1/ticker/lion_usdt
  1452. https://data.gateapi.io/api2/1/ticker/dfnd_usdt
  1453. https://data.gateapi.io/api2/1/ticker/isp_usdt
  1454. https://data.gateapi.io/api2/1/ticker/isp_eth
  1455. https://data.gateapi.io/api2/1/ticker/ftt_usdt
  1456. https://data.gateapi.io/api2/1/ticker/ftt_eth
  1457. https://data.gateapi.io/api2/1/ticker/lev_usdt
  1458. https://data.gateapi.io/api2/1/ticker/gdt_usdt
  1459. https://data.gateapi.io/api2/1/ticker/gdt_eth
  1460. https://data.gateapi.io/api2/1/ticker/peri_usdt
  1461. https://data.gateapi.io/api2/1/ticker/gum_usdt
  1462. https://data.gateapi.io/api2/1/ticker/yfx_usdt
  1463. https://data.gateapi.io/api2/1/ticker/prare_usdt
  1464. https://data.gateapi.io/api2/1/ticker/prare_eth
  1465. https://data.gateapi.io/api2/1/ticker/feg_usdt
  1466. https://data.gateapi.io/api2/1/ticker/skrt_usdt
  1467. https://data.gateapi.io/api2/1/ticker/metis_usdt
  1468. https://data.gateapi.io/api2/1/ticker/metis_eth
  1469. https://data.gateapi.io/api2/1/ticker/o3_usdt
  1470. https://data.gateapi.io/api2/1/ticker/o3_eth
  1471. https://data.gateapi.io/api2/1/ticker/bzz_usdt
  1472. https://data.gateapi.io/api2/1/ticker/bzz_eth
  1473. https://data.gateapi.io/api2/1/ticker/tbe_usdt
  1474. https://data.gateapi.io/api2/1/ticker/10set_usdt
  1475. https://data.gateapi.io/api2/1/ticker/pnl_usdt
  1476. https://data.gateapi.io/api2/1/ticker/pnl_eth
  1477. https://data.gateapi.io/api2/1/ticker/pdex_usdt
  1478. https://data.gateapi.io/api2/1/ticker/wild_usdt
  1479. https://data.gateapi.io/api2/1/ticker/fear_usdt
  1480. https://data.gateapi.io/api2/1/ticker/czz_usdt
  1481. https://data.gateapi.io/api2/1/ticker/elon_usdt
  1482. https://data.gateapi.io/api2/1/ticker/hoge_usdt
  1483. https://data.gateapi.io/api2/1/ticker/noa_usdt
  1484. https://data.gateapi.io/api2/1/ticker/kishu_usdt
  1485. https://data.gateapi.io/api2/1/ticker/dop_usdt
  1486. https://data.gateapi.io/api2/1/ticker/nmt_usdt
  1487. https://data.gateapi.io/api2/1/ticker/nmt_eth
  1488. https://data.gateapi.io/api2/1/ticker/naos_usdt
  1489. https://data.gateapi.io/api2/1/ticker/naos_eth
  1490. https://data.gateapi.io/api2/1/ticker/naos_btc
  1491. https://data.gateapi.io/api2/1/ticker/para_usdt
  1492. https://data.gateapi.io/api2/1/ticker/gitcoin_usdt
  1493. https://data.gateapi.io/api2/1/ticker/gitcoin_eth
  1494. https://data.gateapi.io/api2/1/ticker/saito_usdt
  1495. https://data.gateapi.io/api2/1/ticker/xcad_usdt
  1496. https://data.gateapi.io/api2/1/ticker/caps_usdt
  1497. https://data.gateapi.io/api2/1/ticker/lss_usdt
  1498. https://data.gateapi.io/api2/1/ticker/lss_eth
  1499. https://data.gateapi.io/api2/1/ticker/slp_usdt
  1500. https://data.gateapi.io/api2/1/ticker/slp_eth
  1501. https://data.gateapi.io/api2/1/ticker/cvx_usdt
  1502. https://data.gateapi.io/api2/1/ticker/cvx_eth
  1503. https://data.gateapi.io/api2/1/ticker/niifi_usdt
  1504. https://data.gateapi.io/api2/1/ticker/phtr_usdt
  1505. https://data.gateapi.io/api2/1/ticker/occ_usdt
  1506. https://data.gateapi.io/api2/1/ticker/apn_usdt
  1507. https://data.gateapi.io/api2/1/ticker/apn_eth
  1508. https://data.gateapi.io/api2/1/ticker/route_usdt
  1509. https://data.gateapi.io/api2/1/ticker/dfyn_usdt
  1510. https://data.gateapi.io/api2/1/ticker/ioi_usdt
  1511. https://data.gateapi.io/api2/1/ticker/lime_usdt
  1512. https://data.gateapi.io/api2/1/ticker/lime_eth
  1513. https://data.gateapi.io/api2/1/ticker/lime_btc
  1514. https://data.gateapi.io/api2/1/ticker/free_usdt
  1515. https://data.gateapi.io/api2/1/ticker/form_usdt
  1516. https://data.gateapi.io/api2/1/ticker/form_eth
  1517. https://data.gateapi.io/api2/1/ticker/orc_usdt
  1518. https://data.gateapi.io/api2/1/ticker/kex_usdt
  1519. https://data.gateapi.io/api2/1/ticker/kex_eth
  1520. https://data.gateapi.io/api2/1/ticker/nwc_usdt
  1521. https://data.gateapi.io/api2/1/ticker/nwc_btc
  1522. https://data.gateapi.io/api2/1/ticker/dpr_usdt
  1523. https://data.gateapi.io/api2/1/ticker/dpr_eth
  1524. https://data.gateapi.io/api2/1/ticker/yld_usdt
  1525. https://data.gateapi.io/api2/1/ticker/cqt_usdt
  1526. https://data.gateapi.io/api2/1/ticker/cqt_eth
  1527. https://data.gateapi.io/api2/1/ticker/zcx_usdt
  1528. https://data.gateapi.io/api2/1/ticker/flux_usdt
  1529. https://data.gateapi.io/api2/1/ticker/flux_eth
  1530. https://data.gateapi.io/api2/1/ticker/atp_usdt
  1531. https://data.gateapi.io/api2/1/ticker/atp_eth
  1532. https://data.gateapi.io/api2/1/ticker/nax_usdt
  1533. https://data.gateapi.io/api2/1/ticker/nax_eth
  1534. https://data.gateapi.io/api2/1/ticker/klay_usdt
  1535. https://data.gateapi.io/api2/1/ticker/nbot_eth
  1536. https://data.gateapi.io/api2/1/ticker/nbot_usdt
  1537. https://data.gateapi.io/api2/1/ticker/qi_usdt
  1538. https://data.gateapi.io/api2/1/ticker/qi_eth
  1539. https://data.gateapi.io/api2/1/ticker/ply_eth
  1540. https://data.gateapi.io/api2/1/ticker/med_usdt
  1541. https://data.gateapi.io/api2/1/ticker/med_eth
  1542. https://data.gateapi.io/api2/1/ticker/grin_usdt
  1543. https://data.gateapi.io/api2/1/ticker/grin_eth
  1544. https://data.gateapi.io/api2/1/ticker/grin_btc
  1545. https://data.gateapi.io/api2/1/ticker/beam_usdt
  1546. https://data.gateapi.io/api2/1/ticker/beam_eth
  1547. https://data.gateapi.io/api2/1/ticker/beam_btc
  1548. https://data.gateapi.io/api2/1/ticker/waxp_usdt
  1549. https://data.gateapi.io/api2/1/ticker/waxp_eth
  1550. https://data.gateapi.io/api2/1/ticker/iost_usdt
  1551. https://data.gateapi.io/api2/1/ticker/iost_btc
  1552. https://data.gateapi.io/api2/1/ticker/hbar_usdt
  1553. https://data.gateapi.io/api2/1/ticker/mina_usdt
  1554. https://data.gateapi.io/api2/1/ticker/mina_btc
  1555. https://data.gateapi.io/api2/1/ticker/okb_usdt
  1556. https://data.gateapi.io/api2/1/ticker/rep_usdt
  1557. https://data.gateapi.io/api2/1/ticker/rep_eth
  1558. https://data.gateapi.io/api2/1/ticker/star_usdt
  1559. https://data.gateapi.io/api2/1/ticker/star_eth
  1560. https://data.gateapi.io/api2/1/ticker/zen_usdt
  1561. https://data.gateapi.io/api2/1/ticker/abbc_usdt
  1562. https://data.gateapi.io/api2/1/ticker/fil_usdt
  1563. https://data.gateapi.io/api2/1/ticker/fil_btc
  1564. https://data.gateapi.io/api2/1/ticker/fil_eth
  1565. https://data.gateapi.io/api2/1/ticker/fil_usdc
  1566. https://data.gateapi.io/api2/1/ticker/sup_usdt
  1567. https://data.gateapi.io/api2/1/ticker/stox_usdt
  1568. https://data.gateapi.io/api2/1/ticker/stox_eth
  1569. https://data.gateapi.io/api2/1/ticker/vtho_eth
  1570. https://data.gateapi.io/api2/1/ticker/vtho_usdt
  1571. https://data.gateapi.io/api2/1/ticker/trx_usdc
  1572. https://data.gateapi.io/api2/1/ticker/vidyx_usdt
  1573. https://data.gateapi.io/api2/1/ticker/vidyx_eth
  1574. https://data.gateapi.io/api2/1/ticker/btt_usdt
  1575. https://data.gateapi.io/api2/1/ticker/btt_eth
  1576. https://data.gateapi.io/api2/1/ticker/bnt_usdt
  1577. https://data.gateapi.io/api2/1/ticker/wings_eth
  1578. https://data.gateapi.io/api2/1/ticker/wings_usdt
  1579. https://data.gateapi.io/api2/1/ticker/tfuel_eth
  1580. https://data.gateapi.io/api2/1/ticker/tfuel_usdt
  1581. https://data.gateapi.io/api2/1/ticker/celr_eth
  1582. https://data.gateapi.io/api2/1/ticker/celr_usdt
  1583. https://data.gateapi.io/api2/1/ticker/ksm3s_usdt
  1584. https://data.gateapi.io/api2/1/ticker/zec3l_usdt
  1585. https://data.gateapi.io/api2/1/ticker/zec3s_usdt
  1586. https://data.gateapi.io/api2/1/ticker/xmr3l_usdt
  1587. https://data.gateapi.io/api2/1/ticker/xmr3s_usdt
  1588. https://data.gateapi.io/api2/1/ticker/crv3l_usdt
  1589. https://data.gateapi.io/api2/1/ticker/crv3s_usdt
  1590. https://data.gateapi.io/api2/1/ticker/comp3l_usdt
  1591. https://data.gateapi.io/api2/1/ticker/comp3s_usdt
  1592. https://data.gateapi.io/api2/1/ticker/yfi3l_usdt
  1593. https://data.gateapi.io/api2/1/ticker/yfi3s_usdt
  1594. https://data.gateapi.io/api2/1/ticker/ht3l_usdt
  1595. https://data.gateapi.io/api2/1/ticker/ht3s_usdt
  1596. https://data.gateapi.io/api2/1/ticker/okb3l_usdt
  1597. https://data.gateapi.io/api2/1/ticker/okb3s_usdt
  1598. https://data.gateapi.io/api2/1/ticker/uni3l_usdt
  1599. https://data.gateapi.io/api2/1/ticker/uni3s_usdt
  1600. https://data.gateapi.io/api2/1/ticker/dot3l_usdt
  1601. https://data.gateapi.io/api2/1/ticker/dot3s_usdt
  1602. https://data.gateapi.io/api2/1/ticker/fil3l_usdt
  1603. https://data.gateapi.io/api2/1/ticker/fil3s_usdt
  1604. https://data.gateapi.io/api2/1/ticker/sushi3l_usdt
  1605. https://data.gateapi.io/api2/1/ticker/sushi3s_usdt
  1606. https://data.gateapi.io/api2/1/ticker/eth3l_usdt
  1607. https://data.gateapi.io/api2/1/ticker/eth3s_usdt
  1608. https://data.gateapi.io/api2/1/ticker/eos3l_usdt
  1609. https://data.gateapi.io/api2/1/ticker/eos3s_usdt
  1610. https://data.gateapi.io/api2/1/ticker/bsv3l_usdt
  1611. https://data.gateapi.io/api2/1/ticker/bsv3s_usdt
  1612. https://data.gateapi.io/api2/1/ticker/bch3l_usdt
  1613. https://data.gateapi.io/api2/1/ticker/bch3s_usdt
  1614. https://data.gateapi.io/api2/1/ticker/ltc3l_usdt
  1615. https://data.gateapi.io/api2/1/ticker/ltc3s_usdt
  1616. https://data.gateapi.io/api2/1/ticker/xtz3l_usdt
  1617. https://data.gateapi.io/api2/1/ticker/xtz3s_usdt
  1618. https://data.gateapi.io/api2/1/ticker/bsv_usdt
  1619. https://data.gateapi.io/api2/1/ticker/bsv_btc
  1620. https://data.gateapi.io/api2/1/ticker/rvn_usdt
  1621. https://data.gateapi.io/api2/1/ticker/rvc_usdt
  1622. https://data.gateapi.io/api2/1/ticker/ar_usdt
  1623. https://data.gateapi.io/api2/1/ticker/rin_usdt
  1624. https://data.gateapi.io/api2/1/ticker/buy_usdt
  1625. https://data.gateapi.io/api2/1/ticker/buy_eth
  1626. https://data.gateapi.io/api2/1/ticker/gaia_usdt
  1627. https://data.gateapi.io/api2/1/ticker/snk_usdt
  1628. https://data.gateapi.io/api2/1/ticker/polydoge_usdt
  1629. https://data.gateapi.io/api2/1/ticker/mcash_usdt
  1630. https://data.gateapi.io/api2/1/ticker/blok_usdt
  1631. https://data.gateapi.io/api2/1/ticker/blok_eth
  1632. https://data.gateapi.io/api2/1/ticker/champ_usdt
  1633. https://data.gateapi.io/api2/1/ticker/nsdx_usdt
  1634. https://data.gateapi.io/api2/1/ticker/sway_usdt
  1635. https://data.gateapi.io/api2/1/ticker/usdt_usd
  1636. https://data.gateapi.io/api2/1/ticker/tips_usdt
  1637. https://data.gateapi.io/api2/1/ticker/tips_eth
  1638. https://data.gateapi.io/api2/1/ticker/dcr_usdt
  1639. https://data.gateapi.io/api2/1/ticker/dcr_btc
  1640. https://data.gateapi.io/api2/1/ticker/bcn_usdt
  1641. https://data.gateapi.io/api2/1/ticker/bcn_btc
  1642. https://data.gateapi.io/api2/1/ticker/xmc_usdt
  1643. https://data.gateapi.io/api2/1/ticker/xmc_btc
  1644. https://data.gateapi.io/api2/1/ticker/xrp_usdc
  1645. https://data.gateapi.io/api2/1/ticker/arrr_usdt
  1646. https://data.gateapi.io/api2/1/ticker/arrr_eth
  1647. https://data.gateapi.io/api2/1/ticker/velo_usdt
  1648. https://data.gateapi.io/api2/1/ticker/velo_eth
  1649. https://data.gateapi.io/api2/1/ticker/wxt_usdt
  1650. https://data.gateapi.io/api2/1/ticker/wxt_eth
  1651. https://data.gateapi.io/api2/1/ticker/pps_usdt
  1652. https://data.gateapi.io/api2/1/ticker/nbs_usdt
  1653. https://data.gateapi.io/api2/1/ticker/nbs_btc
  1654. https://data.gateapi.io/api2/1/ticker/xpr_usdt
  1655. https://data.gateapi.io/api2/1/ticker/xpr_eth
  1656. https://data.gateapi.io/api2/1/ticker/steem_usdt
  1657. https://data.gateapi.io/api2/1/ticker/hive_usdt
  1658. https://data.gateapi.io/api2/1/ticker/ltc_usdc
  1659. https://data.gateapi.io/api2/1/ticker/doge_usdc
  1660. https://data.gateapi.io/api2/1/ticker/xec_usdt
  1661. https://data.gateapi.io/api2/1/ticker/eth5l_usdt
  1662. https://data.gateapi.io/api2/1/ticker/eth5s_usdt
  1663. https://data.gateapi.io/api2/1/ticker/link3l_usdt
  1664. https://data.gateapi.io/api2/1/ticker/link3s_usdt
  1665. https://data.gateapi.io/api2/1/ticker/kava3l_usdt
  1666. https://data.gateapi.io/api2/1/ticker/kava3s_usdt
  1667. https://data.gateapi.io/api2/1/ticker/egld3l_usdt
  1668. https://data.gateapi.io/api2/1/ticker/egld3s_usdt
  1669. https://data.gateapi.io/api2/1/ticker/chz3l_usdt
  1670. https://data.gateapi.io/api2/1/ticker/chz3s_usdt
  1671. https://data.gateapi.io/api2/1/ticker/mkr3l_usdt
  1672. https://data.gateapi.io/api2/1/ticker/mkr3s_usdt
  1673. https://data.gateapi.io/api2/1/ticker/lrc3l_usdt
  1674. https://data.gateapi.io/api2/1/ticker/lrc3s_usdt
  1675. https://data.gateapi.io/api2/1/ticker/vet3l_usdt
  1676. https://data.gateapi.io/api2/1/ticker/vet3s_usdt
  1677. https://data.gateapi.io/api2/1/ticker/theta3l_usdt
  1678. https://data.gateapi.io/api2/1/ticker/theta3s_usdt
  1679. https://data.gateapi.io/api2/1/ticker/sol3l_usdt
  1680. https://data.gateapi.io/api2/1/ticker/sol3s_usdt
  1681. https://data.gateapi.io/api2/1/ticker/skl3l_usdt
  1682. https://data.gateapi.io/api2/1/ticker/skl3s_usdt
  1683. https://data.gateapi.io/api2/1/ticker/1inch3l_usdt
  1684. https://data.gateapi.io/api2/1/ticker/1inch3s_usdt
  1685. https://data.gateapi.io/api2/1/ticker/doge3l_usdt
  1686. https://data.gateapi.io/api2/1/ticker/doge3s_usdt
  1687. https://data.gateapi.io/api2/1/ticker/grt3l_usdt
  1688. https://data.gateapi.io/api2/1/ticker/grt3s_usdt
  1689. https://data.gateapi.io/api2/1/ticker/bnb3l_usdt
  1690. https://data.gateapi.io/api2/1/ticker/bnb3s_usdt
  1691. https://data.gateapi.io/api2/1/ticker/trx3l_usdt
  1692. https://data.gateapi.io/api2/1/ticker/trx3s_usdt
  1693. https://data.gateapi.io/api2/1/ticker/atom3l_usdt
  1694. https://data.gateapi.io/api2/1/ticker/atom3s_usdt
  1695. https://data.gateapi.io/api2/1/ticker/avax3l_usdt
  1696. https://data.gateapi.io/api2/1/ticker/avax3s_usdt
  1697. https://data.gateapi.io/api2/1/ticker/near3l_usdt
  1698. https://data.gateapi.io/api2/1/ticker/near3s_usdt
  1699. https://data.gateapi.io/api2/1/ticker/rose3l_usdt
  1700. https://data.gateapi.io/api2/1/ticker/rose3s_usdt
  1701. https://data.gateapi.io/api2/1/ticker/zen3l_usdt
  1702. https://data.gateapi.io/api2/1/ticker/zen3s_usdt
  1703. https://data.gateapi.io/api2/1/ticker/qtum3l_usdt
  1704. https://data.gateapi.io/api2/1/ticker/qtum3s_usdt
  1705. https://data.gateapi.io/api2/1/ticker/xlm3l_usdt
  1706. https://data.gateapi.io/api2/1/ticker/xlm3s_usdt
  1707. https://data.gateapi.io/api2/1/ticker/xrp3l_usdt
  1708. https://data.gateapi.io/api2/1/ticker/xrp3s_usdt
  1709. https://data.gateapi.io/api2/1/ticker/cfx3l_usdt
  1710. https://data.gateapi.io/api2/1/ticker/cfx3s_usdt
  1711. https://data.gateapi.io/api2/1/ticker/omg3l_usdt
  1712. https://data.gateapi.io/api2/1/ticker/omg3s_usdt
  1713. https://data.gateapi.io/api2/1/ticker/algo3l_usdt
  1714. https://data.gateapi.io/api2/1/ticker/algo3s_usdt
  1715. https://data.gateapi.io/api2/1/ticker/waves3l_usdt
  1716. https://data.gateapi.io/api2/1/ticker/waves3s_usdt
  1717. https://data.gateapi.io/api2/1/ticker/neo3l_usdt
  1718. https://data.gateapi.io/api2/1/ticker/neo3s_usdt
  1719. https://data.gateapi.io/api2/1/ticker/ont3l_usdt
  1720. https://data.gateapi.io/api2/1/ticker/ont3s_usdt
  1721. https://data.gateapi.io/api2/1/ticker/etc3l_usdt
  1722. https://data.gateapi.io/api2/1/ticker/etc3s_usdt
  1723. https://data.gateapi.io/api2/1/ticker/snx3l_usdt
  1724. https://data.gateapi.io/api2/1/ticker/snx3s_usdt
  1725. https://data.gateapi.io/api2/1/ticker/ada3l_usdt
  1726. https://data.gateapi.io/api2/1/ticker/ada3s_usdt
  1727. https://data.gateapi.io/api2/1/ticker/dash3l_usdt
  1728. https://data.gateapi.io/api2/1/ticker/dash3s_usdt
  1729. https://data.gateapi.io/api2/1/ticker/aave3l_usdt
  1730. https://data.gateapi.io/api2/1/ticker/aave3s_usdt
  1731. https://data.gateapi.io/api2/1/ticker/ksm3l_usdt
  1732. https://data.gateapi.io/api2/1/ticker/xch_usdt
  1733. https://data.gateapi.io/api2/1/ticker/xch_eth
  1734. https://data.gateapi.io/api2/1/ticker/akt_usdt
  1735. https://data.gateapi.io/api2/1/ticker/akt_eth
  1736. https://data.gateapi.io/api2/1/ticker/hns_btc
  1737. https://data.gateapi.io/api2/1/ticker/hns_usdt
  1738. https://data.gateapi.io/api2/1/ticker/btc3l_usdt
  1739. https://data.gateapi.io/api2/1/ticker/btc3s_usdt
  1740. https://data.gateapi.io/api2/1/ticker/cyber3l_usdt
  1741. https://data.gateapi.io/api2/1/ticker/cyber3s_usdt
  1742. https://data.gateapi.io/api2/1/ticker/pepe3l_usdt
  1743. https://data.gateapi.io/api2/1/ticker/pepe3s_usdt
  1744. https://data.gateapi.io/api2/1/ticker/sui3l_usdt
  1745. https://data.gateapi.io/api2/1/ticker/sui3s_usdt
  1746. https://data.gateapi.io/api2/1/ticker/ldo3l_usdt
  1747. https://data.gateapi.io/api2/1/ticker/ldo3s_usdt
  1748. https://data.gateapi.io/api2/1/ticker/rndr3l_usdt
  1749. https://data.gateapi.io/api2/1/ticker/rndr3s_usdt
  1750. https://data.gateapi.io/api2/1/ticker/id3l_usdt
  1751. https://data.gateapi.io/api2/1/ticker/id3s_usdt
  1752. https://data.gateapi.io/api2/1/ticker/blur3l_usdt
  1753. https://data.gateapi.io/api2/1/ticker/blur3s_usdt
  1754. https://data.gateapi.io/api2/1/ticker/op3l_usdt
  1755. https://data.gateapi.io/api2/1/ticker/op3s_usdt
  1756. https://data.gateapi.io/api2/1/ticker/arb3l_usdt
  1757. https://data.gateapi.io/api2/1/ticker/arb3s_usdt
  1758. https://data.gateapi.io/api2/1/ticker/fitfi3l_usdt
  1759. https://data.gateapi.io/api2/1/ticker/fitfi3s_usdt
  1760. https://data.gateapi.io/api2/1/ticker/gal3l_usdt
  1761. https://data.gateapi.io/api2/1/ticker/gal3s_usdt
  1762. https://data.gateapi.io/api2/1/ticker/astr3l_usdt
  1763. https://data.gateapi.io/api2/1/ticker/astr3s_usdt
  1764. https://data.gateapi.io/api2/1/ticker/bsw3l_usdt
  1765. https://data.gateapi.io/api2/1/ticker/bsw3s_usdt
  1766. https://data.gateapi.io/api2/1/ticker/cake3l_usdt
  1767. https://data.gateapi.io/api2/1/ticker/cake3s_usdt
  1768. https://data.gateapi.io/api2/1/ticker/ape3l_usdt
  1769. https://data.gateapi.io/api2/1/ticker/ape3s_usdt
  1770. https://data.gateapi.io/api2/1/ticker/gmt3l_usdt
  1771. https://data.gateapi.io/api2/1/ticker/gmt3s_usdt
  1772. https://data.gateapi.io/api2/1/ticker/cro3l_usdt
  1773. https://data.gateapi.io/api2/1/ticker/cro3s_usdt
  1774. https://data.gateapi.io/api2/1/ticker/api33l_usdt
  1775. https://data.gateapi.io/api2/1/ticker/api33s_usdt
  1776. https://data.gateapi.io/api2/1/ticker/glmr3l_usdt
  1777. https://data.gateapi.io/api2/1/ticker/glmr3s_usdt
  1778. https://data.gateapi.io/api2/1/ticker/imx3l_usdt
  1779. https://data.gateapi.io/api2/1/ticker/imx3s_usdt
  1780. https://data.gateapi.io/api2/1/ticker/woo3l_usdt
  1781. https://data.gateapi.io/api2/1/ticker/woo3s_usdt
  1782. https://data.gateapi.io/api2/1/ticker/bat3l_usdt
  1783. https://data.gateapi.io/api2/1/ticker/bat3s_usdt
  1784. https://data.gateapi.io/api2/1/ticker/mask3l_usdt
  1785. https://data.gateapi.io/api2/1/ticker/mask3s_usdt
  1786. https://data.gateapi.io/api2/1/ticker/people3l_usdt
  1787. https://data.gateapi.io/api2/1/ticker/people3s_usdt
  1788. https://data.gateapi.io/api2/1/ticker/slp3l_usdt
  1789. https://data.gateapi.io/api2/1/ticker/slp3s_usdt
  1790. https://data.gateapi.io/api2/1/ticker/looks3l_usdt
  1791. https://data.gateapi.io/api2/1/ticker/looks3s_usdt
  1792. https://data.gateapi.io/api2/1/ticker/raca3l_usdt
  1793. https://data.gateapi.io/api2/1/ticker/raca3s_usdt
  1794. https://data.gateapi.io/api2/1/ticker/mana3l_usdt
  1795. https://data.gateapi.io/api2/1/ticker/mana3s_usdt
  1796. https://data.gateapi.io/api2/1/ticker/klay3l_usdt
  1797. https://data.gateapi.io/api2/1/ticker/klay3s_usdt
  1798. https://data.gateapi.io/api2/1/ticker/arpa3l_usdt
  1799. https://data.gateapi.io/api2/1/ticker/arpa3s_usdt
  1800. https://data.gateapi.io/api2/1/ticker/coti3l_usdt
  1801. https://data.gateapi.io/api2/1/ticker/coti3s_usdt
  1802. https://data.gateapi.io/api2/1/ticker/iost3l_usdt
  1803. https://data.gateapi.io/api2/1/ticker/iost3s_usdt
  1804. https://data.gateapi.io/api2/1/ticker/ar3l_usdt
  1805. https://data.gateapi.io/api2/1/ticker/ar3s_usdt
  1806. https://data.gateapi.io/api2/1/ticker/one3l_usdt
  1807. https://data.gateapi.io/api2/1/ticker/one3s_usdt
  1808. https://data.gateapi.io/api2/1/ticker/hbar3l_usdt
  1809. https://data.gateapi.io/api2/1/ticker/hbar3s_usdt
  1810. https://data.gateapi.io/api2/1/ticker/sxp3l_usdt
  1811. https://data.gateapi.io/api2/1/ticker/sxp3s_usdt
  1812. https://data.gateapi.io/api2/1/ticker/xec3l_usdt
  1813. https://data.gateapi.io/api2/1/ticker/xec3s_usdt
  1814. https://data.gateapi.io/api2/1/ticker/lit3l_usdt
  1815. https://data.gateapi.io/api2/1/ticker/lit3s_usdt
  1816. https://data.gateapi.io/api2/1/ticker/mina3l_usdt
  1817. https://data.gateapi.io/api2/1/ticker/mina3s_usdt
  1818. https://data.gateapi.io/api2/1/ticker/gala3l_usdt
  1819. https://data.gateapi.io/api2/1/ticker/gala3s_usdt
  1820. https://data.gateapi.io/api2/1/ticker/ftt3l_usdt
  1821. https://data.gateapi.io/api2/1/ticker/ftt3s_usdt
  1822. https://data.gateapi.io/api2/1/ticker/c983l_usdt
  1823. https://data.gateapi.io/api2/1/ticker/c983s_usdt
  1824. https://data.gateapi.io/api2/1/ticker/dydx3l_usdt
  1825. https://data.gateapi.io/api2/1/ticker/dydx3s_usdt
  1826. https://data.gateapi.io/api2/1/ticker/mtl3l_usdt
  1827. https://data.gateapi.io/api2/1/ticker/mtl3s_usdt
  1828. https://data.gateapi.io/api2/1/ticker/ftm3l_usdt
  1829. https://data.gateapi.io/api2/1/ticker/ftm3s_usdt
  1830. https://data.gateapi.io/api2/1/ticker/sand3l_usdt
  1831. https://data.gateapi.io/api2/1/ticker/sand3s_usdt
  1832. https://data.gateapi.io/api2/1/ticker/rune3l_usdt
  1833. https://data.gateapi.io/api2/1/ticker/rune3s_usdt
  1834. https://data.gateapi.io/api2/1/ticker/icp3l_usdt
  1835. https://data.gateapi.io/api2/1/ticker/icp3s_usdt
  1836. https://data.gateapi.io/api2/1/ticker/shib3l_usdt
  1837. https://data.gateapi.io/api2/1/ticker/shib3s_usdt
  1838. https://data.gateapi.io/api2/1/ticker/ach3l_usdt
  1839. https://data.gateapi.io/api2/1/ticker/ach3s_usdt
  1840. https://data.gateapi.io/api2/1/ticker/alice3l_usdt
  1841. https://data.gateapi.io/api2/1/ticker/alice3s_usdt
  1842. https://data.gateapi.io/api2/1/ticker/axs3l_usdt
  1843. https://data.gateapi.io/api2/1/ticker/axs3s_usdt
  1844. https://data.gateapi.io/api2/1/ticker/matic3l_usdt
  1845. https://data.gateapi.io/api2/1/ticker/matic3s_usdt
  1846. https://data.gateapi.io/api2/1/ticker/apt3l_usdt
  1847. https://data.gateapi.io/api2/1/ticker/apt3s_usdt
  1848. https://data.gateapi.io/api2/1/ticker/btc5l_usdt
  1849. https://data.gateapi.io/api2/1/ticker/btc5s_usdt
  1850. https://data.gateapi.io/api2/1/ticker/doge5l_usdt
  1851. https://data.gateapi.io/api2/1/ticker/doge5s_usdt
  1852. https://data.gateapi.io/api2/1/ticker/axs5l_usdt
  1853. https://data.gateapi.io/api2/1/ticker/axs5s_usdt
  1854. https://data.gateapi.io/api2/1/ticker/uni5l_usdt
  1855. https://data.gateapi.io/api2/1/ticker/uni5s_usdt
  1856. https://data.gateapi.io/api2/1/ticker/link5l_usdt
  1857. https://data.gateapi.io/api2/1/ticker/link5s_usdt
  1858. https://data.gateapi.io/api2/1/ticker/gala5l_usdt
  1859. https://data.gateapi.io/api2/1/ticker/gala5s_usdt
  1860. https://data.gateapi.io/api2/1/ticker/shib5l_usdt
  1861. https://data.gateapi.io/api2/1/ticker/shib5s_usdt
  1862. https://data.gateapi.io/api2/1/ticker/bch5l_usdt
  1863. https://data.gateapi.io/api2/1/ticker/bch5s_usdt
  1864. https://data.gateapi.io/api2/1/ticker/dot5l_usdt
  1865. https://data.gateapi.io/api2/1/ticker/dot5s_usdt
  1866. https://data.gateapi.io/api2/1/ticker/xrp5l_usdt
  1867. https://data.gateapi.io/api2/1/ticker/xrp5s_usdt
  1868. https://data.gateapi.io/api2/1/ticker/bsv5l_usdt
  1869. https://data.gateapi.io/api2/1/ticker/bsv5s_usdt
  1870. https://data.gateapi.io/api2/1/ticker/ltc5l_usdt
  1871. https://data.gateapi.io/api2/1/ticker/ltc5s_usdt
  1872. https://data.gateapi.io/api2/1/ticker/eos5l_usdt
  1873. https://data.gateapi.io/api2/1/ticker/eos5s_usdt
  1874. https://data.gateapi.io/api2/1/ticker/source_usdt
  1875. https://data.gateapi.io/api2/1/ticker/source_eth
  1876. https://data.gateapi.io/api2/1/ticker/celo_usdt
  1877. https://data.gateapi.io/api2/1/ticker/hpb_usdt
  1878. https://data.gateapi.io/api2/1/ticker/hpb_eth
  1879. https://data.gateapi.io/api2/1/ticker/cfx_usdt
  1880. https://data.gateapi.io/api2/1/ticker/cfx_eth
  1881. https://data.gateapi.io/api2/1/ticker/fti_usdt
  1882. https://data.gateapi.io/api2/1/ticker/fti_eth
  1883. https://data.gateapi.io/api2/1/ticker/sop_eth
  1884. https://data.gateapi.io/api2/1/ticker/sop_usdt
  1885. https://data.gateapi.io/api2/1/ticker/lemo_usdt
  1886. https://data.gateapi.io/api2/1/ticker/lemo_eth
  1887. https://data.gateapi.io/api2/1/ticker/eon_eth
  1888. https://data.gateapi.io/api2/1/ticker/pundix_eth
  1889. https://data.gateapi.io/api2/1/ticker/pundix_usdt
  1890. https://data.gateapi.io/api2/1/ticker/qkc_usdt
  1891. https://data.gateapi.io/api2/1/ticker/qkc_eth
  1892. https://data.gateapi.io/api2/1/ticker/qkc_btc
  1893. https://data.gateapi.io/api2/1/ticker/iotx_usdt
  1894. https://data.gateapi.io/api2/1/ticker/iotx_eth
  1895. https://data.gateapi.io/api2/1/ticker/red_usdt
  1896. https://data.gateapi.io/api2/1/ticker/red_eth
  1897. https://data.gateapi.io/api2/1/ticker/lba_usdt
  1898. https://data.gateapi.io/api2/1/ticker/lba_eth
  1899. https://data.gateapi.io/api2/1/ticker/open_usdt
  1900. https://data.gateapi.io/api2/1/ticker/open_eth
  1901. https://data.gateapi.io/api2/1/ticker/mith_usdt
  1902. https://data.gateapi.io/api2/1/ticker/mith_eth
  1903. https://data.gateapi.io/api2/1/ticker/skm_usdt
  1904. https://data.gateapi.io/api2/1/ticker/skm_eth
  1905. https://data.gateapi.io/api2/1/ticker/xvg_usdt
  1906. https://data.gateapi.io/api2/1/ticker/xvg_btc
  1907. https://data.gateapi.io/api2/1/ticker/nano_usdt
  1908. https://data.gateapi.io/api2/1/ticker/nano_btc
  1909. https://data.gateapi.io/api2/1/ticker/nbai_eth
  1910. https://data.gateapi.io/api2/1/ticker/upp_eth
  1911. https://data.gateapi.io/api2/1/ticker/atmi_eth
  1912. https://data.gateapi.io/api2/1/ticker/tmt_eth
  1913. https://data.gateapi.io/api2/1/ticker/strax_usdt
  1914. https://data.gateapi.io/api2/1/ticker/strax_eth
  1915. https://data.gateapi.io/api2/1/ticker/strax_btc
  1916. https://data.gateapi.io/api2/1/ticker/edg_usdt
  1917. https://data.gateapi.io/api2/1/ticker/edg_eth
  1918. https://data.gateapi.io/api2/1/ticker/stx_usdt
  1919. https://data.gateapi.io/api2/1/ticker/stx_eth
  1920. https://data.gateapi.io/api2/1/ticker/egld_usdt
  1921. https://data.gateapi.io/api2/1/ticker/egld_eth
  1922. https://data.gateapi.io/api2/1/ticker/xprt_usdt
  1923. https://data.gateapi.io/api2/1/ticker/xprt_eth
  1924. https://data.gateapi.io/api2/1/ticker/cspr_usdt
  1925. https://data.gateapi.io/api2/1/ticker/cspr_eth
  1926. https://data.gateapi.io/api2/1/ticker/okt_usdt
  1927. https://data.gateapi.io/api2/1/ticker/okt_eth
  1928. https://data.gateapi.io/api2/1/ticker/fis_usdt
  1929. https://data.gateapi.io/api2/1/ticker/fis_eth
  1930. https://data.gateapi.io/api2/1/ticker/ht_usdt
  1931. https://data.gateapi.io/api2/1/ticker/ht_btc
  1932. https://data.gateapi.io/api2/1/ticker/go_usdt
  1933. https://data.gateapi.io/api2/1/ticker/go_eth
  1934. https://data.gateapi.io/api2/1/ticker/omi_usdt
  1935. https://data.gateapi.io/api2/1/ticker/omi_eth
  1936. https://data.gateapi.io/api2/1/ticker/op_usdt
  1937. https://data.gateapi.io/api2/1/ticker/op_eth
  1938. https://data.gateapi.io/api2/1/ticker/op_usdc
  1939. https://data.gateapi.io/api2/1/ticker/mdx_usdt
  1940. https://data.gateapi.io/api2/1/ticker/mdx_eth
  1941. https://data.gateapi.io/api2/1/ticker/filda_usdt
  1942. https://data.gateapi.io/api2/1/ticker/filda_eth
  1943. https://data.gateapi.io/api2/1/ticker/war_usdt
  1944. https://data.gateapi.io/api2/1/ticker/war_eth
  1945. https://data.gateapi.io/api2/1/ticker/dog_usdt
  1946. https://data.gateapi.io/api2/1/ticker/dog_eth
  1947. https://data.gateapi.io/api2/1/ticker/xnft_usdt
  1948. https://data.gateapi.io/api2/1/ticker/xnft_eth
  1949. https://data.gateapi.io/api2/1/ticker/lava_usdt
  1950. https://data.gateapi.io/api2/1/ticker/lava_eth
  1951. https://data.gateapi.io/api2/1/ticker/bxh_usdt
  1952. https://data.gateapi.io/api2/1/ticker/bxh_eth
  1953. https://data.gateapi.io/api2/1/ticker/slnv2_usdt
  1954. https://data.gateapi.io/api2/1/ticker/slnv2_eth
  1955. https://data.gateapi.io/api2/1/ticker/bags_usdt
  1956. https://data.gateapi.io/api2/1/ticker/bags_eth
  1957. https://data.gateapi.io/api2/1/ticker/cir_usdt
  1958. https://data.gateapi.io/api2/1/ticker/cir_eth
  1959. https://data.gateapi.io/api2/1/ticker/bnb_usdt
  1960. https://data.gateapi.io/api2/1/ticker/bnb_btc
  1961. https://data.gateapi.io/api2/1/ticker/bnb_usdc
  1962. https://data.gateapi.io/api2/1/ticker/bbk_eth
  1963. https://data.gateapi.io/api2/1/ticker/edr_eth
  1964. https://data.gateapi.io/api2/1/ticker/met_usdt
  1965. https://data.gateapi.io/api2/1/ticker/tct_eth
  1966. https://data.gateapi.io/api2/1/ticker/tct_usdt
  1967. https://data.gateapi.io/api2/1/ticker/mxc_usdt
  1968. https://data.gateapi.io/api2/1/ticker/mxc_btc
  1969. https://data.gateapi.io/api2/1/ticker/mxc_eth
  1970. https://data.gateapi.io/api2/1/ticker/pwar_usdt
  1971. https://data.gateapi.io/api2/1/ticker/pwar_eth
  1972. https://data.gateapi.io/api2/1/ticker/skill_usdt
  1973. https://data.gateapi.io/api2/1/ticker/skill_eth
  1974. https://data.gateapi.io/api2/1/ticker/ygg_usdt
  1975. https://data.gateapi.io/api2/1/ticker/ygg_eth
  1976. https://data.gateapi.io/api2/1/ticker/sps_usdt
  1977. https://data.gateapi.io/api2/1/ticker/sps_eth
  1978. https://data.gateapi.io/api2/1/ticker/nftb_usdt
  1979. https://data.gateapi.io/api2/1/ticker/nftb_eth
  1980. https://data.gateapi.io/api2/1/ticker/hero_usdt
  1981. https://data.gateapi.io/api2/1/ticker/hero_eth
  1982. https://data.gateapi.io/api2/1/ticker/dpet_usdt
  1983. https://data.gateapi.io/api2/1/ticker/dpet_eth
  1984. https://data.gateapi.io/api2/1/ticker/fevr_usdt
  1985. https://data.gateapi.io/api2/1/ticker/ooe_usdt
  1986. https://data.gateapi.io/api2/1/ticker/ooe_eth
  1987. https://data.gateapi.io/api2/1/ticker/wex_usdt
  1988. https://data.gateapi.io/api2/1/ticker/woop_usdt
  1989. https://data.gateapi.io/api2/1/ticker/woop_eth
  1990. https://data.gateapi.io/api2/1/ticker/kalm_usdt
  1991. https://data.gateapi.io/api2/1/ticker/kpad_usdt
  1992. https://data.gateapi.io/api2/1/ticker/kpad_eth
  1993. https://data.gateapi.io/api2/1/ticker/dek_usdt
  1994. https://data.gateapi.io/api2/1/ticker/babydoge_usdt
  1995. https://data.gateapi.io/api2/1/ticker/ass_usdt
  1996. https://data.gateapi.io/api2/1/ticker/pig_usdt
  1997. https://data.gateapi.io/api2/1/ticker/doggy_usdt
  1998. https://data.gateapi.io/api2/1/ticker/fine_usdt
  1999. https://data.gateapi.io/api2/1/ticker/fine_eth
  2000. https://data.gateapi.io/api2/1/ticker/lowb_usdt
  2001. https://data.gateapi.io/api2/1/ticker/bscs_usdt
  2002. https://data.gateapi.io/api2/1/ticker/bscs_eth
  2003. https://data.gateapi.io/api2/1/ticker/argon_usdt
  2004. https://data.gateapi.io/api2/1/ticker/argon_eth
  2005. https://data.gateapi.io/api2/1/ticker/safemars_usdt
  2006. https://data.gateapi.io/api2/1/ticker/safemoon_usdt
  2007. https://data.gateapi.io/api2/1/ticker/psg_usdt
  2008. https://data.gateapi.io/api2/1/ticker/psg_eth
  2009. https://data.gateapi.io/api2/1/ticker/nrv_usdt
  2010. https://data.gateapi.io/api2/1/ticker/nrv_eth
  2011. https://data.gateapi.io/api2/1/ticker/pet_usdt
  2012. https://data.gateapi.io/api2/1/ticker/pet_eth
  2013. https://data.gateapi.io/api2/1/ticker/pet_btc
  2014. https://data.gateapi.io/api2/1/ticker/tko_usdt
  2015. https://data.gateapi.io/api2/1/ticker/tko_eth
  2016. https://data.gateapi.io/api2/1/ticker/alpaca_usdt
  2017. https://data.gateapi.io/api2/1/ticker/alpaca_eth
  2018. https://data.gateapi.io/api2/1/ticker/epx_usdt
  2019. https://data.gateapi.io/api2/1/ticker/epx_eth
  2020. https://data.gateapi.io/api2/1/ticker/bry_usdt
  2021. https://data.gateapi.io/api2/1/ticker/bry_eth
  2022. https://data.gateapi.io/api2/1/ticker/bscpad_usdt
  2023. https://data.gateapi.io/api2/1/ticker/bscpad_eth
  2024. https://data.gateapi.io/api2/1/ticker/ctk_usdt
  2025. https://data.gateapi.io/api2/1/ticker/ctk_eth
  2026. https://data.gateapi.io/api2/1/ticker/btcst_usdt
  2027. https://data.gateapi.io/api2/1/ticker/btcst_eth
  2028. https://data.gateapi.io/api2/1/ticker/tools_usdt
  2029. https://data.gateapi.io/api2/1/ticker/tools_eth
  2030. https://data.gateapi.io/api2/1/ticker/auto_usdt
  2031. https://data.gateapi.io/api2/1/ticker/auto_eth
  2032. https://data.gateapi.io/api2/1/ticker/juld_usdt
  2033. https://data.gateapi.io/api2/1/ticker/juld_eth
  2034. https://data.gateapi.io/api2/1/ticker/egg_usdt
  2035. https://data.gateapi.io/api2/1/ticker/egg_eth
  2036. https://data.gateapi.io/api2/1/ticker/cake_usdt
  2037. https://data.gateapi.io/api2/1/ticker/cake_eth
  2038. https://data.gateapi.io/api2/1/ticker/sfp_usdt
  2039. https://data.gateapi.io/api2/1/ticker/sfp_eth
  2040. https://data.gateapi.io/api2/1/ticker/bake_usdt
  2041. https://data.gateapi.io/api2/1/ticker/bake_eth
  2042. https://data.gateapi.io/api2/1/ticker/fra_usdt
  2043. https://data.gateapi.io/api2/1/ticker/fra_eth
  2044. https://data.gateapi.io/api2/1/ticker/twt_usdt
  2045. https://data.gateapi.io/api2/1/ticker/twt_eth
  2046. https://data.gateapi.io/api2/1/ticker/ava_usdt
  2047. https://data.gateapi.io/api2/1/ticker/cro_usdt
  2048. https://data.gateapi.io/api2/1/ticker/aly_usdt
  2049. https://data.gateapi.io/api2/1/ticker/win_usdt
  2050. https://data.gateapi.io/api2/1/ticker/sun_usdt
  2051. https://data.gateapi.io/api2/1/ticker/mtv_usdt
  2052. https://data.gateapi.io/api2/1/ticker/one_usdt
  2053. https://data.gateapi.io/api2/1/ticker/arpa_usdt
  2054. https://data.gateapi.io/api2/1/ticker/arpa_eth
  2055. https://data.gateapi.io/api2/1/ticker/dili_usdt
  2056. https://data.gateapi.io/api2/1/ticker/algo_usdt
  2057. https://data.gateapi.io/api2/1/ticker/pi_usdt
  2058. https://data.gateapi.io/api2/1/ticker/pi_btc
  2059. https://data.gateapi.io/api2/1/ticker/ckb_usdt
  2060. https://data.gateapi.io/api2/1/ticker/ckb_btc
  2061. https://data.gateapi.io/api2/1/ticker/ckb_eth
  2062. https://data.gateapi.io/api2/1/ticker/bkc_usdt
  2063. https://data.gateapi.io/api2/1/ticker/bxc_usdt
  2064. https://data.gateapi.io/api2/1/ticker/bxc_eth
  2065. https://data.gateapi.io/api2/1/ticker/hc_usdt
  2066. https://data.gateapi.io/api2/1/ticker/hc_btc
  2067. https://data.gateapi.io/api2/1/ticker/hc_eth
  2068. https://data.gateapi.io/api2/1/ticker/gard_usdt
  2069. https://data.gateapi.io/api2/1/ticker/gard_eth
  2070. https://data.gateapi.io/api2/1/ticker/alu_usdt
  2071. https://data.gateapi.io/api2/1/ticker/alu_eth
  2072. https://data.gateapi.io/api2/1/ticker/meli_usdt
  2073. https://data.gateapi.io/api2/1/ticker/kingshib_usdt
  2074. https://data.gateapi.io/api2/1/ticker/quack_usdt
  2075. https://data.gateapi.io/api2/1/ticker/piza_usdt
  2076. https://data.gateapi.io/api2/1/ticker/gan_usdt
  2077. https://data.gateapi.io/api2/1/ticker/pot_usdt
  2078. https://data.gateapi.io/api2/1/ticker/mons_usdt
  2079. https://data.gateapi.io/api2/1/ticker/place_usdt
  2080. https://data.gateapi.io/api2/1/ticker/cate_usdt
  2081. https://data.gateapi.io/api2/1/ticker/betu_usdt
  2082. https://data.gateapi.io/api2/1/ticker/betu_eth
  2083. https://data.gateapi.io/api2/1/ticker/rena_usdt
  2084. https://data.gateapi.io/api2/1/ticker/shill_usdt
  2085. https://data.gateapi.io/api2/1/ticker/ggg_usdt
  2086. https://data.gateapi.io/api2/1/ticker/altb_usdt
  2087. https://data.gateapi.io/api2/1/ticker/dal_usdt
  2088. https://data.gateapi.io/api2/1/ticker/nbp_usdt
  2089. https://data.gateapi.io/api2/1/ticker/nbp_eth
  2090. https://data.gateapi.io/api2/1/ticker/hello_usdt
  2091. https://data.gateapi.io/api2/1/ticker/kmon_usdt
  2092. https://data.gateapi.io/api2/1/ticker/ccar_usdt
  2093. https://data.gateapi.io/api2/1/ticker/xpress_usdt
  2094. https://data.gateapi.io/api2/1/ticker/plspad_usdt
  2095. https://data.gateapi.io/api2/1/ticker/tita_usdt
  2096. https://data.gateapi.io/api2/1/ticker/tita_eth
  2097. https://data.gateapi.io/api2/1/ticker/bp_usdt
  2098. https://data.gateapi.io/api2/1/ticker/squid_usdt
  2099. https://data.gateapi.io/api2/1/ticker/squid_eth
  2100. https://data.gateapi.io/api2/1/ticker/dxct_usdt
  2101. https://data.gateapi.io/api2/1/ticker/dxct_eth
  2102. https://data.gateapi.io/api2/1/ticker/wagyu_usdt
  2103. https://data.gateapi.io/api2/1/ticker/wagyu_eth
  2104. https://data.gateapi.io/api2/1/ticker/vlxpad_usdt
  2105. https://data.gateapi.io/api2/1/ticker/vlxpad_eth
  2106. https://data.gateapi.io/api2/1/ticker/cummies_usdt
  2107. https://data.gateapi.io/api2/1/ticker/gzone_usdt
  2108. https://data.gateapi.io/api2/1/ticker/gzone_eth
  2109. https://data.gateapi.io/api2/1/ticker/yooshi_usdt
  2110. https://data.gateapi.io/api2/1/ticker/lfw_usdt
  2111. https://data.gateapi.io/api2/1/ticker/lazio_usdt
  2112. https://data.gateapi.io/api2/1/ticker/lazio_eth
  2113. https://data.gateapi.io/api2/1/ticker/hera_usdt
  2114. https://data.gateapi.io/api2/1/ticker/ttk_usdt
  2115. https://data.gateapi.io/api2/1/ticker/sfund_usdt
  2116. https://data.gateapi.io/api2/1/ticker/he_usdt
  2117. https://data.gateapi.io/api2/1/ticker/astro_usdt
  2118. https://data.gateapi.io/api2/1/ticker/astro_eth
  2119. https://data.gateapi.io/api2/1/ticker/dark_usdt
  2120. https://data.gateapi.io/api2/1/ticker/arv_usdt
  2121. https://data.gateapi.io/api2/1/ticker/tokau_usdt
  2122. https://data.gateapi.io/api2/1/ticker/srp_usdt
  2123. https://data.gateapi.io/api2/1/ticker/kws_usdt
  2124. https://data.gateapi.io/api2/1/ticker/shi_usdt
  2125. https://data.gateapi.io/api2/1/ticker/ctt_usdt
  2126. https://data.gateapi.io/api2/1/ticker/xwg_usdt
  2127. https://data.gateapi.io/api2/1/ticker/beefi_usdt
  2128. https://data.gateapi.io/api2/1/ticker/beefi_eth
  2129. https://data.gateapi.io/api2/1/ticker/mist_usdt
  2130. https://data.gateapi.io/api2/1/ticker/mist_eth
  2131. https://data.gateapi.io/api2/1/ticker/blin_usdt
  2132. https://data.gateapi.io/api2/1/ticker/moni_usdt
  2133. https://data.gateapi.io/api2/1/ticker/ping_usdt
  2134. https://data.gateapi.io/api2/1/ticker/gafi_usdt
  2135. https://data.gateapi.io/api2/1/ticker/gafi_eth
  2136. https://data.gateapi.io/api2/1/ticker/xpnet_usdt
  2137. https://data.gateapi.io/api2/1/ticker/xil_usdt
  2138. https://data.gateapi.io/api2/1/ticker/baby_usdt
  2139. https://data.gateapi.io/api2/1/ticker/fiwa_usdt
  2140. https://data.gateapi.io/api2/1/ticker/ops_usdt
  2141. https://data.gateapi.io/api2/1/ticker/ops_eth
  2142. https://data.gateapi.io/api2/1/ticker/raca_usdt
  2143. https://data.gateapi.io/api2/1/ticker/wsg_usdt
  2144. https://data.gateapi.io/api2/1/ticker/hod_usdt
  2145. https://data.gateapi.io/api2/1/ticker/xvs_usdt
  2146. https://data.gateapi.io/api2/1/ticker/xvs_eth
  2147. https://data.gateapi.io/api2/1/ticker/hibiki_usdt
  2148. https://data.gateapi.io/api2/1/ticker/pera_usdt
  2149. https://data.gateapi.io/api2/1/ticker/bmon_usdt
  2150. https://data.gateapi.io/api2/1/ticker/bmon_eth
  2151. https://data.gateapi.io/api2/1/ticker/chess_usdt
  2152. https://data.gateapi.io/api2/1/ticker/chess_eth
  2153. https://data.gateapi.io/api2/1/ticker/pvu_usdt
  2154. https://data.gateapi.io/api2/1/ticker/pvu_eth
  2155. https://data.gateapi.io/api2/1/ticker/naft_usdt
  2156. https://data.gateapi.io/api2/1/ticker/fan_usdt
  2157. https://data.gateapi.io/api2/1/ticker/fan_eth
  2158. https://data.gateapi.io/api2/1/ticker/cs_eth
  2159. https://data.gateapi.io/api2/1/ticker/cs_usdt
  2160. https://data.gateapi.io/api2/1/ticker/man_eth
  2161. https://data.gateapi.io/api2/1/ticker/man_usdt
  2162. https://data.gateapi.io/api2/1/ticker/rem_eth
  2163. https://data.gateapi.io/api2/1/ticker/rem_usdt
  2164. https://data.gateapi.io/api2/1/ticker/lym_eth
  2165. https://data.gateapi.io/api2/1/ticker/lym_btc
  2166. https://data.gateapi.io/api2/1/ticker/lym_usdt
  2167. https://data.gateapi.io/api2/1/ticker/instar_eth
  2168. https://data.gateapi.io/api2/1/ticker/zpt_eth
  2169. https://data.gateapi.io/api2/1/ticker/zpt_usdt
  2170. https://data.gateapi.io/api2/1/ticker/zpt_btc
  2171. https://data.gateapi.io/api2/1/ticker/ong_eth
  2172. https://data.gateapi.io/api2/1/ticker/ong_usdt
  2173. https://data.gateapi.io/api2/1/ticker/wing_eth
  2174. https://data.gateapi.io/api2/1/ticker/wing_usdt
  2175. https://data.gateapi.io/api2/1/ticker/ont_eth
  2176. https://data.gateapi.io/api2/1/ticker/ont_usdt
  2177. https://data.gateapi.io/api2/1/ticker/bft_eth
  2178. https://data.gateapi.io/api2/1/ticker/bft_usdt
  2179. https://data.gateapi.io/api2/1/ticker/iht_eth
  2180. https://data.gateapi.io/api2/1/ticker/iht_usdt
  2181. https://data.gateapi.io/api2/1/ticker/senc_eth
  2182. https://data.gateapi.io/api2/1/ticker/senc_usdt
  2183. https://data.gateapi.io/api2/1/ticker/tomo_eth
  2184. https://data.gateapi.io/api2/1/ticker/tomo_usdt
  2185. https://data.gateapi.io/api2/1/ticker/elec_eth
  2186. https://data.gateapi.io/api2/1/ticker/elec_usdt
  2187. https://data.gateapi.io/api2/1/ticker/ship_eth
  2188. https://data.gateapi.io/api2/1/ticker/tfd_eth
  2189. https://data.gateapi.io/api2/1/ticker/snx_usdt
  2190. https://data.gateapi.io/api2/1/ticker/hur_eth
  2191. https://data.gateapi.io/api2/1/ticker/lst_eth
  2192. https://data.gateapi.io/api2/1/ticker/swth_eth
  2193. https://data.gateapi.io/api2/1/ticker/swth_usdt
  2194. https://data.gateapi.io/api2/1/ticker/nkn_eth
  2195. https://data.gateapi.io/api2/1/ticker/nkn_usdt
  2196. https://data.gateapi.io/api2/1/ticker/lrn_eth
  2197. https://data.gateapi.io/api2/1/ticker/lrn_usdt
  2198. https://data.gateapi.io/api2/1/ticker/eosdac_eth
  2199. https://data.gateapi.io/api2/1/ticker/eosdac_usdt
  2200. https://data.gateapi.io/api2/1/ticker/add_eth
  2201. https://data.gateapi.io/api2/1/ticker/iq_eth
  2202. https://data.gateapi.io/api2/1/ticker/meetone_eth
  2203. https://data.gateapi.io/api2/1/ticker/dock_usdt
  2204. https://data.gateapi.io/api2/1/ticker/dock_eth
  2205. https://data.gateapi.io/api2/1/ticker/gse_usdt
  2206. https://data.gateapi.io/api2/1/ticker/gse_eth
  2207. https://data.gateapi.io/api2/1/ticker/rating_usdt
  2208. https://data.gateapi.io/api2/1/ticker/rating_eth
  2209. https://data.gateapi.io/api2/1/ticker/hsc_usdt
  2210. https://data.gateapi.io/api2/1/ticker/hsc_eth
  2211. https://data.gateapi.io/api2/1/ticker/hit_usdt
  2212. https://data.gateapi.io/api2/1/ticker/hit_eth
  2213. https://data.gateapi.io/api2/1/ticker/dx_usdt
  2214. https://data.gateapi.io/api2/1/ticker/dx_eth
  2215. https://data.gateapi.io/api2/1/ticker/cnns_eth
  2216. https://data.gateapi.io/api2/1/ticker/cnns_usdt
  2217. https://data.gateapi.io/api2/1/ticker/drep_eth
  2218. https://data.gateapi.io/api2/1/ticker/drep_usdt
  2219. https://data.gateapi.io/api2/1/ticker/mbl_usdt
  2220. https://data.gateapi.io/api2/1/ticker/mbl_eth
  2221. https://data.gateapi.io/api2/1/ticker/gmat_usdt
  2222. https://data.gateapi.io/api2/1/ticker/gmat_eth
  2223. https://data.gateapi.io/api2/1/ticker/mix_usdt
  2224. https://data.gateapi.io/api2/1/ticker/mix_eth
  2225. https://data.gateapi.io/api2/1/ticker/leo_usdt
  2226. https://data.gateapi.io/api2/1/ticker/leo_btc
  2227. https://data.gateapi.io/api2/1/ticker/wicc_usdt
  2228. https://data.gateapi.io/api2/1/ticker/wicc_eth
  2229. https://data.gateapi.io/api2/1/ticker/wgrt_usdt
  2230. https://data.gateapi.io/api2/1/ticker/sero_usdt
  2231. https://data.gateapi.io/api2/1/ticker/sero_eth
  2232. https://data.gateapi.io/api2/1/ticker/coral_usdt
  2233. https://data.gateapi.io/api2/1/ticker/coral_eth
  2234. https://data.gateapi.io/api2/1/ticker/vidy_usdt
  2235. https://data.gateapi.io/api2/1/ticker/vidy_eth
  2236. https://data.gateapi.io/api2/1/ticker/kgc_usdt
  2237. https://data.gateapi.io/api2/1/ticker/spirit_usdt
  2238. https://data.gateapi.io/api2/1/ticker/boo_usdt
  2239. https://data.gateapi.io/api2/1/ticker/boo_eth
  2240. https://data.gateapi.io/api2/1/ticker/ftm_usdt
  2241. https://data.gateapi.io/api2/1/ticker/ftm_eth
  2242. https://data.gateapi.io/api2/1/ticker/rune_usdt
  2243. https://data.gateapi.io/api2/1/ticker/rune_eth
  2244. https://data.gateapi.io/api2/1/ticker/cos_usdt
  2245. https://data.gateapi.io/api2/1/ticker/cbk_usdt
  2246. https://data.gateapi.io/api2/1/ticker/cbk_eth
  2247. https://data.gateapi.io/api2/1/ticker/cbk_btc
  2248. https://data.gateapi.io/api2/1/ticker/opa_usdt
  2249. https://data.gateapi.io/api2/1/ticker/mbox_usdt
  2250. https://data.gateapi.io/api2/1/ticker/mbox_eth
  2251. https://data.gateapi.io/api2/1/ticker/mcrn_usdt
  2252. https://data.gateapi.io/api2/1/ticker/mcrn_eth
  2253. https://data.gateapi.io/api2/1/ticker/zoon_usdt
  2254. https://data.gateapi.io/api2/1/ticker/kaby_usdt
  2255. https://data.gateapi.io/api2/1/ticker/mat_usdt
  2256. https://data.gateapi.io/api2/1/ticker/mat_eth
  2257. https://data.gateapi.io/api2/1/ticker/metax_usdt
  2258. https://data.gateapi.io/api2/1/ticker/metax_eth
  2259. https://data.gateapi.io/api2/1/ticker/dmlg_usdt
  2260. https://data.gateapi.io/api2/1/ticker/1art_usdt
  2261. https://data.gateapi.io/api2/1/ticker/mepad_usdt
  2262. https://data.gateapi.io/api2/1/ticker/posi_usdt
  2263. https://data.gateapi.io/api2/1/ticker/thg_usdt
  2264. https://data.gateapi.io/api2/1/ticker/mlk_usdt
  2265. https://data.gateapi.io/api2/1/ticker/mob_usdt
  2266. https://data.gateapi.io/api2/1/ticker/mob_eth
  2267. https://data.gateapi.io/api2/1/ticker/cusd_usdt
  2268. https://data.gateapi.io/api2/1/ticker/cusd_eth
  2269. https://data.gateapi.io/api2/1/ticker/ceur_usdt
  2270. https://data.gateapi.io/api2/1/ticker/ceur_eth
  2271. https://data.gateapi.io/api2/1/ticker/match_usdt
  2272. https://data.gateapi.io/api2/1/ticker/mmm_usdt
  2273. https://data.gateapi.io/api2/1/ticker/gxa_usdt
  2274. https://data.gateapi.io/api2/1/ticker/trcl_usdt
  2275. https://data.gateapi.io/api2/1/ticker/3km_usdt
  2276. https://data.gateapi.io/api2/1/ticker/hibs_usdt
  2277. https://data.gateapi.io/api2/1/ticker/lemn_usdt
  2278. https://data.gateapi.io/api2/1/ticker/grnd_usdt
  2279. https://data.gateapi.io/api2/1/ticker/mbx_usdt
  2280. https://data.gateapi.io/api2/1/ticker/klap_usdt
  2281. https://data.gateapi.io/api2/1/ticker/rndx_usdt
  2282. https://data.gateapi.io/api2/1/ticker/tari_usdt
  2283. https://data.gateapi.io/api2/1/ticker/joy_usdt
  2284. https://data.gateapi.io/api2/1/ticker/olv_usdt
  2285. https://data.gateapi.io/api2/1/ticker/ssx_usdt
  2286. https://data.gateapi.io/api2/1/ticker/npt_usdt
  2287. https://data.gateapi.io/api2/1/ticker/bora_usdt
  2288. https://data.gateapi.io/api2/1/ticker/bora_eth
  2289. https://data.gateapi.io/api2/1/ticker/orb_usdt
  2290. https://data.gateapi.io/api2/1/ticker/zlk_usdt
  2291. https://data.gateapi.io/api2/1/ticker/zlk_eth
  2292. https://data.gateapi.io/api2/1/ticker/amb_usdt
  2293. https://data.gateapi.io/api2/1/ticker/tao_usdt
  2294. https://data.gateapi.io/api2/1/ticker/arch_usdt
  2295. https://data.gateapi.io/api2/1/ticker/sei_usdt
  2296. https://data.gateapi.io/api2/1/ticker/enj_usdt
  2297. https://data.gateapi.io/api2/1/ticker/enj_eth
  2298. https://data.gateapi.io/api2/1/ticker/baseptl_usdt
  2299. https://data.gateapi.io/api2/1/ticker/baseptl_eth
  2300. https://data.gateapi.io/api2/1/ticker/vts_usdt
  2301. https://data.gateapi.io/api2/1/ticker/aura_usdt
  2302. https://data.gateapi.io/api2/1/ticker/xpll_usdt
  2303. https://data.gateapi.io/api2/1/ticker/acn_usdt
  2304. https://data.gateapi.io/api2/1/ticker/maro_usdt
  2305. https://data.gateapi.io/api2/1/ticker/gmmt_usdt
  2306. https://data.gateapi.io/api2/1/ticker/dmc_usdt
  2307. https://data.gateapi.io/api2/1/ticker/omn_usdt
  2308. https://data.gateapi.io/api2/1/ticker/kyve_usdt
  2309. https://data.gateapi.io/api2/1/ticker/chz_eth
  2310. https://data.gateapi.io/api2/1/ticker/tenet_usdt
  2311. https://data.gateapi.io/api2/1/ticker/turbos_usdt
  2312. https://data.gateapi.io/api2/1/ticker/cetus_usdt
  2313. https://data.gateapi.io/api2/1/ticker/suip_usdt
  2314. https://data.gateapi.io/api2/1/ticker/suia_usdt
  2315. https://data.gateapi.io/api2/1/ticker/sui_usdt
  2316. https://data.gateapi.io/api2/1/ticker/sui_usdc
  2317. https://data.gateapi.io/api2/1/ticker/neon_usdt
  2318. https://data.gateapi.io/api2/1/ticker/iron_usdt
  2319. https://data.gateapi.io/api2/1/ticker/nom_usdt
  2320. https://data.gateapi.io/api2/1/ticker/kas_usdt
  2321. https://data.gateapi.io/api2/1/ticker/glq_usdt
  2322. https://data.gateapi.io/api2/1/ticker/glq_eth
  2323. https://data.gateapi.io/api2/1/ticker/eq_usdt
  2324. https://data.gateapi.io/api2/1/ticker/baju_usdt
  2325. https://data.gateapi.io/api2/1/ticker/nuls_usdt
  2326. https://data.gateapi.io/api2/1/ticker/nuls_eth
  2327. https://data.gateapi.io/api2/1/ticker/canto_usdt
  2328. https://data.gateapi.io/api2/1/ticker/lamb_usdt
  2329. https://data.gateapi.io/api2/1/ticker/lamb_eth
  2330. https://data.gateapi.io/api2/1/ticker/flr_usdt
  2331. https://data.gateapi.io/api2/1/ticker/soul_eth
  2332. https://data.gateapi.io/api2/1/ticker/soul_usdt
  2333. https://data.gateapi.io/api2/1/ticker/kcal_usdt
  2334. https://data.gateapi.io/api2/1/ticker/oas_usdt
  2335. https://data.gateapi.io/api2/1/ticker/fncy_usdt
  2336. https://data.gateapi.io/api2/1/ticker/clo_usdt
  2337. https://data.gateapi.io/api2/1/ticker/osmo_usdt
  2338. https://data.gateapi.io/api2/1/ticker/nim_usdt
  2339. https://data.gateapi.io/api2/1/ticker/usdn_usdt
  2340. https://data.gateapi.io/api2/1/ticker/polyx_usdt
  2341. https://data.gateapi.io/api2/1/ticker/dfi_usdt
  2342. https://data.gateapi.io/api2/1/ticker/apt_usdt
  2343. https://data.gateapi.io/api2/1/ticker/apt_eth
  2344. https://data.gateapi.io/api2/1/ticker/apt_btc
  2345. https://data.gateapi.io/api2/1/ticker/mojo_usdt
  2346. https://data.gateapi.io/api2/1/ticker/tapt_usdt
  2347. https://data.gateapi.io/api2/1/ticker/plcu_usdt
  2348. https://data.gateapi.io/api2/1/ticker/fnsa_usdt
  2349. https://data.gateapi.io/api2/1/ticker/fnsa_btc
  2350. https://data.gateapi.io/api2/1/ticker/psl_usdt
  2351. https://data.gateapi.io/api2/1/ticker/fpft_usdt
  2352. https://data.gateapi.io/api2/1/ticker/rft_usdt
  2353. https://data.gateapi.io/api2/1/ticker/bft1_usdt
  2354. https://data.gateapi.io/api2/1/ticker/snft1_usdt
  2355. https://data.gateapi.io/api2/1/ticker/bitci_usdt
  2356. https://data.gateapi.io/api2/1/ticker/xpla_usdt
  2357. https://data.gateapi.io/api2/1/ticker/shx_usdt
  2358. https://data.gateapi.io/api2/1/ticker/primal_usdt
  2359. https://data.gateapi.io/api2/1/ticker/spex_usdt
  2360. https://data.gateapi.io/api2/1/ticker/fitfi_usdt
  2361. https://data.gateapi.io/api2/1/ticker/cmp_usdt
  2362. https://data.gateapi.io/api2/1/ticker/ela_usdt
  2363. https://data.gateapi.io/api2/1/ticker/bdx_usdt
  2364. https://data.gateapi.io/api2/1/ticker/bdx_btc
  2365. https://data.gateapi.io/api2/1/ticker/dcrn_usdt
  2366. https://data.gateapi.io/api2/1/ticker/kon_usdt
  2367. https://data.gateapi.io/api2/1/ticker/ztg_usdt
  2368. https://data.gateapi.io/api2/1/ticker/well_usdt
  2369. https://data.gateapi.io/api2/1/ticker/atolo_usdt
  2370. https://data.gateapi.io/api2/1/ticker/ron_usdt
  2371. https://data.gateapi.io/api2/1/ticker/rei_usdt
  2372. https://data.gateapi.io/api2/1/ticker/rei_btc
  2373. https://data.gateapi.io/api2/1/ticker/tdrop_usdt
  2374. https://data.gateapi.io/api2/1/ticker/wifi_usdt
  2375. https://data.gateapi.io/api2/1/ticker/oshi_usdt
  2376. https://data.gateapi.io/api2/1/ticker/ome_usdt
  2377. https://data.gateapi.io/api2/1/ticker/wista_usdt
  2378. https://data.gateapi.io/api2/1/ticker/klima_usdt
  2379. https://data.gateapi.io/api2/1/ticker/fyn_usdt
  2380. https://data.gateapi.io/api2/1/ticker/airtnt_usdt
  2381. https://data.gateapi.io/api2/1/ticker/reelt_usdt
  2382. https://data.gateapi.io/api2/1/ticker/cvtx_usdt
  2383. https://data.gateapi.io/api2/1/ticker/vrjam_usdt
  2384. https://data.gateapi.io/api2/1/ticker/vatreni_usdt
  2385. https://data.gateapi.io/api2/1/ticker/souls_usdt
  2386. https://data.gateapi.io/api2/1/ticker/ask_usdt
  2387. https://data.gateapi.io/api2/1/ticker/itsb_usdt
  2388. https://data.gateapi.io/api2/1/ticker/nxd_usdt
  2389. https://data.gateapi.io/api2/1/ticker/mart_usdt
  2390. https://data.gateapi.io/api2/1/ticker/dag_usdt
  2391. https://data.gateapi.io/api2/1/ticker/dag_eth
  2392. https://data.gateapi.io/api2/1/ticker/dag_btc
  2393. https://data.gateapi.io/api2/1/ticker/deso_usdt
  2394. https://data.gateapi.io/api2/1/ticker/vlx_usdt
  2395. https://data.gateapi.io/api2/1/ticker/htr_usdt
  2396. https://data.gateapi.io/api2/1/ticker/kda_usdt
  2397. https://data.gateapi.io/api2/1/ticker/kda_btc
  2398. https://data.gateapi.io/api2/1/ticker/agix_usdt
  2399. https://data.gateapi.io/api2/1/ticker/dana_usdt
  2400. https://data.gateapi.io/api2/1/ticker/kube_usdt
  2401. https://data.gateapi.io/api2/1/ticker/wrt_usdt
  2402. https://data.gateapi.io/api2/1/ticker/xdc_usdt
  2403. https://data.gateapi.io/api2/1/ticker/xdc_eth
  2404. https://data.gateapi.io/api2/1/ticker/cheq_usdt
  2405. https://data.gateapi.io/api2/1/ticker/meld_usdt
  2406. https://data.gateapi.io/api2/1/ticker/kat_usdt
  2407. https://data.gateapi.io/api2/1/ticker/zat_usdt
  2408. https://data.gateapi.io/api2/1/ticker/wkc_usdt
  2409. https://data.gateapi.io/api2/1/ticker/revu_usdt
  2410. https://data.gateapi.io/api2/1/ticker/pokt_usdt
  2411. https://data.gateapi.io/api2/1/ticker/qtc_usdt
  2412. https://data.gateapi.io/api2/1/ticker/qtc_eth
  2413. https://data.gateapi.io/api2/1/ticker/azero_usdt
  2414. https://data.gateapi.io/api2/1/ticker/single_usdt
  2415. https://data.gateapi.io/api2/1/ticker/roco_usdt
  2416. https://data.gateapi.io/api2/1/ticker/xeta_usdt
  2417. https://data.gateapi.io/api2/1/ticker/hech_usdt
  2418. https://data.gateapi.io/api2/1/ticker/craft_usdt
  2419. https://data.gateapi.io/api2/1/ticker/solo_usdt
  2420. https://data.gateapi.io/api2/1/ticker/solo_btc
  2421. https://data.gateapi.io/api2/1/ticker/coreum_usdt
  2422. https://data.gateapi.io/api2/1/ticker/zone_usdt
  2423. https://data.gateapi.io/api2/1/ticker/sonar_usdt
  2424. https://data.gateapi.io/api2/1/ticker/sonar_eth
  2425. https://data.gateapi.io/api2/1/ticker/acs_usdt
  2426. https://data.gateapi.io/api2/1/ticker/mnde_usdt
  2427. https://data.gateapi.io/api2/1/ticker/cwar_usdt
  2428. https://data.gateapi.io/api2/1/ticker/cwar_eth
  2429. https://data.gateapi.io/api2/1/ticker/defiland_usdt
  2430. https://data.gateapi.io/api2/1/ticker/defiland_eth
  2431. https://data.gateapi.io/api2/1/ticker/xtag_usdt
  2432. https://data.gateapi.io/api2/1/ticker/xtag_eth
  2433. https://data.gateapi.io/api2/1/ticker/ttt_usdt
  2434. https://data.gateapi.io/api2/1/ticker/dust_usdt
  2435. https://data.gateapi.io/api2/1/ticker/ip3_usdt
  2436. https://data.gateapi.io/api2/1/ticker/mplx_usdt
  2437. https://data.gateapi.io/api2/1/ticker/wlkn_usdt
  2438. https://data.gateapi.io/api2/1/ticker/taki_usdt
  2439. https://data.gateapi.io/api2/1/ticker/elu_usdt
  2440. https://data.gateapi.io/api2/1/ticker/wnz_usdt
  2441. https://data.gateapi.io/api2/1/ticker/ratio_usdt
  2442. https://data.gateapi.io/api2/1/ticker/zbc_usdt
  2443. https://data.gateapi.io/api2/1/ticker/gmt_usdt
  2444. https://data.gateapi.io/api2/1/ticker/delfi_usdt
  2445. https://data.gateapi.io/api2/1/ticker/ats_usdt
  2446. https://data.gateapi.io/api2/1/ticker/dio_usdt
  2447. https://data.gateapi.io/api2/1/ticker/prism_usdt
  2448. https://data.gateapi.io/api2/1/ticker/prism_eth
  2449. https://data.gateapi.io/api2/1/ticker/slnd_usdt
  2450. https://data.gateapi.io/api2/1/ticker/slnd_eth
  2451. https://data.gateapi.io/api2/1/ticker/fcon_usdt
  2452. https://data.gateapi.io/api2/1/ticker/gari_usdt
  2453. https://data.gateapi.io/api2/1/ticker/gari_eth
  2454. https://data.gateapi.io/api2/1/ticker/nos_usdt
  2455. https://data.gateapi.io/api2/1/ticker/nos_eth
  2456. https://data.gateapi.io/api2/1/ticker/stsol_usdt
  2457. https://data.gateapi.io/api2/1/ticker/stsol_eth
  2458. https://data.gateapi.io/api2/1/ticker/mbs_usdt
  2459. https://data.gateapi.io/api2/1/ticker/mbs_eth
  2460. https://data.gateapi.io/api2/1/ticker/aprt_usdt
  2461. https://data.gateapi.io/api2/1/ticker/slc_usdt
  2462. https://data.gateapi.io/api2/1/ticker/slc_eth
  2463. https://data.gateapi.io/api2/1/ticker/psy_usdt
  2464. https://data.gateapi.io/api2/1/ticker/psy_eth
  2465. https://data.gateapi.io/api2/1/ticker/vp_usdt
  2466. https://data.gateapi.io/api2/1/ticker/tsugt_usdt
  2467. https://data.gateapi.io/api2/1/ticker/catheon_usdt
  2468. https://data.gateapi.io/api2/1/ticker/scy_usdt
  2469. https://data.gateapi.io/api2/1/ticker/scy_eth
  2470. https://data.gateapi.io/api2/1/ticker/mean_usdt
  2471. https://data.gateapi.io/api2/1/ticker/mean_eth
  2472. https://data.gateapi.io/api2/1/ticker/aart_usdt
  2473. https://data.gateapi.io/api2/1/ticker/aart_eth
  2474. https://data.gateapi.io/api2/1/ticker/sntr_usdt
  2475. https://data.gateapi.io/api2/1/ticker/sntr_eth
  2476. https://data.gateapi.io/api2/1/ticker/unq_usdt
  2477. https://data.gateapi.io/api2/1/ticker/bonk_usdt
  2478. https://data.gateapi.io/api2/1/ticker/doggo_usdt
  2479. https://data.gateapi.io/api2/1/ticker/hades_usdt
  2480. https://data.gateapi.io/api2/1/ticker/stik_usdt
  2481. https://data.gateapi.io/api2/1/ticker/pip_usdt
  2482. https://data.gateapi.io/api2/1/ticker/fame_usdt
  2483. https://data.gateapi.io/api2/1/ticker/am_usdt
  2484. https://data.gateapi.io/api2/1/ticker/ita_usdt
  2485. https://data.gateapi.io/api2/1/ticker/arg_usdt
  2486. https://data.gateapi.io/api2/1/ticker/sauber_usdt
  2487. https://data.gateapi.io/api2/1/ticker/acm_usdt
  2488. https://data.gateapi.io/api2/1/ticker/galo_usdt
  2489. https://data.gateapi.io/api2/1/ticker/ibfk_usdt
  2490. https://data.gateapi.io/api2/1/ticker/inter_usdt
  2491. https://data.gateapi.io/api2/1/ticker/sccp_usdt
  2492. https://data.gateapi.io/api2/1/ticker/spfc_usdt
  2493. https://data.gateapi.io/api2/1/ticker/city_usdt
  2494. https://data.gateapi.io/api2/1/ticker/ala_usdt
  2495. https://data.gateapi.io/api2/1/ticker/goz_usdt
  2496. https://data.gateapi.io/api2/1/ticker/por_usdt
  2497. https://data.gateapi.io/api2/1/ticker/mengo_usdt
  2498. https://data.gateapi.io/api2/1/ticker/nap_usdt
  2499. https://data.gateapi.io/api2/1/ticker/tra_usdt
  2500. https://data.gateapi.io/api2/1/ticker/atm_usdt
  2501. https://data.gateapi.io/api2/1/ticker/afc_usdt
  2502. https://data.gateapi.io/api2/1/ticker/og_usdt
  2503. https://data.gateapi.io/api2/1/ticker/juv_usdt
  2504. https://data.gateapi.io/api2/1/ticker/asr_usdt
  2505. https://data.gateapi.io/api2/1/ticker/doga_usdt
  2506. https://data.gateapi.io/api2/1/ticker/celt_usdt
  2507. https://data.gateapi.io/api2/1/ticker/htm_usdt
  2508. https://data.gateapi.io/api2/1/ticker/ride_usdt
  2509. https://data.gateapi.io/api2/1/ticker/vvs_usdt
  2510. https://data.gateapi.io/api2/1/ticker/vno_usdt
  2511. https://data.gateapi.io/api2/1/ticker/fer_usdt
  2512. https://data.gateapi.io/api2/1/ticker/mtd_usdt
  2513. https://data.gateapi.io/api2/1/ticker/b3x_usdt
  2514. https://data.gateapi.io/api2/1/ticker/xet_usdt
  2515. https://data.gateapi.io/api2/1/ticker/metal_usdt
  2516. https://data.gateapi.io/api2/1/ticker/arb_usdt
  2517. https://data.gateapi.io/api2/1/ticker/arb_usdc
  2518. https://data.gateapi.io/api2/1/ticker/brick_usdt
  2519. https://data.gateapi.io/api2/1/ticker/knj_usdt
  2520. https://data.gateapi.io/api2/1/ticker/bgt_usdt
  2521. https://data.gateapi.io/api2/1/ticker/aibb_usdt
  2522. https://data.gateapi.io/api2/1/ticker/ams_usdt
  2523. https://data.gateapi.io/api2/1/ticker/home_usdt
  2524. https://data.gateapi.io/api2/1/ticker/amc_usdt
  2525. https://data.gateapi.io/api2/1/ticker/arbi_usdt
  2526. https://data.gateapi.io/api2/1/ticker/pogai_usdt
  2527. https://data.gateapi.io/api2/1/ticker/shibai_usdt
  2528. https://data.gateapi.io/api2/1/ticker/grail_usdt
  2529. https://data.gateapi.io/api2/1/ticker/rekt_usdt
  2530. https://data.gateapi.io/api2/1/ticker/aidoge_usdt
  2531. https://data.gateapi.io/api2/1/ticker/aicode_usdt
  2532. https://data.gateapi.io/api2/1/ticker/zzz_usdt
  2533. https://data.gateapi.io/api2/1/ticker/vela_usdt
  2534. https://data.gateapi.io/api2/1/ticker/rdnt_usdt
  2535. https://data.gateapi.io/api2/1/ticker/psi_usdt
  2536. https://data.gateapi.io/api2/1/ticker/magic_usdt
  2537. https://data.gateapi.io/api2/1/ticker/gmx_usdt
  2538. https://data.gateapi.io/api2/1/ticker/alex_usdt
  2539. https://data.gateapi.io/api2/1/ticker/fnz_usdt
  2540. https://data.gateapi.io/api2/1/ticker/lite_usdt
  2541. https://data.gateapi.io/api2/1/ticker/ordi_usdt
  2542. https://data.gateapi.io/api2/1/ticker/ordi_btc
  2543. https://data.gateapi.io/api2/1/ticker/arks_usdt
  2544. https://data.gateapi.io/api2/1/ticker/biop_usdt
  2545. https://data.gateapi.io/api2/1/ticker/majo_usdt
  2546. https://data.gateapi.io/api2/1/ticker/biso_usdt
  2547. https://data.gateapi.io/api2/1/ticker/bsvbrc_usdt
  2548. https://data.gateapi.io/api2/1/ticker/nals_usdt
  2549. https://data.gateapi.io/api2/1/ticker/vmpx_usdt
  2550. https://data.gateapi.io/api2/1/ticker/bankbrc_usdt
  2551. https://data.gateapi.io/api2/1/ticker/pepebrc_usdt
  2552. https://data.gateapi.io/api2/1/ticker/pizabrc_usdt
  2553. https://data.gateapi.io/api2/1/ticker/noot_usdt
  2554. https://data.gateapi.io/api2/1/ticker/trac_usdt
  2555. https://data.gateapi.io/api2/1/ticker/drac_usdt
  2556. https://data.gateapi.io/api2/1/ticker/sao_usdt
  2557. https://data.gateapi.io/api2/1/ticker/vext_usdt
  2558. https://data.gateapi.io/api2/1/ticker/wsm_usdt
  2559. https://data.gateapi.io/api2/1/ticker/loom_usdt
  2560. https://data.gateapi.io/api2/1/ticker/hxa_usdt
  2561. https://data.gateapi.io/api2/1/ticker/paal_usdt
  2562. https://data.gateapi.io/api2/1/ticker/dorkl_usdt
  2563. https://data.gateapi.io/api2/1/ticker/flx_usdt
  2564. https://data.gateapi.io/api2/1/ticker/next_usdt
  2565. https://data.gateapi.io/api2/1/ticker/sdex_usdt
  2566. https://data.gateapi.io/api2/1/ticker/ox_usdt
  2567. https://data.gateapi.io/api2/1/ticker/pyme_usdt
  2568. https://data.gateapi.io/api2/1/ticker/sail_usdt
  2569. https://data.gateapi.io/api2/1/ticker/pyusd_usdt
  2570. https://data.gateapi.io/api2/1/ticker/crvusd_usdt
  2571. https://data.gateapi.io/api2/1/ticker/wld_usdt
  2572. https://data.gateapi.io/api2/1/ticker/cyber_usdt
  2573. https://data.gateapi.io/api2/1/ticker/soph_usdt
  2574. https://data.gateapi.io/api2/1/ticker/unibot_usdt
  2575. https://data.gateapi.io/api2/1/ticker/wagmigames_usdt
  2576. https://data.gateapi.io/api2/1/ticker/arkm_usdt
  2577. https://data.gateapi.io/api2/1/ticker/planet_usdt
  2578. https://data.gateapi.io/api2/1/ticker/doge2_usdt
  2579. https://data.gateapi.io/api2/1/ticker/shib2_usdt
  2580. https://data.gateapi.io/api2/1/ticker/agb_usdt
  2581. https://data.gateapi.io/api2/1/ticker/lbr_usdt
  2582. https://data.gateapi.io/api2/1/ticker/mav_usdt
  2583. https://data.gateapi.io/api2/1/ticker/myth_usdt
  2584. https://data.gateapi.io/api2/1/ticker/els_usdt
  2585. https://data.gateapi.io/api2/1/ticker/ag_usdt
  2586. https://data.gateapi.io/api2/1/ticker/ferc_usdt
  2587. https://data.gateapi.io/api2/1/ticker/combo_usdt
  2588. https://data.gateapi.io/api2/1/ticker/wfai_usdt
  2589. https://data.gateapi.io/api2/1/ticker/qwan_usdt
  2590. https://data.gateapi.io/api2/1/ticker/logt_usdt
  2591. https://data.gateapi.io/api2/1/ticker/obi_usdt
  2592. https://data.gateapi.io/api2/1/ticker/rfd_usdt
  2593. https://data.gateapi.io/api2/1/ticker/infra_usdt
  2594. https://data.gateapi.io/api2/1/ticker/fbx_usdt
  2595. https://data.gateapi.io/api2/1/ticker/lmwr_usdt
  2596. https://data.gateapi.io/api2/1/ticker/sponge_usdt
  2597. https://data.gateapi.io/api2/1/ticker/ladys_usdt
  2598. https://data.gateapi.io/api2/1/ticker/karate_usdt
  2599. https://data.gateapi.io/api2/1/ticker/pooh_usdt
  2600. https://data.gateapi.io/api2/1/ticker/four_usdt
  2601. https://data.gateapi.io/api2/1/ticker/dino_usdt
  2602. https://data.gateapi.io/api2/1/ticker/wsb_usdt
  2603. https://data.gateapi.io/api2/1/ticker/mong_usdt
  2604. https://data.gateapi.io/api2/1/ticker/clips_usdt
  2605. https://data.gateapi.io/api2/1/ticker/haha_usdt
  2606. https://data.gateapi.io/api2/1/ticker/turbo_usdt
  2607. https://data.gateapi.io/api2/1/ticker/sharbi_usdt
  2608. https://data.gateapi.io/api2/1/ticker/gomining_usdt
  2609. https://data.gateapi.io/api2/1/ticker/bear_usdt
  2610. https://data.gateapi.io/api2/1/ticker/dione_usdt
  2611. https://data.gateapi.io/api2/1/ticker/gxe_usdt
  2612. https://data.gateapi.io/api2/1/ticker/aped_usdt
  2613. https://data.gateapi.io/api2/1/ticker/wojak_usdt
  2614. https://data.gateapi.io/api2/1/ticker/agility_usdt
  2615. https://data.gateapi.io/api2/1/ticker/pepe2_usdt
  2616. https://data.gateapi.io/api2/1/ticker/pepe_usdt
  2617. https://data.gateapi.io/api2/1/ticker/pepe_usdc
  2618. https://data.gateapi.io/api2/1/ticker/ad_usdt
  2619. https://data.gateapi.io/api2/1/ticker/pando_usdt
  2620. https://data.gateapi.io/api2/1/ticker/yesp_usdt
  2621. https://data.gateapi.io/api2/1/ticker/rltm_usdt
  2622. https://data.gateapi.io/api2/1/ticker/crown_usdt
  2623. https://data.gateapi.io/api2/1/ticker/agi_usdt
  2624. https://data.gateapi.io/api2/1/ticker/lsd_usdt
  2625. https://data.gateapi.io/api2/1/ticker/myria_usdt
  2626. https://data.gateapi.io/api2/1/ticker/bmex_usdt
  2627. https://data.gateapi.io/api2/1/ticker/ml_usdt
  2628. https://data.gateapi.io/api2/1/ticker/ovo_usdt
  2629. https://data.gateapi.io/api2/1/ticker/id_usdt
  2630. https://data.gateapi.io/api2/1/ticker/optimus_usdt
  2631. https://data.gateapi.io/api2/1/ticker/dzoo_usdt
  2632. https://data.gateapi.io/api2/1/ticker/rjv_usdt
  2633. https://data.gateapi.io/api2/1/ticker/somm_usdt
  2634. https://data.gateapi.io/api2/1/ticker/lm_usdt
  2635. https://data.gateapi.io/api2/1/ticker/lai_usdt
  2636. https://data.gateapi.io/api2/1/ticker/prime_usdt
  2637. https://data.gateapi.io/api2/1/ticker/lqty_usdt
  2638. https://data.gateapi.io/api2/1/ticker/asto_usdt
  2639. https://data.gateapi.io/api2/1/ticker/paw_usdt
  2640. https://data.gateapi.io/api2/1/ticker/bone_usdt
  2641. https://data.gateapi.io/api2/1/ticker/radar_usdt
  2642. https://data.gateapi.io/api2/1/ticker/nbt_usdt
  2643. https://data.gateapi.io/api2/1/ticker/sudo_usdt
  2644. https://data.gateapi.io/api2/1/ticker/was_usdt
  2645. https://data.gateapi.io/api2/1/ticker/agla_usdt
  2646. https://data.gateapi.io/api2/1/ticker/king_usdt
  2647. https://data.gateapi.io/api2/1/ticker/ali_usdt
  2648. https://data.gateapi.io/api2/1/ticker/mooney_usdt
  2649. https://data.gateapi.io/api2/1/ticker/twitfi_usdt
  2650. https://data.gateapi.io/api2/1/ticker/woof_usdt
  2651. https://data.gateapi.io/api2/1/ticker/pine_usdt
  2652. https://data.gateapi.io/api2/1/ticker/blur_usdt
  2653. https://data.gateapi.io/api2/1/ticker/smart_usdt
  2654. https://data.gateapi.io/api2/1/ticker/jam_usdt
  2655. https://data.gateapi.io/api2/1/ticker/watt_usdt
  2656. https://data.gateapi.io/api2/1/ticker/gft_usdt
  2657. https://data.gateapi.io/api2/1/ticker/gft_try
  2658. https://data.gateapi.io/api2/1/ticker/astra_usdt
  2659. https://data.gateapi.io/api2/1/ticker/trg_usdt
  2660. https://data.gateapi.io/api2/1/ticker/thales_usdt
  2661. https://data.gateapi.io/api2/1/ticker/velodrome_usdt
  2662. https://data.gateapi.io/api2/1/ticker/tomi_usdt
  2663. https://data.gateapi.io/api2/1/ticker/amkt_usdt
  2664. https://data.gateapi.io/api2/1/ticker/rpl_usdt
  2665. https://data.gateapi.io/api2/1/ticker/d2t_usdt
  2666. https://data.gateapi.io/api2/1/ticker/impt_usdt
  2667. https://data.gateapi.io/api2/1/ticker/nada_usdt
  2668. https://data.gateapi.io/api2/1/ticker/itrump_usdt
  2669. https://data.gateapi.io/api2/1/ticker/idoodles_usdt
  2670. https://data.gateapi.io/api2/1/ticker/imayc_usdt
  2671. https://data.gateapi.io/api2/1/ticker/iazuki_usdt
  2672. https://data.gateapi.io/api2/1/ticker/ipunks_usdt
  2673. https://data.gateapi.io/api2/1/ticker/ibayc_usdt
  2674. https://data.gateapi.io/api2/1/ticker/gear_usdt
  2675. https://data.gateapi.io/api2/1/ticker/vxt_usdt
  2676. https://data.gateapi.io/api2/1/ticker/prmx_usdt
  2677. https://data.gateapi.io/api2/1/ticker/care_usdt
  2678. https://data.gateapi.io/api2/1/ticker/acx_usdt
  2679. https://data.gateapi.io/api2/1/ticker/navi_usdt
  2680. https://data.gateapi.io/api2/1/ticker/tsuka_usdt
  2681. https://data.gateapi.io/api2/1/ticker/fnf_usdt
  2682. https://data.gateapi.io/api2/1/ticker/motg_usdt
  2683. https://data.gateapi.io/api2/1/ticker/ecox_usdt
  2684. https://data.gateapi.io/api2/1/ticker/tama_usdt
  2685. https://data.gateapi.io/api2/1/ticker/hft_usdt
  2686. https://data.gateapi.io/api2/1/ticker/hft_eth
  2687. https://data.gateapi.io/api2/1/ticker/the_usdt
  2688. https://data.gateapi.io/api2/1/ticker/wbt_usdt
  2689. https://data.gateapi.io/api2/1/ticker/kap_usdt
  2690. https://data.gateapi.io/api2/1/ticker/p00ls_usdt
  2691. https://data.gateapi.io/api2/1/ticker/xen_usdt
  2692. https://data.gateapi.io/api2/1/ticker/hao_usdt
  2693. https://data.gateapi.io/api2/1/ticker/hao_eth
  2694. https://data.gateapi.io/api2/1/ticker/hao_btc
  2695. https://data.gateapi.io/api2/1/ticker/pumlx_usdt
  2696. https://data.gateapi.io/api2/1/ticker/nvir_usdt
  2697. https://data.gateapi.io/api2/1/ticker/waxl_usdt
  2698. https://data.gateapi.io/api2/1/ticker/isk_usdt
  2699. https://data.gateapi.io/api2/1/ticker/portx_usdt
  2700. https://data.gateapi.io/api2/1/ticker/sweat_usdt
  2701. https://data.gateapi.io/api2/1/ticker/skeb_usdt
  2702. https://data.gateapi.io/api2/1/ticker/xmon_usdt
  2703. https://data.gateapi.io/api2/1/ticker/xmon_eth
  2704. https://data.gateapi.io/api2/1/ticker/redtoken_usdt
  2705. https://data.gateapi.io/api2/1/ticker/fort_usdt
  2706. https://data.gateapi.io/api2/1/ticker/xels_usdt
  2707. https://data.gateapi.io/api2/1/ticker/dc_usdt
  2708. https://data.gateapi.io/api2/1/ticker/shping_usdt
  2709. https://data.gateapi.io/api2/1/ticker/lblock_usdt
  2710. https://data.gateapi.io/api2/1/ticker/gob_usdt
  2711. https://data.gateapi.io/api2/1/ticker/spume_usdt
  2712. https://data.gateapi.io/api2/1/ticker/cho_usdt
  2713. https://data.gateapi.io/api2/1/ticker/cup_usdt
  2714. https://data.gateapi.io/api2/1/ticker/mcg_usdt
  2715. https://data.gateapi.io/api2/1/ticker/toms_usdt
  2716. https://data.gateapi.io/api2/1/ticker/lbl_usdt
  2717. https://data.gateapi.io/api2/1/ticker/popk_usdt
  2718. https://data.gateapi.io/api2/1/ticker/bs_usdt
  2719. https://data.gateapi.io/api2/1/ticker/gbpt_usdt
  2720. https://data.gateapi.io/api2/1/ticker/gbpt_eth
  2721. https://data.gateapi.io/api2/1/ticker/gbpt_btc
  2722. https://data.gateapi.io/api2/1/ticker/xdb_usdt
  2723. https://data.gateapi.io/api2/1/ticker/ole_usdt
  2724. https://data.gateapi.io/api2/1/ticker/srt_usdt
  2725. https://data.gateapi.io/api2/1/ticker/wzm_usdt
  2726. https://data.gateapi.io/api2/1/ticker/eul_usdt
  2727. https://data.gateapi.io/api2/1/ticker/arsw_usdt
  2728. https://data.gateapi.io/api2/1/ticker/lunch_usdt
  2729. https://data.gateapi.io/api2/1/ticker/mesa_usdt
  2730. https://data.gateapi.io/api2/1/ticker/mesa_eth
  2731. https://data.gateapi.io/api2/1/ticker/ort_usdt
  2732. https://data.gateapi.io/api2/1/ticker/usdd_usdt
  2733. https://data.gateapi.io/api2/1/ticker/golc_usdt
  2734. https://data.gateapi.io/api2/1/ticker/ftrb_usdt
  2735. https://data.gateapi.io/api2/1/ticker/lunr_usdt
  2736. https://data.gateapi.io/api2/1/ticker/gal_usdt
  2737. https://data.gateapi.io/api2/1/ticker/undead_usdt
  2738. https://data.gateapi.io/api2/1/ticker/zeum_usdt
  2739. https://data.gateapi.io/api2/1/ticker/realm_usdt
  2740. https://data.gateapi.io/api2/1/ticker/kiba_usdt
  2741. https://data.gateapi.io/api2/1/ticker/pstake_usdt
  2742. https://data.gateapi.io/api2/1/ticker/kzen_usdt
  2743. https://data.gateapi.io/api2/1/ticker/brwl_usdt
  2744. https://data.gateapi.io/api2/1/ticker/cult_usdt
  2745. https://data.gateapi.io/api2/1/ticker/nym_usdt
  2746. https://data.gateapi.io/api2/1/ticker/bbf_usdt
  2747. https://data.gateapi.io/api2/1/ticker/esg_usdt
  2748. https://data.gateapi.io/api2/1/ticker/zmt_usdt
  2749. https://data.gateapi.io/api2/1/ticker/ousd_usdt
  2750. https://data.gateapi.io/api2/1/ticker/hsf_usdt
  2751. https://data.gateapi.io/api2/1/ticker/egs_usdt
  2752. https://data.gateapi.io/api2/1/ticker/wallet_usdt
  2753. https://data.gateapi.io/api2/1/ticker/avt_usdt
  2754. https://data.gateapi.io/api2/1/ticker/stg_usdt
  2755. https://data.gateapi.io/api2/1/ticker/stg_eth
  2756. https://data.gateapi.io/api2/1/ticker/xcn_usdt
  2757. https://data.gateapi.io/api2/1/ticker/xcn_eth
  2758. https://data.gateapi.io/api2/1/ticker/asw_usdt
  2759. https://data.gateapi.io/api2/1/ticker/xy_usdt
  2760. https://data.gateapi.io/api2/1/ticker/deus_usdt
  2761. https://data.gateapi.io/api2/1/ticker/lmr_usdt
  2762. https://data.gateapi.io/api2/1/ticker/lmr_btc
  2763. https://data.gateapi.io/api2/1/ticker/anml_usdt
  2764. https://data.gateapi.io/api2/1/ticker/reap_usdt
  2765. https://data.gateapi.io/api2/1/ticker/mv_usdt
  2766. https://data.gateapi.io/api2/1/ticker/berry_usdt
  2767. https://data.gateapi.io/api2/1/ticker/ape_usdt
  2768. https://data.gateapi.io/api2/1/ticker/zinu_usdt
  2769. https://data.gateapi.io/api2/1/ticker/axl_usdt
  2770. https://data.gateapi.io/api2/1/ticker/sd_usdt
  2771. https://data.gateapi.io/api2/1/ticker/indi_usdt
  2772. https://data.gateapi.io/api2/1/ticker/indi_eth
  2773. https://data.gateapi.io/api2/1/ticker/orbr_usdt
  2774. https://data.gateapi.io/api2/1/ticker/nvg_usdt
  2775. https://data.gateapi.io/api2/1/ticker/zkt_usdt
  2776. https://data.gateapi.io/api2/1/ticker/mql_usdt
  2777. https://data.gateapi.io/api2/1/ticker/loot_usdt
  2778. https://data.gateapi.io/api2/1/ticker/upi_usdt
  2779. https://data.gateapi.io/api2/1/ticker/1earth_usdt
  2780. https://data.gateapi.io/api2/1/ticker/timechrono_usdt
  2781. https://data.gateapi.io/api2/1/ticker/timechrono_eth
  2782. https://data.gateapi.io/api2/1/ticker/kok_usdt
  2783. https://data.gateapi.io/api2/1/ticker/ranker_usdt
  2784. https://data.gateapi.io/api2/1/ticker/qtcon_usdt
  2785. https://data.gateapi.io/api2/1/ticker/coval_usdt
  2786. https://data.gateapi.io/api2/1/ticker/dep_usdt
  2787. https://data.gateapi.io/api2/1/ticker/umee_usdt
  2788. https://data.gateapi.io/api2/1/ticker/onston_usdt
  2789. https://data.gateapi.io/api2/1/ticker/swftc_usdt
  2790. https://data.gateapi.io/api2/1/ticker/rss3_usdt
  2791. https://data.gateapi.io/api2/1/ticker/adp_usdt
  2792. https://data.gateapi.io/api2/1/ticker/adp_eth
  2793. https://data.gateapi.io/api2/1/ticker/nrfb_usdt
  2794. https://data.gateapi.io/api2/1/ticker/nrfb_eth
  2795. https://data.gateapi.io/api2/1/ticker/gmee_usdt
  2796. https://data.gateapi.io/api2/1/ticker/gmee_eth
  2797. https://data.gateapi.io/api2/1/ticker/perc_usdt
  2798. https://data.gateapi.io/api2/1/ticker/mpl_usdt
  2799. https://data.gateapi.io/api2/1/ticker/trace_usdt
  2800. https://data.gateapi.io/api2/1/ticker/ads_usdt
  2801. https://data.gateapi.io/api2/1/ticker/spellfire_usdt
  2802. https://data.gateapi.io/api2/1/ticker/mgg_usdt
  2803. https://data.gateapi.io/api2/1/ticker/store_usdt
  2804. https://data.gateapi.io/api2/1/ticker/ctc_usdt
  2805. https://data.gateapi.io/api2/1/ticker/vr_usdt
  2806. https://data.gateapi.io/api2/1/ticker/govi_usdt
  2807. https://data.gateapi.io/api2/1/ticker/loka_usdt
  2808. https://data.gateapi.io/api2/1/ticker/loka_eth
  2809. https://data.gateapi.io/api2/1/ticker/senso_usdt
  2810. https://data.gateapi.io/api2/1/ticker/senso_eth
  2811. https://data.gateapi.io/api2/1/ticker/nct_usdt
  2812. https://data.gateapi.io/api2/1/ticker/nct_eth
  2813. https://data.gateapi.io/api2/1/ticker/crts_usdt
  2814. https://data.gateapi.io/api2/1/ticker/crts_eth
  2815. https://data.gateapi.io/api2/1/ticker/beyond_usdt
  2816. https://data.gateapi.io/api2/1/ticker/frr_usdt
  2817. https://data.gateapi.io/api2/1/ticker/domi_usdt
  2818. https://data.gateapi.io/api2/1/ticker/gfi_usdt
  2819. https://data.gateapi.io/api2/1/ticker/gfi_eth
  2820. https://data.gateapi.io/api2/1/ticker/looks_usdt
  2821. https://data.gateapi.io/api2/1/ticker/looks_eth
  2822. https://data.gateapi.io/api2/1/ticker/onit_usdt
  2823. https://data.gateapi.io/api2/1/ticker/artem_usdt
  2824. https://data.gateapi.io/api2/1/ticker/clh_usdt
  2825. https://data.gateapi.io/api2/1/ticker/zig_usdt
  2826. https://data.gateapi.io/api2/1/ticker/gasdao_usdt
  2827. https://data.gateapi.io/api2/1/ticker/cweb_usdt
  2828. https://data.gateapi.io/api2/1/ticker/vader_usdt
  2829. https://data.gateapi.io/api2/1/ticker/vader_eth
  2830. https://data.gateapi.io/api2/1/ticker/sos_usdt
  2831. https://data.gateapi.io/api2/1/ticker/izi_usdt
  2832. https://data.gateapi.io/api2/1/ticker/izi_eth
  2833. https://data.gateapi.io/api2/1/ticker/heart_usdt
  2834. https://data.gateapi.io/api2/1/ticker/high_usdt
  2835. https://data.gateapi.io/api2/1/ticker/eurt_usdt
  2836. https://data.gateapi.io/api2/1/ticker/aag_usdt
  2837. https://data.gateapi.io/api2/1/ticker/xaut_usdt
  2838. https://data.gateapi.io/api2/1/ticker/stz_usdt
  2839. https://data.gateapi.io/api2/1/ticker/mco2_usdt
  2840. https://data.gateapi.io/api2/1/ticker/mco2_eth
  2841. https://data.gateapi.io/api2/1/ticker/crf_usdt
  2842. https://data.gateapi.io/api2/1/ticker/crf_eth
  2843. https://data.gateapi.io/api2/1/ticker/fox_usdt
  2844. https://data.gateapi.io/api2/1/ticker/fox_eth
  2845. https://data.gateapi.io/api2/1/ticker/kub_usdt
  2846. https://data.gateapi.io/api2/1/ticker/dv_usdt
  2847. https://data.gateapi.io/api2/1/ticker/sidus_usdt
  2848. https://data.gateapi.io/api2/1/ticker/emon_usdt
  2849. https://data.gateapi.io/api2/1/ticker/senate_usdt
  2850. https://data.gateapi.io/api2/1/ticker/krl_usdt
  2851. https://data.gateapi.io/api2/1/ticker/gf_usdt
  2852. https://data.gateapi.io/api2/1/ticker/gf_eth
  2853. https://data.gateapi.io/api2/1/ticker/devt_usdt
  2854. https://data.gateapi.io/api2/1/ticker/alph_usdt
  2855. https://data.gateapi.io/api2/1/ticker/pbx_usdt
  2856. https://data.gateapi.io/api2/1/ticker/pbx_eth
  2857. https://data.gateapi.io/api2/1/ticker/diver_usdt
  2858. https://data.gateapi.io/api2/1/ticker/epik_usdt
  2859. https://data.gateapi.io/api2/1/ticker/msu_usdt
  2860. https://data.gateapi.io/api2/1/ticker/rbls_usdt
  2861. https://data.gateapi.io/api2/1/ticker/cname_usdt
  2862. https://data.gateapi.io/api2/1/ticker/gcoin_usdt
  2863. https://data.gateapi.io/api2/1/ticker/pym_usdt
  2864. https://data.gateapi.io/api2/1/ticker/polypad_usdt
  2865. https://data.gateapi.io/api2/1/ticker/atk_usdt
  2866. https://data.gateapi.io/api2/1/ticker/atk_eth
  2867. https://data.gateapi.io/api2/1/ticker/mhunt_usdt
  2868. https://data.gateapi.io/api2/1/ticker/kasta_usdt
  2869. https://data.gateapi.io/api2/1/ticker/voxel_usdt
  2870. https://data.gateapi.io/api2/1/ticker/isky_usdt
  2871. https://data.gateapi.io/api2/1/ticker/knot_usdt
  2872. https://data.gateapi.io/api2/1/ticker/gns_usdt
  2873. https://data.gateapi.io/api2/1/ticker/savg_usdt
  2874. https://data.gateapi.io/api2/1/ticker/luffy_usdt
  2875. https://data.gateapi.io/api2/1/ticker/luffy_eth
  2876. https://data.gateapi.io/api2/1/ticker/bico_usdt
  2877. https://data.gateapi.io/api2/1/ticker/bico_eth
  2878. https://data.gateapi.io/api2/1/ticker/cre8_usdt
  2879. https://data.gateapi.io/api2/1/ticker/lgcy_usdt
  2880. https://data.gateapi.io/api2/1/ticker/ice_usdt
  2881. https://data.gateapi.io/api2/1/ticker/ice_eth
  2882. https://data.gateapi.io/api2/1/ticker/moda_usdt
  2883. https://data.gateapi.io/api2/1/ticker/moda_eth
  2884. https://data.gateapi.io/api2/1/ticker/thn_usdt
  2885. https://data.gateapi.io/api2/1/ticker/thn_eth
  2886. https://data.gateapi.io/api2/1/ticker/sis_usdt
  2887. https://data.gateapi.io/api2/1/ticker/people_usdt
  2888. https://data.gateapi.io/api2/1/ticker/qanx_usdt
  2889. https://data.gateapi.io/api2/1/ticker/xnl_usdt
  2890. https://data.gateapi.io/api2/1/ticker/cell_usdt
  2891. https://data.gateapi.io/api2/1/ticker/cell_eth
  2892. https://data.gateapi.io/api2/1/ticker/mlt_usdt
  2893. https://data.gateapi.io/api2/1/ticker/trvl_usdt
  2894. https://data.gateapi.io/api2/1/ticker/trvl_btc
  2895. https://data.gateapi.io/api2/1/ticker/mny_usdt
  2896. https://data.gateapi.io/api2/1/ticker/paf_usdt
  2897. https://data.gateapi.io/api2/1/ticker/ceek_usdt
  2898. https://data.gateapi.io/api2/1/ticker/ceek_eth
  2899. https://data.gateapi.io/api2/1/ticker/icons_usdt
  2900. https://data.gateapi.io/api2/1/ticker/icons_eth
  2901. https://data.gateapi.io/api2/1/ticker/xdefi_usdt
  2902. https://data.gateapi.io/api2/1/ticker/ngl_usdt
  2903. https://data.gateapi.io/api2/1/ticker/egame_usdt
  2904. https://data.gateapi.io/api2/1/ticker/dmtr_usdt
  2905. https://data.gateapi.io/api2/1/ticker/aurora_usdt
  2906. https://data.gateapi.io/api2/1/ticker/aurora_eth
  2907. https://data.gateapi.io/api2/1/ticker/vdr_usdt
  2908. https://data.gateapi.io/api2/1/ticker/boba_usdt
  2909. https://data.gateapi.io/api2/1/ticker/boba_eth
  2910. https://data.gateapi.io/api2/1/ticker/nift_usdt
  2911. https://data.gateapi.io/api2/1/ticker/ionx_usdt
  2912. https://data.gateapi.io/api2/1/ticker/ionx_eth
  2913. https://data.gateapi.io/api2/1/ticker/mc_usdt
  2914. https://data.gateapi.io/api2/1/ticker/mc_eth
  2915. https://data.gateapi.io/api2/1/ticker/uno_usdt
  2916. https://data.gateapi.io/api2/1/ticker/uno_eth
  2917. https://data.gateapi.io/api2/1/ticker/spay_usdt
  2918. https://data.gateapi.io/api2/1/ticker/spay_eth
  2919. https://data.gateapi.io/api2/1/ticker/vgx_usdt
  2920. https://data.gateapi.io/api2/1/ticker/vgx_eth
  2921. https://data.gateapi.io/api2/1/ticker/num_usdt
  2922. https://data.gateapi.io/api2/1/ticker/gold_usdt
  2923. https://data.gateapi.io/api2/1/ticker/dar_usdt
  2924. https://data.gateapi.io/api2/1/ticker/dar_eth
  2925. https://data.gateapi.io/api2/1/ticker/catgirl_usdt
  2926. https://data.gateapi.io/api2/1/ticker/xcv_usdt
  2927. https://data.gateapi.io/api2/1/ticker/xcv_eth
  2928. https://data.gateapi.io/api2/1/ticker/grbe_usdt
  2929. https://data.gateapi.io/api2/1/ticker/taboo_usdt
  2930. https://data.gateapi.io/api2/1/ticker/snft_usdt
  2931. https://data.gateapi.io/api2/1/ticker/lsd7_usdt
  2932. https://data.gateapi.io/api2/1/ticker/cat_usdt
  2933. https://data.gateapi.io/api2/1/ticker/trias_usdt
  2934. https://data.gateapi.io/api2/1/ticker/cheel_usdt
  2935. https://data.gateapi.io/api2/1/ticker/aitech_usdt
  2936. https://data.gateapi.io/api2/1/ticker/type_usdt
  2937. https://data.gateapi.io/api2/1/ticker/seilor_usdt
  2938. https://data.gateapi.io/api2/1/ticker/tross_usdt
  2939. https://data.gateapi.io/api2/1/ticker/wbird_usdt
  2940. https://data.gateapi.io/api2/1/ticker/muratiai_usdt
  2941. https://data.gateapi.io/api2/1/ticker/gaypepe_usdt
  2942. https://data.gateapi.io/api2/1/ticker/dck_usdt
  2943. https://data.gateapi.io/api2/1/ticker/aie_usdt
  2944. https://data.gateapi.io/api2/1/ticker/geta_usdt
  2945. https://data.gateapi.io/api2/1/ticker/unt_usdt
  2946. https://data.gateapi.io/api2/1/ticker/cty_usdt
  2947. https://data.gateapi.io/api2/1/ticker/cgv_usdt
  2948. https://data.gateapi.io/api2/1/ticker/4token_usdt
  2949. https://data.gateapi.io/api2/1/ticker/cal_usdt
  2950. https://data.gateapi.io/api2/1/ticker/metfi_usdt
  2951. https://data.gateapi.io/api2/1/ticker/meme_usdt
  2952. https://data.gateapi.io/api2/1/ticker/meme_btc
  2953. https://data.gateapi.io/api2/1/ticker/zix_usdt
  2954. https://data.gateapi.io/api2/1/ticker/edu_usdt
  2955. https://data.gateapi.io/api2/1/ticker/brn_usdt
  2956. https://data.gateapi.io/api2/1/ticker/pzp_usdt
  2957. https://data.gateapi.io/api2/1/ticker/carat_usdt
  2958. https://data.gateapi.io/api2/1/ticker/flokiceo_usdt
  2959. https://data.gateapi.io/api2/1/ticker/play_usdt
  2960. https://data.gateapi.io/api2/1/ticker/cgpt_usdt
  2961. https://data.gateapi.io/api2/1/ticker/reign_usdt
  2962. https://data.gateapi.io/api2/1/ticker/sct_usdt
  2963. https://data.gateapi.io/api2/1/ticker/ortb_usdt
  2964. https://data.gateapi.io/api2/1/ticker/sfty_usdt
  2965. https://data.gateapi.io/api2/1/ticker/poolx_usdt
  2966. https://data.gateapi.io/api2/1/ticker/loop_usdt
  2967. https://data.gateapi.io/api2/1/ticker/prx_usdt
  2968. https://data.gateapi.io/api2/1/ticker/mgkl_usdt
  2969. https://data.gateapi.io/api2/1/ticker/phb_usdt
  2970. https://data.gateapi.io/api2/1/ticker/nblu_usdt
  2971. https://data.gateapi.io/api2/1/ticker/mpi_usdt
  2972. https://data.gateapi.io/api2/1/ticker/slk_usdt
  2973. https://data.gateapi.io/api2/1/ticker/goal_usdt
  2974. https://data.gateapi.io/api2/1/ticker/bnx_usdt
  2975. https://data.gateapi.io/api2/1/ticker/csix_usdt
  2976. https://data.gateapi.io/api2/1/ticker/igu_usdt
  2977. https://data.gateapi.io/api2/1/ticker/ham_usdt
  2978. https://data.gateapi.io/api2/1/ticker/walv_usdt
  2979. https://data.gateapi.io/api2/1/ticker/mdao_usdt
  2980. https://data.gateapi.io/api2/1/ticker/bbc_usdt
  2981. https://data.gateapi.io/api2/1/ticker/snm_usdt
  2982. https://data.gateapi.io/api2/1/ticker/squad_usdt
  2983. https://data.gateapi.io/api2/1/ticker/pop_usdt
  2984. https://data.gateapi.io/api2/1/ticker/pop_btc
  2985. https://data.gateapi.io/api2/1/ticker/mtg_usdt
  2986. https://data.gateapi.io/api2/1/ticker/t23_usdt
  2987. https://data.gateapi.io/api2/1/ticker/wsi_usdt
  2988. https://data.gateapi.io/api2/1/ticker/mine_usdt
  2989. https://data.gateapi.io/api2/1/ticker/ctg_usdt
  2990. https://data.gateapi.io/api2/1/ticker/cryptofi_usdt
  2991. https://data.gateapi.io/api2/1/ticker/hook_usdt
  2992. https://data.gateapi.io/api2/1/ticker/debt_usdt
  2993. https://data.gateapi.io/api2/1/ticker/mfootball_usdt
  2994. https://data.gateapi.io/api2/1/ticker/ing_usdt
  2995. https://data.gateapi.io/api2/1/ticker/pias_usdt
  2996. https://data.gateapi.io/api2/1/ticker/oland_usdt
  2997. https://data.gateapi.io/api2/1/ticker/trr_usdt
  2998. https://data.gateapi.io/api2/1/ticker/vmt_usdt
  2999. https://data.gateapi.io/api2/1/ticker/kicks_usdt
  3000. https://data.gateapi.io/api2/1/ticker/fdc_usdt
  3001. https://data.gateapi.io/api2/1/ticker/fdt_usdt
  3002. https://data.gateapi.io/api2/1/ticker/sn_usdt
  3003. https://data.gateapi.io/api2/1/ticker/atoz_usdt
  3004. https://data.gateapi.io/api2/1/ticker/nebl_usdt
  3005. https://data.gateapi.io/api2/1/ticker/ghny_usdt
  3006. https://data.gateapi.io/api2/1/ticker/grv_usdt
  3007. https://data.gateapi.io/api2/1/ticker/mls_usdt
  3008. https://data.gateapi.io/api2/1/ticker/lgx_usdt
  3009. https://data.gateapi.io/api2/1/ticker/dlc_usdt
  3010. https://data.gateapi.io/api2/1/ticker/item_usdt
  3011. https://data.gateapi.io/api2/1/ticker/moon_usdt
  3012. https://data.gateapi.io/api2/1/ticker/rdf_usdt
  3013. https://data.gateapi.io/api2/1/ticker/mcrt_usdt
  3014. https://data.gateapi.io/api2/1/ticker/dks_usdt
  3015. https://data.gateapi.io/api2/1/ticker/ihc_usdt
  3016. https://data.gateapi.io/api2/1/ticker/squidgrow_usdt
  3017. https://data.gateapi.io/api2/1/ticker/bvt_usdt
  3018. https://data.gateapi.io/api2/1/ticker/mnz_usdt
  3019. https://data.gateapi.io/api2/1/ticker/lovely_usdt
  3020. https://data.gateapi.io/api2/1/ticker/ateam_usdt
  3021. https://data.gateapi.io/api2/1/ticker/azy_usdt
  3022. https://data.gateapi.io/api2/1/ticker/mswap_usdt
  3023. https://data.gateapi.io/api2/1/ticker/fiu_usdt
  3024. https://data.gateapi.io/api2/1/ticker/slg_usdt
  3025. https://data.gateapi.io/api2/1/ticker/tifi_usdt
  3026. https://data.gateapi.io/api2/1/ticker/teddy_usdt
  3027. https://data.gateapi.io/api2/1/ticker/pts_usdt
  3028. https://data.gateapi.io/api2/1/ticker/revoland_usdt
  3029. https://data.gateapi.io/api2/1/ticker/movez_usdt
  3030. https://data.gateapi.io/api2/1/ticker/srg_usdt
  3031. https://data.gateapi.io/api2/1/ticker/aqdc_usdt
  3032. https://data.gateapi.io/api2/1/ticker/brt_usdt
  3033. https://data.gateapi.io/api2/1/ticker/gq_usdt
  3034. https://data.gateapi.io/api2/1/ticker/mmpro_usdt
  3035. https://data.gateapi.io/api2/1/ticker/eeg_usdt
  3036. https://data.gateapi.io/api2/1/ticker/stepg_usdt
  3037. https://data.gateapi.io/api2/1/ticker/stepg_eth
  3038. https://data.gateapi.io/api2/1/ticker/wwy_usdt
  3039. https://data.gateapi.io/api2/1/ticker/wndr_usdt
  3040. https://data.gateapi.io/api2/1/ticker/strm_usdt
  3041. https://data.gateapi.io/api2/1/ticker/pit_usdt
  3042. https://data.gateapi.io/api2/1/ticker/vinu_usdt
  3043. https://data.gateapi.io/api2/1/ticker/volt_usdt
  3044. https://data.gateapi.io/api2/1/ticker/gst_usdt
  3045. https://data.gateapi.io/api2/1/ticker/vtg_usdt
  3046. https://data.gateapi.io/api2/1/ticker/santos_usdt
  3047. https://data.gateapi.io/api2/1/ticker/alpine_usdt
  3048. https://data.gateapi.io/api2/1/ticker/porto_usdt
  3049. https://data.gateapi.io/api2/1/ticker/sti_usdt
  3050. https://data.gateapi.io/api2/1/ticker/metaldr_usdt
  3051. https://data.gateapi.io/api2/1/ticker/milo_usdt
  3052. https://data.gateapi.io/api2/1/ticker/pride_usdt
  3053. https://data.gateapi.io/api2/1/ticker/meto_usdt
  3054. https://data.gateapi.io/api2/1/ticker/mape_usdt
  3055. https://data.gateapi.io/api2/1/ticker/gmm_usdt
  3056. https://data.gateapi.io/api2/1/ticker/babi_usdt
  3057. https://data.gateapi.io/api2/1/ticker/wzrd_usdt
  3058. https://data.gateapi.io/api2/1/ticker/falcons_usdt
  3059. https://data.gateapi.io/api2/1/ticker/bsw_usdt
  3060. https://data.gateapi.io/api2/1/ticker/ubxs_usdt
  3061. https://data.gateapi.io/api2/1/ticker/wear_usdt
  3062. https://data.gateapi.io/api2/1/ticker/hdv_usdt
  3063. https://data.gateapi.io/api2/1/ticker/rite_usdt
  3064. https://data.gateapi.io/api2/1/ticker/lus_usdt
  3065. https://data.gateapi.io/api2/1/ticker/dome_usdt
  3066. https://data.gateapi.io/api2/1/ticker/rim_usdt
  3067. https://data.gateapi.io/api2/1/ticker/kilt_usdt
  3068. https://data.gateapi.io/api2/1/ticker/tap_usdt
  3069. https://data.gateapi.io/api2/1/ticker/sin_usdt
  3070. https://data.gateapi.io/api2/1/ticker/metan_usdt
  3071. https://data.gateapi.io/api2/1/ticker/kbd_usdt
  3072. https://data.gateapi.io/api2/1/ticker/ggm_usdt
  3073. https://data.gateapi.io/api2/1/ticker/brise_usdt
  3074. https://data.gateapi.io/api2/1/ticker/kt_usdt
  3075. https://data.gateapi.io/api2/1/ticker/sandwich_usdt
  3076. https://data.gateapi.io/api2/1/ticker/nftl_usdt
  3077. https://data.gateapi.io/api2/1/ticker/ejs_usdt
  3078. https://data.gateapi.io/api2/1/ticker/t_usdt
  3079. https://data.gateapi.io/api2/1/ticker/t_eth
  3080. https://data.gateapi.io/api2/1/ticker/nexo_usdt
  3081. https://data.gateapi.io/api2/1/ticker/nexo_eth
  3082. https://data.gateapi.io/api2/1/ticker/galfan_usdt
  3083. https://data.gateapi.io/api2/1/ticker/aog_usdt
  3084. https://data.gateapi.io/api2/1/ticker/mts_usdt
  3085. https://data.gateapi.io/api2/1/ticker/mts_eth
  3086. https://data.gateapi.io/api2/1/ticker/gmpd_usdt
  3087. https://data.gateapi.io/api2/1/ticker/ufi_usdt
  3088. https://data.gateapi.io/api2/1/ticker/apx_usdt
  3089. https://data.gateapi.io/api2/1/ticker/frm_usdt
  3090. https://data.gateapi.io/api2/1/ticker/scnsol_usdt
  3091. https://data.gateapi.io/api2/1/ticker/scnsol_eth
  3092. https://data.gateapi.io/api2/1/ticker/f2c_usdt
  3093. https://data.gateapi.io/api2/1/ticker/zodi_usdt
  3094. https://data.gateapi.io/api2/1/ticker/zodi_eth
  3095. https://data.gateapi.io/api2/1/ticker/dfy_usdt
  3096. https://data.gateapi.io/api2/1/ticker/dfy_eth
  3097. https://data.gateapi.io/api2/1/ticker/loa_usdt
  3098. https://data.gateapi.io/api2/1/ticker/supe_usdt
  3099. https://data.gateapi.io/api2/1/ticker/supe_eth
  3100. https://data.gateapi.io/api2/1/ticker/cher_usdt
  3101. https://data.gateapi.io/api2/1/ticker/wam_usdt
  3102. https://data.gateapi.io/api2/1/ticker/goldminer_usdt
  3103. https://data.gateapi.io/api2/1/ticker/dms_usdt
  3104. https://data.gateapi.io/api2/1/ticker/dms_eth
  3105. https://data.gateapi.io/api2/1/ticker/sugarb_usdt
  3106. https://data.gateapi.io/api2/1/ticker/tip_usdt
  3107. https://data.gateapi.io/api2/1/ticker/ppad_usdt
  3108. https://data.gateapi.io/api2/1/ticker/block_usdt
  3109. https://data.gateapi.io/api2/1/ticker/psb_usdt
  3110. https://data.gateapi.io/api2/1/ticker/kbox_usdt
  3111. https://data.gateapi.io/api2/1/ticker/bin_usdt
  3112. https://data.gateapi.io/api2/1/ticker/bin_eth
  3113. https://data.gateapi.io/api2/1/ticker/land_usdt
  3114. https://data.gateapi.io/api2/1/ticker/oro_usdt
  3115. https://data.gateapi.io/api2/1/ticker/moo_usdt
  3116. https://data.gateapi.io/api2/1/ticker/mooo_usdt
  3117. https://data.gateapi.io/api2/1/ticker/empire_usdt
  3118. https://data.gateapi.io/api2/1/ticker/empire_eth
  3119. https://data.gateapi.io/api2/1/ticker/yct_usdt
  3120. https://data.gateapi.io/api2/1/ticker/myra_usdt
  3121. https://data.gateapi.io/api2/1/ticker/shopnext_usdt
  3122. https://data.gateapi.io/api2/1/ticker/real_usdt
  3123. https://data.gateapi.io/api2/1/ticker/bath_usdt
  3124. https://data.gateapi.io/api2/1/ticker/bath_eth
  3125. https://data.gateapi.io/api2/1/ticker/pog_usdt
  3126. https://data.gateapi.io/api2/1/ticker/mga_usdt
  3127. https://data.gateapi.io/api2/1/ticker/eternal_usdt
  3128. https://data.gateapi.io/api2/1/ticker/mint_usdt
  3129. https://data.gateapi.io/api2/1/ticker/nodl_usdt
  3130. https://data.gateapi.io/api2/1/ticker/btl_usdt
  3131. https://data.gateapi.io/api2/1/ticker/liquidus_usdt
  3132. https://data.gateapi.io/api2/1/ticker/liquidus_eth
  3133. https://data.gateapi.io/api2/1/ticker/dhb_usdt
  3134. https://data.gateapi.io/api2/1/ticker/sfm_usdt

Return data example:

    # Request
    GET: https://data.gateapi.io/api2/1/ticker/eth_btc
    # Response
        {
            "result": "true",
            "last": 0.1,
            "lowestAsk": 0.1,
            "highestBid": "0.00000000",
            "percentChange": 0,
            "baseVolume": 0.001,
            "quoteVolume": 0.01,
            "high24hr": 0.1,
            "low24hr": 0.1
        }
            

Depth API

Return the market depth including ask and bid orders.

URL: https://data.gateapi.io/api2/1/orderBooks


Current market depth API

Return the market depth including ask and bid orders.

URL: https://data.gateapi.io/api2/1/orderBook/[CURR_A]_[CURR_B]

Replace [CURR_A] and [CURR_B] with the selected currencies.

Links:

  1. https://data.gateapi.io/api2/1/orderBook/usdt_cnyx
  2. https://data.gateapi.io/api2/1/orderBook/btc_usdt
  3. https://data.gateapi.io/api2/1/orderBook/bch_usdt
  4. https://data.gateapi.io/api2/1/orderBook/eth_usdt
  5. https://data.gateapi.io/api2/1/orderBook/etc_usdt
  6. https://data.gateapi.io/api2/1/orderBook/qtum_usdt
  7. https://data.gateapi.io/api2/1/orderBook/ltc_usdt
  8. https://data.gateapi.io/api2/1/orderBook/dash_usdt
  9. https://data.gateapi.io/api2/1/orderBook/zec_usdt
  10. https://data.gateapi.io/api2/1/orderBook/btm_usdt
  11. https://data.gateapi.io/api2/1/orderBook/eos_usdt
  12. https://data.gateapi.io/api2/1/orderBook/req_usdt
  13. https://data.gateapi.io/api2/1/orderBook/snt_usdt
  14. https://data.gateapi.io/api2/1/orderBook/omg_usdt
  15. https://data.gateapi.io/api2/1/orderBook/pay_usdt
  16. https://data.gateapi.io/api2/1/orderBook/cvc_usdt
  17. https://data.gateapi.io/api2/1/orderBook/zrx_usdt
  18. https://data.gateapi.io/api2/1/orderBook/xmr_usdt
  19. https://data.gateapi.io/api2/1/orderBook/xrp_usdt
  20. https://data.gateapi.io/api2/1/orderBook/doge_usdt
  21. https://data.gateapi.io/api2/1/orderBook/bat_usdt
  22. https://data.gateapi.io/api2/1/orderBook/pst_usdt
  23. https://data.gateapi.io/api2/1/orderBook/btg_usdt
  24. https://data.gateapi.io/api2/1/orderBook/dpy_usdt
  25. https://data.gateapi.io/api2/1/orderBook/lrc_usdt
  26. https://data.gateapi.io/api2/1/orderBook/storj_usdt
  27. https://data.gateapi.io/api2/1/orderBook/rdn_usdt
  28. https://data.gateapi.io/api2/1/orderBook/knc_usdt
  29. https://data.gateapi.io/api2/1/orderBook/link_usdt
  30. https://data.gateapi.io/api2/1/orderBook/cdt_usdt
  31. https://data.gateapi.io/api2/1/orderBook/ae_usdt
  32. https://data.gateapi.io/api2/1/orderBook/ae_eth
  33. https://data.gateapi.io/api2/1/orderBook/ae_btc
  34. https://data.gateapi.io/api2/1/orderBook/cdt_eth
  35. https://data.gateapi.io/api2/1/orderBook/rdn_eth
  36. https://data.gateapi.io/api2/1/orderBook/knc_eth
  37. https://data.gateapi.io/api2/1/orderBook/link_eth
  38. https://data.gateapi.io/api2/1/orderBook/req_eth
  39. https://data.gateapi.io/api2/1/orderBook/rcn_eth
  40. https://data.gateapi.io/api2/1/orderBook/trx_eth
  41. https://data.gateapi.io/api2/1/orderBook/bnt_eth
  42. https://data.gateapi.io/api2/1/orderBook/vet_eth
  43. https://data.gateapi.io/api2/1/orderBook/fun_eth
  44. https://data.gateapi.io/api2/1/orderBook/data_eth
  45. https://data.gateapi.io/api2/1/orderBook/rlc_eth
  46. https://data.gateapi.io/api2/1/orderBook/rlc_usdt
  47. https://data.gateapi.io/api2/1/orderBook/zsc_eth
  48. https://data.gateapi.io/api2/1/orderBook/mda_eth
  49. https://data.gateapi.io/api2/1/orderBook/rcn_usdt
  50. https://data.gateapi.io/api2/1/orderBook/trx_usdt
  51. https://data.gateapi.io/api2/1/orderBook/vet_usdt
  52. https://data.gateapi.io/api2/1/orderBook/fun_usdt
  53. https://data.gateapi.io/api2/1/orderBook/data_usdt
  54. https://data.gateapi.io/api2/1/orderBook/zsc_usdt
  55. https://data.gateapi.io/api2/1/orderBook/mda_usdt
  56. https://data.gateapi.io/api2/1/orderBook/xtz_usdt
  57. https://data.gateapi.io/api2/1/orderBook/xtz_btc
  58. https://data.gateapi.io/api2/1/orderBook/xtz_eth
  59. https://data.gateapi.io/api2/1/orderBook/gem_usdt
  60. https://data.gateapi.io/api2/1/orderBook/gem_eth
  61. https://data.gateapi.io/api2/1/orderBook/rfr_usdt
  62. https://data.gateapi.io/api2/1/orderBook/rfr_eth
  63. https://data.gateapi.io/api2/1/orderBook/abt_usdt
  64. https://data.gateapi.io/api2/1/orderBook/abt_eth
  65. https://data.gateapi.io/api2/1/orderBook/ledu_btc
  66. https://data.gateapi.io/api2/1/orderBook/ledu_eth
  67. https://data.gateapi.io/api2/1/orderBook/ost_usdt
  68. https://data.gateapi.io/api2/1/orderBook/ost_eth
  69. https://data.gateapi.io/api2/1/orderBook/xlm_usdt
  70. https://data.gateapi.io/api2/1/orderBook/xlm_eth
  71. https://data.gateapi.io/api2/1/orderBook/xlm_btc
  72. https://data.gateapi.io/api2/1/orderBook/mobi_usdt
  73. https://data.gateapi.io/api2/1/orderBook/mobi_eth
  74. https://data.gateapi.io/api2/1/orderBook/mobi_btc
  75. https://data.gateapi.io/api2/1/orderBook/ocn_usdt
  76. https://data.gateapi.io/api2/1/orderBook/ocn_eth
  77. https://data.gateapi.io/api2/1/orderBook/ocn_btc
  78. https://data.gateapi.io/api2/1/orderBook/cofi_usdt
  79. https://data.gateapi.io/api2/1/orderBook/cofi_eth
  80. https://data.gateapi.io/api2/1/orderBook/blz_usdt
  81. https://data.gateapi.io/api2/1/orderBook/blz_eth
  82. https://data.gateapi.io/api2/1/orderBook/gxs_usdt
  83. https://data.gateapi.io/api2/1/orderBook/gxs_btc
  84. https://data.gateapi.io/api2/1/orderBook/mtn_usdt
  85. https://data.gateapi.io/api2/1/orderBook/mtn_eth
  86. https://data.gateapi.io/api2/1/orderBook/ruff_usdt
  87. https://data.gateapi.io/api2/1/orderBook/ruff_eth
  88. https://data.gateapi.io/api2/1/orderBook/ruff_btc
  89. https://data.gateapi.io/api2/1/orderBook/tnc_usdt
  90. https://data.gateapi.io/api2/1/orderBook/tnc_eth
  91. https://data.gateapi.io/api2/1/orderBook/tnc_btc
  92. https://data.gateapi.io/api2/1/orderBook/zil_usdt
  93. https://data.gateapi.io/api2/1/orderBook/zil_eth
  94. https://data.gateapi.io/api2/1/orderBook/bto_usdt
  95. https://data.gateapi.io/api2/1/orderBook/bto_eth
  96. https://data.gateapi.io/api2/1/orderBook/theta_usdt
  97. https://data.gateapi.io/api2/1/orderBook/theta_eth
  98. https://data.gateapi.io/api2/1/orderBook/ddd_usdt
  99. https://data.gateapi.io/api2/1/orderBook/ddd_eth
  100. https://data.gateapi.io/api2/1/orderBook/ddd_btc
  101. https://data.gateapi.io/api2/1/orderBook/mkr_usdt
  102. https://data.gateapi.io/api2/1/orderBook/mkr_eth
  103. https://data.gateapi.io/api2/1/orderBook/dai_usdt
  104. https://data.gateapi.io/api2/1/orderBook/smt_usdt
  105. https://data.gateapi.io/api2/1/orderBook/smt_eth
  106. https://data.gateapi.io/api2/1/orderBook/mdt_usdt
  107. https://data.gateapi.io/api2/1/orderBook/mdt_eth
  108. https://data.gateapi.io/api2/1/orderBook/mdt_btc
  109. https://data.gateapi.io/api2/1/orderBook/mana_usdt
  110. https://data.gateapi.io/api2/1/orderBook/mana_eth
  111. https://data.gateapi.io/api2/1/orderBook/salt_usdt
  112. https://data.gateapi.io/api2/1/orderBook/salt_eth
  113. https://data.gateapi.io/api2/1/orderBook/fuel_usdt
  114. https://data.gateapi.io/api2/1/orderBook/fuel_eth
  115. https://data.gateapi.io/api2/1/orderBook/elf_usdt
  116. https://data.gateapi.io/api2/1/orderBook/elf_eth
  117. https://data.gateapi.io/api2/1/orderBook/drgn_usdt
  118. https://data.gateapi.io/api2/1/orderBook/drgn_eth
  119. https://data.gateapi.io/api2/1/orderBook/gtc_usdt
  120. https://data.gateapi.io/api2/1/orderBook/gtc_eth
  121. https://data.gateapi.io/api2/1/orderBook/gtc_btc
  122. https://data.gateapi.io/api2/1/orderBook/qlc_usdt
  123. https://data.gateapi.io/api2/1/orderBook/qlc_btc
  124. https://data.gateapi.io/api2/1/orderBook/qlc_eth
  125. https://data.gateapi.io/api2/1/orderBook/dbc_usdt
  126. https://data.gateapi.io/api2/1/orderBook/dbc_btc
  127. https://data.gateapi.io/api2/1/orderBook/dbc_eth
  128. https://data.gateapi.io/api2/1/orderBook/bnty_usdt
  129. https://data.gateapi.io/api2/1/orderBook/bnty_eth
  130. https://data.gateapi.io/api2/1/orderBook/icx_usdt
  131. https://data.gateapi.io/api2/1/orderBook/icx_eth
  132. https://data.gateapi.io/api2/1/orderBook/btf_usdt
  133. https://data.gateapi.io/api2/1/orderBook/btf_btc
  134. https://data.gateapi.io/api2/1/orderBook/ada_usdt
  135. https://data.gateapi.io/api2/1/orderBook/ada_btc
  136. https://data.gateapi.io/api2/1/orderBook/lsk_usdt
  137. https://data.gateapi.io/api2/1/orderBook/lsk_btc
  138. https://data.gateapi.io/api2/1/orderBook/waves_usdt
  139. https://data.gateapi.io/api2/1/orderBook/waves_btc
  140. https://data.gateapi.io/api2/1/orderBook/bifi_usdt
  141. https://data.gateapi.io/api2/1/orderBook/bifi_btc
  142. https://data.gateapi.io/api2/1/orderBook/mds_eth
  143. https://data.gateapi.io/api2/1/orderBook/mds_usdt
  144. https://data.gateapi.io/api2/1/orderBook/qash_usdt
  145. https://data.gateapi.io/api2/1/orderBook/qash_eth
  146. https://data.gateapi.io/api2/1/orderBook/qash_btc
  147. https://data.gateapi.io/api2/1/orderBook/powr_usdt
  148. https://data.gateapi.io/api2/1/orderBook/powr_eth
  149. https://data.gateapi.io/api2/1/orderBook/powr_btc
  150. https://data.gateapi.io/api2/1/orderBook/bcd_usdt
  151. https://data.gateapi.io/api2/1/orderBook/bcd_btc
  152. https://data.gateapi.io/api2/1/orderBook/sbtc_usdt
  153. https://data.gateapi.io/api2/1/orderBook/sbtc_btc
  154. https://data.gateapi.io/api2/1/orderBook/god_usdt
  155. https://data.gateapi.io/api2/1/orderBook/god_btc
  156. https://data.gateapi.io/api2/1/orderBook/bcx_usdt
  157. https://data.gateapi.io/api2/1/orderBook/bcx_btc
  158. https://data.gateapi.io/api2/1/orderBook/qsp_usdt
  159. https://data.gateapi.io/api2/1/orderBook/qsp_eth
  160. https://data.gateapi.io/api2/1/orderBook/ink_btc
  161. https://data.gateapi.io/api2/1/orderBook/ink_usdt
  162. https://data.gateapi.io/api2/1/orderBook/ink_eth
  163. https://data.gateapi.io/api2/1/orderBook/qbt_eth
  164. https://data.gateapi.io/api2/1/orderBook/qbt_usdt
  165. https://data.gateapi.io/api2/1/orderBook/tsl_usdt
  166. https://data.gateapi.io/api2/1/orderBook/gnx_usdt
  167. https://data.gateapi.io/api2/1/orderBook/gnx_eth
  168. https://data.gateapi.io/api2/1/orderBook/neo_usdt
  169. https://data.gateapi.io/api2/1/orderBook/gas_usdt
  170. https://data.gateapi.io/api2/1/orderBook/neo_btc
  171. https://data.gateapi.io/api2/1/orderBook/gas_btc
  172. https://data.gateapi.io/api2/1/orderBook/iota_usdt
  173. https://data.gateapi.io/api2/1/orderBook/iota_btc
  174. https://data.gateapi.io/api2/1/orderBook/nas_usdt
  175. https://data.gateapi.io/api2/1/orderBook/nas_eth
  176. https://data.gateapi.io/api2/1/orderBook/nas_btc
  177. https://data.gateapi.io/api2/1/orderBook/eth_btc
  178. https://data.gateapi.io/api2/1/orderBook/etc_btc
  179. https://data.gateapi.io/api2/1/orderBook/etc_eth
  180. https://data.gateapi.io/api2/1/orderBook/zec_btc
  181. https://data.gateapi.io/api2/1/orderBook/dash_btc
  182. https://data.gateapi.io/api2/1/orderBook/ltc_btc
  183. https://data.gateapi.io/api2/1/orderBook/bch_btc
  184. https://data.gateapi.io/api2/1/orderBook/btg_btc
  185. https://data.gateapi.io/api2/1/orderBook/qtum_btc
  186. https://data.gateapi.io/api2/1/orderBook/qtum_eth
  187. https://data.gateapi.io/api2/1/orderBook/xrp_btc
  188. https://data.gateapi.io/api2/1/orderBook/doge_btc
  189. https://data.gateapi.io/api2/1/orderBook/xmr_btc
  190. https://data.gateapi.io/api2/1/orderBook/zrx_btc
  191. https://data.gateapi.io/api2/1/orderBook/zrx_eth
  192. https://data.gateapi.io/api2/1/orderBook/dnt_eth
  193. https://data.gateapi.io/api2/1/orderBook/dpy_eth
  194. https://data.gateapi.io/api2/1/orderBook/oax_btc
  195. https://data.gateapi.io/api2/1/orderBook/oax_usdt
  196. https://data.gateapi.io/api2/1/orderBook/oax_eth
  197. https://data.gateapi.io/api2/1/orderBook/lrc_eth
  198. https://data.gateapi.io/api2/1/orderBook/lrc_btc
  199. https://data.gateapi.io/api2/1/orderBook/pst_eth
  200. https://data.gateapi.io/api2/1/orderBook/bcdn_eth
  201. https://data.gateapi.io/api2/1/orderBook/bcdn_usdt
  202. https://data.gateapi.io/api2/1/orderBook/snt_eth
  203. https://data.gateapi.io/api2/1/orderBook/snt_btc
  204. https://data.gateapi.io/api2/1/orderBook/btm_eth
  205. https://data.gateapi.io/api2/1/orderBook/btm_btc
  206. https://data.gateapi.io/api2/1/orderBook/snet_eth
  207. https://data.gateapi.io/api2/1/orderBook/snet_usdt
  208. https://data.gateapi.io/api2/1/orderBook/llt_snet
  209. https://data.gateapi.io/api2/1/orderBook/omg_eth
  210. https://data.gateapi.io/api2/1/orderBook/omg_btc
  211. https://data.gateapi.io/api2/1/orderBook/pay_eth
  212. https://data.gateapi.io/api2/1/orderBook/pay_btc
  213. https://data.gateapi.io/api2/1/orderBook/bat_eth
  214. https://data.gateapi.io/api2/1/orderBook/bat_btc
  215. https://data.gateapi.io/api2/1/orderBook/cvc_eth
  216. https://data.gateapi.io/api2/1/orderBook/storj_eth
  217. https://data.gateapi.io/api2/1/orderBook/storj_btc
  218. https://data.gateapi.io/api2/1/orderBook/eos_eth
  219. https://data.gateapi.io/api2/1/orderBook/eos_btc
  220. https://data.gateapi.io/api2/1/orderBook/bts_usdt
  221. https://data.gateapi.io/api2/1/orderBook/bts_btc
  222. https://data.gateapi.io/api2/1/orderBook/btc_sgd
  223. https://data.gateapi.io/api2/1/orderBook/bch_sgd
  224. https://data.gateapi.io/api2/1/orderBook/eth_sgd
  225. https://data.gateapi.io/api2/1/orderBook/etc_sgd
  226. https://data.gateapi.io/api2/1/orderBook/xrp_sgd
  227. https://data.gateapi.io/api2/1/orderBook/ltc_sgd
  228. https://data.gateapi.io/api2/1/orderBook/xtz_try
  229. https://data.gateapi.io/api2/1/orderBook/xrp_try
  230. https://data.gateapi.io/api2/1/orderBook/xlm_try
  231. https://data.gateapi.io/api2/1/orderBook/wbtc_try
  232. https://data.gateapi.io/api2/1/orderBook/waves_try
  233. https://data.gateapi.io/api2/1/orderBook/usdt_try
  234. https://data.gateapi.io/api2/1/orderBook/uni_try
  235. https://data.gateapi.io/api2/1/orderBook/uma_try
  236. https://data.gateapi.io/api2/1/orderBook/trx_try
  237. https://data.gateapi.io/api2/1/orderBook/sxp_try
  238. https://data.gateapi.io/api2/1/orderBook/sol_try
  239. https://data.gateapi.io/api2/1/orderBook/shib_try
  240. https://data.gateapi.io/api2/1/orderBook/sand_try
  241. https://data.gateapi.io/api2/1/orderBook/omg_try
  242. https://data.gateapi.io/api2/1/orderBook/neo_try
  243. https://data.gateapi.io/api2/1/orderBook/mkr_try
  244. https://data.gateapi.io/api2/1/orderBook/mana_try
  245. https://data.gateapi.io/api2/1/orderBook/ltc_try
  246. https://data.gateapi.io/api2/1/orderBook/lrc_try
  247. https://data.gateapi.io/api2/1/orderBook/link_try
  248. https://data.gateapi.io/api2/1/orderBook/hot_try
  249. https://data.gateapi.io/api2/1/orderBook/gst_try
  250. https://data.gateapi.io/api2/1/orderBook/gala_try
  251. https://data.gateapi.io/api2/1/orderBook/ftm_try
  252. https://data.gateapi.io/api2/1/orderBook/eth_try
  253. https://data.gateapi.io/api2/1/orderBook/eos_try
  254. https://data.gateapi.io/api2/1/orderBook/enj_try
  255. https://data.gateapi.io/api2/1/orderBook/dot_try
  256. https://data.gateapi.io/api2/1/orderBook/doge_try
  257. https://data.gateapi.io/api2/1/orderBook/dai_try
  258. https://data.gateapi.io/api2/1/orderBook/crv_try
  259. https://data.gateapi.io/api2/1/orderBook/chz_try
  260. https://data.gateapi.io/api2/1/orderBook/btt_try
  261. https://data.gateapi.io/api2/1/orderBook/btc_try
  262. https://data.gateapi.io/api2/1/orderBook/bnb_try
  263. https://data.gateapi.io/api2/1/orderBook/bat_try
  264. https://data.gateapi.io/api2/1/orderBook/axs_try
  265. https://data.gateapi.io/api2/1/orderBook/avax_try
  266. https://data.gateapi.io/api2/1/orderBook/atom_try
  267. https://data.gateapi.io/api2/1/orderBook/ape_try
  268. https://data.gateapi.io/api2/1/orderBook/ankr_try
  269. https://data.gateapi.io/api2/1/orderBook/amp_try
  270. https://data.gateapi.io/api2/1/orderBook/algo_try
  271. https://data.gateapi.io/api2/1/orderBook/ada_try
  272. https://data.gateapi.io/api2/1/orderBook/aave_try
  273. https://data.gateapi.io/api2/1/orderBook/1inch_try
  274. https://data.gateapi.io/api2/1/orderBook/mask_try
  275. https://data.gateapi.io/api2/1/orderBook/apt_try
  276. https://data.gateapi.io/api2/1/orderBook/ar_try
  277. https://data.gateapi.io/api2/1/orderBook/luna_try
  278. https://data.gateapi.io/api2/1/orderBook/lunc_try
  279. https://data.gateapi.io/api2/1/orderBook/flow_try
  280. https://data.gateapi.io/api2/1/orderBook/fil_try
  281. https://data.gateapi.io/api2/1/orderBook/dydx_try
  282. https://data.gateapi.io/api2/1/orderBook/op_try
  283. https://data.gateapi.io/api2/1/orderBook/icp_try
  284. https://data.gateapi.io/api2/1/orderBook/lit_try
  285. https://data.gateapi.io/api2/1/orderBook/people_try
  286. https://data.gateapi.io/api2/1/orderBook/jasmy_try
  287. https://data.gateapi.io/api2/1/orderBook/vinu_try
  288. https://data.gateapi.io/api2/1/orderBook/arb_try
  289. https://data.gateapi.io/api2/1/orderBook/id_try
  290. https://data.gateapi.io/api2/1/orderBook/sui_try
  291. https://data.gateapi.io/api2/1/orderBook/pepe_try
  292. https://data.gateapi.io/api2/1/orderBook/aidoge_try
  293. https://data.gateapi.io/api2/1/orderBook/blur_try
  294. https://data.gateapi.io/api2/1/orderBook/ordi_try
  295. https://data.gateapi.io/api2/1/orderBook/asr_try
  296. https://data.gateapi.io/api2/1/orderBook/psg_try
  297. https://data.gateapi.io/api2/1/orderBook/acm_try
  298. https://data.gateapi.io/api2/1/orderBook/atm_try
  299. https://data.gateapi.io/api2/1/orderBook/juv_try
  300. https://data.gateapi.io/api2/1/orderBook/sei_try
  301. https://data.gateapi.io/api2/1/orderBook/lpt_try
  302. https://data.gateapi.io/api2/1/orderBook/cyber_try
  303. https://data.gateapi.io/api2/1/orderBook/wld_try
  304. https://data.gateapi.io/api2/1/orderBook/hbar_try
  305. https://data.gateapi.io/api2/1/orderBook/arkm_try
  306. https://data.gateapi.io/api2/1/orderBook/ygg_try
  307. https://data.gateapi.io/api2/1/orderBook/flm_try
  308. https://data.gateapi.io/api2/1/orderBook/blz_try
  309. https://data.gateapi.io/api2/1/orderBook/oax_try
  310. https://data.gateapi.io/api2/1/orderBook/unfi_try
  311. https://data.gateapi.io/api2/1/orderBook/vgx_try
  312. https://data.gateapi.io/api2/1/orderBook/igu_try
  313. https://data.gateapi.io/api2/1/orderBook/bch_try
  314. https://data.gateapi.io/api2/1/orderBook/tomi_try
  315. https://data.gateapi.io/api2/1/orderBook/syn_try
  316. https://data.gateapi.io/api2/1/orderBook/dodo_try
  317. https://data.gateapi.io/api2/1/orderBook/cfx_try
  318. https://data.gateapi.io/api2/1/orderBook/astra_try
  319. https://data.gateapi.io/api2/1/orderBook/kas_try
  320. https://data.gateapi.io/api2/1/orderBook/lqty_try
  321. https://data.gateapi.io/api2/1/orderBook/perp_try
  322. https://data.gateapi.io/api2/1/orderBook/snx_try
  323. https://data.gateapi.io/api2/1/orderBook/nmr_try
  324. https://data.gateapi.io/api2/1/orderBook/matic_try
  325. https://data.gateapi.io/api2/1/orderBook/flux_try
  326. https://data.gateapi.io/api2/1/orderBook/og_try
  327. https://data.gateapi.io/api2/1/orderBook/ftt_try
  328. https://data.gateapi.io/api2/1/orderBook/xvg_try
  329. https://data.gateapi.io/api2/1/orderBook/ogn_try
  330. https://data.gateapi.io/api2/1/orderBook/storj_try
  331. https://data.gateapi.io/api2/1/orderBook/hifi_try
  332. https://data.gateapi.io/api2/1/orderBook/trb_try
  333. https://data.gateapi.io/api2/1/orderBook/srm_try
  334. https://data.gateapi.io/api2/1/orderBook/ladys_try
  335. https://data.gateapi.io/api2/1/orderBook/akro_try
  336. https://data.gateapi.io/api2/1/orderBook/loom_try
  337. https://data.gateapi.io/api2/1/orderBook/gari_try
  338. https://data.gateapi.io/api2/1/orderBook/fitfi_try
  339. https://data.gateapi.io/api2/1/orderBook/bsv_try
  340. https://data.gateapi.io/api2/1/orderBook/vra_try
  341. https://data.gateapi.io/api2/1/orderBook/etc_try
  342. https://data.gateapi.io/api2/1/orderBook/avax_usdt
  343. https://data.gateapi.io/api2/1/orderBook/sxp_usdt
  344. https://data.gateapi.io/api2/1/orderBook/chz_usdt
  345. https://data.gateapi.io/api2/1/orderBook/gt_usdt
  346. https://data.gateapi.io/api2/1/orderBook/busd_usdt
  347. https://data.gateapi.io/api2/1/orderBook/busd_eth
  348. https://data.gateapi.io/api2/1/orderBook/usdc_usdt
  349. https://data.gateapi.io/api2/1/orderBook/tusd_usdt
  350. https://data.gateapi.io/api2/1/orderBook/usdp_usdt
  351. https://data.gateapi.io/api2/1/orderBook/usdg_usdt
  352. https://data.gateapi.io/api2/1/orderBook/gt_btc
  353. https://data.gateapi.io/api2/1/orderBook/gt_eth
  354. https://data.gateapi.io/api2/1/orderBook/eth_usdc
  355. https://data.gateapi.io/api2/1/orderBook/ethf_usdt
  356. https://data.gateapi.io/api2/1/orderBook/ethw_usdt
  357. https://data.gateapi.io/api2/1/orderBook/ethw_eth
  358. https://data.gateapi.io/api2/1/orderBook/btc_usdc
  359. https://data.gateapi.io/api2/1/orderBook/sys_usdt
  360. https://data.gateapi.io/api2/1/orderBook/sys_eth
  361. https://data.gateapi.io/api2/1/orderBook/atom_btc
  362. https://data.gateapi.io/api2/1/orderBook/atom_usdt
  363. https://data.gateapi.io/api2/1/orderBook/nyzo_usdt
  364. https://data.gateapi.io/api2/1/orderBook/nyzo_eth
  365. https://data.gateapi.io/api2/1/orderBook/scrt_usdt
  366. https://data.gateapi.io/api2/1/orderBook/scrt_eth
  367. https://data.gateapi.io/api2/1/orderBook/eth2_usdt
  368. https://data.gateapi.io/api2/1/orderBook/eth2_eth
  369. https://data.gateapi.io/api2/1/orderBook/hard_usdt
  370. https://data.gateapi.io/api2/1/orderBook/hard_eth
  371. https://data.gateapi.io/api2/1/orderBook/kava_usdt
  372. https://data.gateapi.io/api2/1/orderBook/iris_usdt
  373. https://data.gateapi.io/api2/1/orderBook/ant_usdt
  374. https://data.gateapi.io/api2/1/orderBook/ankr_usdt
  375. https://data.gateapi.io/api2/1/orderBook/stpt_usdt
  376. https://data.gateapi.io/api2/1/orderBook/rsr_usdt
  377. https://data.gateapi.io/api2/1/orderBook/kai_usdt
  378. https://data.gateapi.io/api2/1/orderBook/ctsi_usdt
  379. https://data.gateapi.io/api2/1/orderBook/comp_usdt
  380. https://data.gateapi.io/api2/1/orderBook/ocean_usdt
  381. https://data.gateapi.io/api2/1/orderBook/sc_usdt
  382. https://data.gateapi.io/api2/1/orderBook/sc_eth
  383. https://data.gateapi.io/api2/1/orderBook/ksm_usdt
  384. https://data.gateapi.io/api2/1/orderBook/firo_usdt
  385. https://data.gateapi.io/api2/1/orderBook/dot_usdt
  386. https://data.gateapi.io/api2/1/orderBook/dot_btc
  387. https://data.gateapi.io/api2/1/orderBook/mtr_usdt
  388. https://data.gateapi.io/api2/1/orderBook/mtrg_usdt
  389. https://data.gateapi.io/api2/1/orderBook/sol_usdt
  390. https://data.gateapi.io/api2/1/orderBook/sol_usdc
  391. https://data.gateapi.io/api2/1/orderBook/coti_usdt
  392. https://data.gateapi.io/api2/1/orderBook/ampl_usdt
  393. https://data.gateapi.io/api2/1/orderBook/digg_usdt
  394. https://data.gateapi.io/api2/1/orderBook/digg_eth
  395. https://data.gateapi.io/api2/1/orderBook/grap_usdt
  396. https://data.gateapi.io/api2/1/orderBook/grap_eth
  397. https://data.gateapi.io/api2/1/orderBook/wnxm_usdt
  398. https://data.gateapi.io/api2/1/orderBook/wnxm_eth
  399. https://data.gateapi.io/api2/1/orderBook/luna_usdt
  400. https://data.gateapi.io/api2/1/orderBook/luna_eth
  401. https://data.gateapi.io/api2/1/orderBook/lunc_usdt
  402. https://data.gateapi.io/api2/1/orderBook/avax_eth
  403. https://data.gateapi.io/api2/1/orderBook/avax_usdc
  404. https://data.gateapi.io/api2/1/orderBook/fsn_usdt
  405. https://data.gateapi.io/api2/1/orderBook/fsn_eth
  406. https://data.gateapi.io/api2/1/orderBook/chng_usdt
  407. https://data.gateapi.io/api2/1/orderBook/chng_btc
  408. https://data.gateapi.io/api2/1/orderBook/ooki_usdt
  409. https://data.gateapi.io/api2/1/orderBook/pcx_usdt
  410. https://data.gateapi.io/api2/1/orderBook/yam_usdt
  411. https://data.gateapi.io/api2/1/orderBook/yam_eth
  412. https://data.gateapi.io/api2/1/orderBook/box_usdt
  413. https://data.gateapi.io/api2/1/orderBook/crv_usdt
  414. https://data.gateapi.io/api2/1/orderBook/crv_btc
  415. https://data.gateapi.io/api2/1/orderBook/crv_eth
  416. https://data.gateapi.io/api2/1/orderBook/uni_usdt
  417. https://data.gateapi.io/api2/1/orderBook/uni_eth
  418. https://data.gateapi.io/api2/1/orderBook/sushi_usdt
  419. https://data.gateapi.io/api2/1/orderBook/sushi_eth
  420. https://data.gateapi.io/api2/1/orderBook/aave_usdt
  421. https://data.gateapi.io/api2/1/orderBook/aave_eth
  422. https://data.gateapi.io/api2/1/orderBook/pols_usdt
  423. https://data.gateapi.io/api2/1/orderBook/erg_usdt
  424. https://data.gateapi.io/api2/1/orderBook/erg_eth
  425. https://data.gateapi.io/api2/1/orderBook/gof_usdt
  426. https://data.gateapi.io/api2/1/orderBook/bnc_usdt
  427. https://data.gateapi.io/api2/1/orderBook/kar_usdt
  428. https://data.gateapi.io/api2/1/orderBook/sdn_usdt
  429. https://data.gateapi.io/api2/1/orderBook/sdn_eth
  430. https://data.gateapi.io/api2/1/orderBook/sdn_btc
  431. https://data.gateapi.io/api2/1/orderBook/wit_usdt
  432. https://data.gateapi.io/api2/1/orderBook/wit_eth
  433. https://data.gateapi.io/api2/1/orderBook/wit_btc
  434. https://data.gateapi.io/api2/1/orderBook/rmrk_usdt
  435. https://data.gateapi.io/api2/1/orderBook/gens_usdt
  436. https://data.gateapi.io/api2/1/orderBook/aca_usdt
  437. https://data.gateapi.io/api2/1/orderBook/astr_usdt
  438. https://data.gateapi.io/api2/1/orderBook/astr_eth
  439. https://data.gateapi.io/api2/1/orderBook/astr_btc
  440. https://data.gateapi.io/api2/1/orderBook/neer_usdt
  441. https://data.gateapi.io/api2/1/orderBook/kma_usdt
  442. https://data.gateapi.io/api2/1/orderBook/teer_usdt
  443. https://data.gateapi.io/api2/1/orderBook/tt_usdt
  444. https://data.gateapi.io/api2/1/orderBook/tt_eth
  445. https://data.gateapi.io/api2/1/orderBook/kint_usdt
  446. https://data.gateapi.io/api2/1/orderBook/kint_eth
  447. https://data.gateapi.io/api2/1/orderBook/intr_usdt
  448. https://data.gateapi.io/api2/1/orderBook/sgb_usdt
  449. https://data.gateapi.io/api2/1/orderBook/air_usdt
  450. https://data.gateapi.io/api2/1/orderBook/movr_usdt
  451. https://data.gateapi.io/api2/1/orderBook/movr_eth
  452. https://data.gateapi.io/api2/1/orderBook/glmr_usdt
  453. https://data.gateapi.io/api2/1/orderBook/glmr_eth
  454. https://data.gateapi.io/api2/1/orderBook/pha_usdt
  455. https://data.gateapi.io/api2/1/orderBook/sashimi_usdt
  456. https://data.gateapi.io/api2/1/orderBook/sashimi_eth
  457. https://data.gateapi.io/api2/1/orderBook/farm_usdt
  458. https://data.gateapi.io/api2/1/orderBook/farm_eth
  459. https://data.gateapi.io/api2/1/orderBook/swrv_usdt
  460. https://data.gateapi.io/api2/1/orderBook/swrv_eth
  461. https://data.gateapi.io/api2/1/orderBook/razor_usdt
  462. https://data.gateapi.io/api2/1/orderBook/razor_eth
  463. https://data.gateapi.io/api2/1/orderBook/auction_usdt
  464. https://data.gateapi.io/api2/1/orderBook/auction_eth
  465. https://data.gateapi.io/api2/1/orderBook/ulu_usdt
  466. https://data.gateapi.io/api2/1/orderBook/ulu_eth
  467. https://data.gateapi.io/api2/1/orderBook/oin_usdt
  468. https://data.gateapi.io/api2/1/orderBook/ags_usdt
  469. https://data.gateapi.io/api2/1/orderBook/oxt_usdt
  470. https://data.gateapi.io/api2/1/orderBook/oxt_eth
  471. https://data.gateapi.io/api2/1/orderBook/sand_usdt
  472. https://data.gateapi.io/api2/1/orderBook/sand_eth
  473. https://data.gateapi.io/api2/1/orderBook/pool_usdt
  474. https://data.gateapi.io/api2/1/orderBook/pool_eth
  475. https://data.gateapi.io/api2/1/orderBook/amp_usdt
  476. https://data.gateapi.io/api2/1/orderBook/amp_eth
  477. https://data.gateapi.io/api2/1/orderBook/hot_usdt
  478. https://data.gateapi.io/api2/1/orderBook/hot_eth
  479. https://data.gateapi.io/api2/1/orderBook/bondly_usdt
  480. https://data.gateapi.io/api2/1/orderBook/bondly_eth
  481. https://data.gateapi.io/api2/1/orderBook/tpt_usdt
  482. https://data.gateapi.io/api2/1/orderBook/tpt_eth
  483. https://data.gateapi.io/api2/1/orderBook/bmi_usdt
  484. https://data.gateapi.io/api2/1/orderBook/bmi_eth
  485. https://data.gateapi.io/api2/1/orderBook/lpool_usdt
  486. https://data.gateapi.io/api2/1/orderBook/lpool_eth
  487. https://data.gateapi.io/api2/1/orderBook/super_usdt
  488. https://data.gateapi.io/api2/1/orderBook/super_eth
  489. https://data.gateapi.io/api2/1/orderBook/uft_usdt
  490. https://data.gateapi.io/api2/1/orderBook/uft_eth
  491. https://data.gateapi.io/api2/1/orderBook/ray_usdt
  492. https://data.gateapi.io/api2/1/orderBook/ray_eth
  493. https://data.gateapi.io/api2/1/orderBook/atlas_usdt
  494. https://data.gateapi.io/api2/1/orderBook/polis_usdt
  495. https://data.gateapi.io/api2/1/orderBook/orca_usdt
  496. https://data.gateapi.io/api2/1/orderBook/wag_usdt
  497. https://data.gateapi.io/api2/1/orderBook/sny_usdt
  498. https://data.gateapi.io/api2/1/orderBook/sny_eth
  499. https://data.gateapi.io/api2/1/orderBook/cstr_usdt
  500. https://data.gateapi.io/api2/1/orderBook/cstr_eth
  501. https://data.gateapi.io/api2/1/orderBook/gofx_usdt
  502. https://data.gateapi.io/api2/1/orderBook/cys_usdt
  503. https://data.gateapi.io/api2/1/orderBook/cys_eth
  504. https://data.gateapi.io/api2/1/orderBook/samo_usdt
  505. https://data.gateapi.io/api2/1/orderBook/samo_eth
  506. https://data.gateapi.io/api2/1/orderBook/solr_usdt
  507. https://data.gateapi.io/api2/1/orderBook/solr_eth
  508. https://data.gateapi.io/api2/1/orderBook/liq_usdt
  509. https://data.gateapi.io/api2/1/orderBook/crp_usdt
  510. https://data.gateapi.io/api2/1/orderBook/crp_eth
  511. https://data.gateapi.io/api2/1/orderBook/slrs_usdt
  512. https://data.gateapi.io/api2/1/orderBook/slrs_eth
  513. https://data.gateapi.io/api2/1/orderBook/slim_usdt
  514. https://data.gateapi.io/api2/1/orderBook/slim_eth
  515. https://data.gateapi.io/api2/1/orderBook/like_usdt
  516. https://data.gateapi.io/api2/1/orderBook/like_eth
  517. https://data.gateapi.io/api2/1/orderBook/port_usdt
  518. https://data.gateapi.io/api2/1/orderBook/prt_usdt
  519. https://data.gateapi.io/api2/1/orderBook/prt_eth
  520. https://data.gateapi.io/api2/1/orderBook/larix_usdt
  521. https://data.gateapi.io/api2/1/orderBook/larix_eth
  522. https://data.gateapi.io/api2/1/orderBook/sunny_usdt
  523. https://data.gateapi.io/api2/1/orderBook/sunny_eth
  524. https://data.gateapi.io/api2/1/orderBook/sbr_usdt
  525. https://data.gateapi.io/api2/1/orderBook/sbr_eth
  526. https://data.gateapi.io/api2/1/orderBook/mngo_usdt
  527. https://data.gateapi.io/api2/1/orderBook/mngo_eth
  528. https://data.gateapi.io/api2/1/orderBook/tulip_usdt
  529. https://data.gateapi.io/api2/1/orderBook/tulip_eth
  530. https://data.gateapi.io/api2/1/orderBook/step_usdt
  531. https://data.gateapi.io/api2/1/orderBook/step_eth
  532. https://data.gateapi.io/api2/1/orderBook/mer_usdt
  533. https://data.gateapi.io/api2/1/orderBook/fida_usdt
  534. https://data.gateapi.io/api2/1/orderBook/fida_eth
  535. https://data.gateapi.io/api2/1/orderBook/hai_eth
  536. https://data.gateapi.io/api2/1/orderBook/hai_usdt
  537. https://data.gateapi.io/api2/1/orderBook/aqt_usdt
  538. https://data.gateapi.io/api2/1/orderBook/ehash_usdt
  539. https://data.gateapi.io/api2/1/orderBook/ehash_eth
  540. https://data.gateapi.io/api2/1/orderBook/pbr_usdt
  541. https://data.gateapi.io/api2/1/orderBook/pbr_eth
  542. https://data.gateapi.io/api2/1/orderBook/mask_usdt
  543. https://data.gateapi.io/api2/1/orderBook/mask_eth
  544. https://data.gateapi.io/api2/1/orderBook/hopr_usdt
  545. https://data.gateapi.io/api2/1/orderBook/hopr_eth
  546. https://data.gateapi.io/api2/1/orderBook/polk_usdt
  547. https://data.gateapi.io/api2/1/orderBook/polk_eth
  548. https://data.gateapi.io/api2/1/orderBook/prom_usdt
  549. https://data.gateapi.io/api2/1/orderBook/prom_eth
  550. https://data.gateapi.io/api2/1/orderBook/tvk_usdt
  551. https://data.gateapi.io/api2/1/orderBook/tvk_eth
  552. https://data.gateapi.io/api2/1/orderBook/matter_usdt
  553. https://data.gateapi.io/api2/1/orderBook/matter_eth
  554. https://data.gateapi.io/api2/1/orderBook/a5t_usdt
  555. https://data.gateapi.io/api2/1/orderBook/a5t_eth
  556. https://data.gateapi.io/api2/1/orderBook/slice_usdt
  557. https://data.gateapi.io/api2/1/orderBook/slice_eth
  558. https://data.gateapi.io/api2/1/orderBook/cudos_usdt
  559. https://data.gateapi.io/api2/1/orderBook/muse_usdt
  560. https://data.gateapi.io/api2/1/orderBook/muse_eth
  561. https://data.gateapi.io/api2/1/orderBook/furucombo_usdt
  562. https://data.gateapi.io/api2/1/orderBook/furucombo_eth
  563. https://data.gateapi.io/api2/1/orderBook/dyp_usdt
  564. https://data.gateapi.io/api2/1/orderBook/dyp_eth
  565. https://data.gateapi.io/api2/1/orderBook/dows_usdt
  566. https://data.gateapi.io/api2/1/orderBook/dows_eth
  567. https://data.gateapi.io/api2/1/orderBook/apys_usdt
  568. https://data.gateapi.io/api2/1/orderBook/apys_eth
  569. https://data.gateapi.io/api2/1/orderBook/udo_usdt
  570. https://data.gateapi.io/api2/1/orderBook/udo_eth
  571. https://data.gateapi.io/api2/1/orderBook/xrd_usdt
  572. https://data.gateapi.io/api2/1/orderBook/xrd_eth
  573. https://data.gateapi.io/api2/1/orderBook/yield_usdt
  574. https://data.gateapi.io/api2/1/orderBook/yield_eth
  575. https://data.gateapi.io/api2/1/orderBook/utk_usdt
  576. https://data.gateapi.io/api2/1/orderBook/utk_eth
  577. https://data.gateapi.io/api2/1/orderBook/aergo_usdt
  578. https://data.gateapi.io/api2/1/orderBook/aergo_eth
  579. https://data.gateapi.io/api2/1/orderBook/etha_usdt
  580. https://data.gateapi.io/api2/1/orderBook/etha_eth
  581. https://data.gateapi.io/api2/1/orderBook/inv_usdt
  582. https://data.gateapi.io/api2/1/orderBook/inv_eth
  583. https://data.gateapi.io/api2/1/orderBook/aln_usdt
  584. https://data.gateapi.io/api2/1/orderBook/aln_eth
  585. https://data.gateapi.io/api2/1/orderBook/vra_usdt
  586. https://data.gateapi.io/api2/1/orderBook/vra_btc
  587. https://data.gateapi.io/api2/1/orderBook/audio_usdt
  588. https://data.gateapi.io/api2/1/orderBook/audio_eth
  589. https://data.gateapi.io/api2/1/orderBook/perl_usdt
  590. https://data.gateapi.io/api2/1/orderBook/perl_eth
  591. https://data.gateapi.io/api2/1/orderBook/chr_usdt
  592. https://data.gateapi.io/api2/1/orderBook/chr_eth
  593. https://data.gateapi.io/api2/1/orderBook/bamboo_usdt
  594. https://data.gateapi.io/api2/1/orderBook/hapi_usdt
  595. https://data.gateapi.io/api2/1/orderBook/blankv2_usdt
  596. https://data.gateapi.io/api2/1/orderBook/blankv2_eth
  597. https://data.gateapi.io/api2/1/orderBook/msol_usdt
  598. https://data.gateapi.io/api2/1/orderBook/msol_eth
  599. https://data.gateapi.io/api2/1/orderBook/oxy_usdt
  600. https://data.gateapi.io/api2/1/orderBook/oxy_eth
  601. https://data.gateapi.io/api2/1/orderBook/ern_usdt
  602. https://data.gateapi.io/api2/1/orderBook/ern_eth
  603. https://data.gateapi.io/api2/1/orderBook/bdp_usdt
  604. https://data.gateapi.io/api2/1/orderBook/bdp_eth
  605. https://data.gateapi.io/api2/1/orderBook/kine_usdt
  606. https://data.gateapi.io/api2/1/orderBook/kine_eth
  607. https://data.gateapi.io/api2/1/orderBook/cgg_usdt
  608. https://data.gateapi.io/api2/1/orderBook/cgg_eth
  609. https://data.gateapi.io/api2/1/orderBook/fet_usdt
  610. https://data.gateapi.io/api2/1/orderBook/fet_eth
  611. https://data.gateapi.io/api2/1/orderBook/wrx_usdt
  612. https://data.gateapi.io/api2/1/orderBook/wrx_eth
  613. https://data.gateapi.io/api2/1/orderBook/uos_usdt
  614. https://data.gateapi.io/api2/1/orderBook/uos_eth
  615. https://data.gateapi.io/api2/1/orderBook/unn_usdt
  616. https://data.gateapi.io/api2/1/orderBook/unn_eth
  617. https://data.gateapi.io/api2/1/orderBook/alice_usdt
  618. https://data.gateapi.io/api2/1/orderBook/alice_eth
  619. https://data.gateapi.io/api2/1/orderBook/adel_usdt
  620. https://data.gateapi.io/api2/1/orderBook/adel_eth
  621. https://data.gateapi.io/api2/1/orderBook/tonc_usdt
  622. https://data.gateapi.io/api2/1/orderBook/kimchi_usdt
  623. https://data.gateapi.io/api2/1/orderBook/kimchi_eth
  624. https://data.gateapi.io/api2/1/orderBook/kton_usdt
  625. https://data.gateapi.io/api2/1/orderBook/ring_usdt
  626. https://data.gateapi.io/api2/1/orderBook/ring_eth
  627. https://data.gateapi.io/api2/1/orderBook/mini_usdt
  628. https://data.gateapi.io/api2/1/orderBook/mini_eth
  629. https://data.gateapi.io/api2/1/orderBook/cream_usdt
  630. https://data.gateapi.io/api2/1/orderBook/cream_eth
  631. https://data.gateapi.io/api2/1/orderBook/jgn_usdt
  632. https://data.gateapi.io/api2/1/orderBook/jgn_eth
  633. https://data.gateapi.io/api2/1/orderBook/dego_usdt
  634. https://data.gateapi.io/api2/1/orderBook/rfuel_usdt
  635. https://data.gateapi.io/api2/1/orderBook/sfg_usdt
  636. https://data.gateapi.io/api2/1/orderBook/nest_usdt
  637. https://data.gateapi.io/api2/1/orderBook/nest_eth
  638. https://data.gateapi.io/api2/1/orderBook/cvaultcore_eth
  639. https://data.gateapi.io/api2/1/orderBook/cvaultcore_usdt
  640. https://data.gateapi.io/api2/1/orderBook/core_usdt
  641. https://data.gateapi.io/api2/1/orderBook/near_eth
  642. https://data.gateapi.io/api2/1/orderBook/near_usdt
  643. https://data.gateapi.io/api2/1/orderBook/stake_usdt
  644. https://data.gateapi.io/api2/1/orderBook/tru_usdt
  645. https://data.gateapi.io/api2/1/orderBook/tru_eth
  646. https://data.gateapi.io/api2/1/orderBook/rose_usdt
  647. https://data.gateapi.io/api2/1/orderBook/rose_eth
  648. https://data.gateapi.io/api2/1/orderBook/badger_usdt
  649. https://data.gateapi.io/api2/1/orderBook/badger_eth
  650. https://data.gateapi.io/api2/1/orderBook/cover_usdt
  651. https://data.gateapi.io/api2/1/orderBook/cover_eth
  652. https://data.gateapi.io/api2/1/orderBook/glm_usdt
  653. https://data.gateapi.io/api2/1/orderBook/glm_eth
  654. https://data.gateapi.io/api2/1/orderBook/pickle_usdt
  655. https://data.gateapi.io/api2/1/orderBook/pickle_eth
  656. https://data.gateapi.io/api2/1/orderBook/hegic_usdt
  657. https://data.gateapi.io/api2/1/orderBook/hegic_eth
  658. https://data.gateapi.io/api2/1/orderBook/gth_usdt
  659. https://data.gateapi.io/api2/1/orderBook/gth_eth
  660. https://data.gateapi.io/api2/1/orderBook/dusk_usdt
  661. https://data.gateapi.io/api2/1/orderBook/dusk_eth
  662. https://data.gateapi.io/api2/1/orderBook/88mph_usdt
  663. https://data.gateapi.io/api2/1/orderBook/88mph_eth
  664. https://data.gateapi.io/api2/1/orderBook/unfi_usdt
  665. https://data.gateapi.io/api2/1/orderBook/unfi_eth
  666. https://data.gateapi.io/api2/1/orderBook/flm_usdt
  667. https://data.gateapi.io/api2/1/orderBook/flm_eth
  668. https://data.gateapi.io/api2/1/orderBook/ghst_usdt
  669. https://data.gateapi.io/api2/1/orderBook/ghst_eth
  670. https://data.gateapi.io/api2/1/orderBook/loon_usdt
  671. https://data.gateapi.io/api2/1/orderBook/loon_eth
  672. https://data.gateapi.io/api2/1/orderBook/ach_usdt
  673. https://data.gateapi.io/api2/1/orderBook/ach_eth
  674. https://data.gateapi.io/api2/1/orderBook/duck_usdt
  675. https://data.gateapi.io/api2/1/orderBook/duck_eth
  676. https://data.gateapi.io/api2/1/orderBook/grt_usdt
  677. https://data.gateapi.io/api2/1/orderBook/grt_eth
  678. https://data.gateapi.io/api2/1/orderBook/esd_usdt
  679. https://data.gateapi.io/api2/1/orderBook/esd_eth
  680. https://data.gateapi.io/api2/1/orderBook/aleph_usdt
  681. https://data.gateapi.io/api2/1/orderBook/aleph_eth
  682. https://data.gateapi.io/api2/1/orderBook/frax_usdt
  683. https://data.gateapi.io/api2/1/orderBook/frax_eth
  684. https://data.gateapi.io/api2/1/orderBook/fxs_usdt
  685. https://data.gateapi.io/api2/1/orderBook/fxs_eth
  686. https://data.gateapi.io/api2/1/orderBook/boring_usdt
  687. https://data.gateapi.io/api2/1/orderBook/boring_eth
  688. https://data.gateapi.io/api2/1/orderBook/bac_usdt
  689. https://data.gateapi.io/api2/1/orderBook/bac_eth
  690. https://data.gateapi.io/api2/1/orderBook/bas_usdt
  691. https://data.gateapi.io/api2/1/orderBook/bas_eth
  692. https://data.gateapi.io/api2/1/orderBook/lon_usdt
  693. https://data.gateapi.io/api2/1/orderBook/lon_eth
  694. https://data.gateapi.io/api2/1/orderBook/maha_usdt
  695. https://data.gateapi.io/api2/1/orderBook/maha_eth
  696. https://data.gateapi.io/api2/1/orderBook/wozx_usdt
  697. https://data.gateapi.io/api2/1/orderBook/wozx_eth
  698. https://data.gateapi.io/api2/1/orderBook/far_usdt
  699. https://data.gateapi.io/api2/1/orderBook/far_eth
  700. https://data.gateapi.io/api2/1/orderBook/pond_usdt
  701. https://data.gateapi.io/api2/1/orderBook/pond_eth
  702. https://data.gateapi.io/api2/1/orderBook/1inch_usdt
  703. https://data.gateapi.io/api2/1/orderBook/1inch_eth
  704. https://data.gateapi.io/api2/1/orderBook/dsd_usdt
  705. https://data.gateapi.io/api2/1/orderBook/dsd_eth
  706. https://data.gateapi.io/api2/1/orderBook/octo_usdt
  707. https://data.gateapi.io/api2/1/orderBook/octo_eth
  708. https://data.gateapi.io/api2/1/orderBook/share_usdt
  709. https://data.gateapi.io/api2/1/orderBook/share_eth
  710. https://data.gateapi.io/api2/1/orderBook/lina_usdt
  711. https://data.gateapi.io/api2/1/orderBook/lina_eth
  712. https://data.gateapi.io/api2/1/orderBook/onc_usdt
  713. https://data.gateapi.io/api2/1/orderBook/onc_eth
  714. https://data.gateapi.io/api2/1/orderBook/ons_usdt
  715. https://data.gateapi.io/api2/1/orderBook/ons_eth
  716. https://data.gateapi.io/api2/1/orderBook/zks_usdt
  717. https://data.gateapi.io/api2/1/orderBook/zks_eth
  718. https://data.gateapi.io/api2/1/orderBook/frog_usdt
  719. https://data.gateapi.io/api2/1/orderBook/frog_eth
  720. https://data.gateapi.io/api2/1/orderBook/mis_usdt
  721. https://data.gateapi.io/api2/1/orderBook/mis_eth
  722. https://data.gateapi.io/api2/1/orderBook/white_usdt
  723. https://data.gateapi.io/api2/1/orderBook/white_eth
  724. https://data.gateapi.io/api2/1/orderBook/onx_usdt
  725. https://data.gateapi.io/api2/1/orderBook/onx_eth
  726. https://data.gateapi.io/api2/1/orderBook/matic_usdt
  727. https://data.gateapi.io/api2/1/orderBook/matic_eth
  728. https://data.gateapi.io/api2/1/orderBook/matic_usdc
  729. https://data.gateapi.io/api2/1/orderBook/rif_usdt
  730. https://data.gateapi.io/api2/1/orderBook/rif_eth
  731. https://data.gateapi.io/api2/1/orderBook/cru_usdt
  732. https://data.gateapi.io/api2/1/orderBook/cru_eth
  733. https://data.gateapi.io/api2/1/orderBook/props_usdt
  734. https://data.gateapi.io/api2/1/orderBook/props_eth
  735. https://data.gateapi.io/api2/1/orderBook/bifif_usdt
  736. https://data.gateapi.io/api2/1/orderBook/bifif_eth
  737. https://data.gateapi.io/api2/1/orderBook/layer_usdt
  738. https://data.gateapi.io/api2/1/orderBook/layer_eth
  739. https://data.gateapi.io/api2/1/orderBook/yfdai_usdt
  740. https://data.gateapi.io/api2/1/orderBook/yfdai_eth
  741. https://data.gateapi.io/api2/1/orderBook/qnt_usdt
  742. https://data.gateapi.io/api2/1/orderBook/qnt_eth
  743. https://data.gateapi.io/api2/1/orderBook/bfc_usdt
  744. https://data.gateapi.io/api2/1/orderBook/bfc_eth
  745. https://data.gateapi.io/api2/1/orderBook/stmx_usdt
  746. https://data.gateapi.io/api2/1/orderBook/stmx_eth
  747. https://data.gateapi.io/api2/1/orderBook/room_usdt
  748. https://data.gateapi.io/api2/1/orderBook/room_eth
  749. https://data.gateapi.io/api2/1/orderBook/gdao_usdt
  750. https://data.gateapi.io/api2/1/orderBook/gdao_eth
  751. https://data.gateapi.io/api2/1/orderBook/unistake_usdt
  752. https://data.gateapi.io/api2/1/orderBook/unistake_eth
  753. https://data.gateapi.io/api2/1/orderBook/bond_usdt
  754. https://data.gateapi.io/api2/1/orderBook/bond_eth
  755. https://data.gateapi.io/api2/1/orderBook/frin_usdt
  756. https://data.gateapi.io/api2/1/orderBook/fxf_usdt
  757. https://data.gateapi.io/api2/1/orderBook/fxf_eth
  758. https://data.gateapi.io/api2/1/orderBook/crbn_usdt
  759. https://data.gateapi.io/api2/1/orderBook/crbn_eth
  760. https://data.gateapi.io/api2/1/orderBook/torn_usdt
  761. https://data.gateapi.io/api2/1/orderBook/torn_eth
  762. https://data.gateapi.io/api2/1/orderBook/strong_usdt
  763. https://data.gateapi.io/api2/1/orderBook/strong_eth
  764. https://data.gateapi.io/api2/1/orderBook/umb_usdt
  765. https://data.gateapi.io/api2/1/orderBook/umb_eth
  766. https://data.gateapi.io/api2/1/orderBook/nux_usdt
  767. https://data.gateapi.io/api2/1/orderBook/nux_eth
  768. https://data.gateapi.io/api2/1/orderBook/jasmy_usdt
  769. https://data.gateapi.io/api2/1/orderBook/jasmy_eth
  770. https://data.gateapi.io/api2/1/orderBook/bel_usdt
  771. https://data.gateapi.io/api2/1/orderBook/bel_eth
  772. https://data.gateapi.io/api2/1/orderBook/rndr_usdt
  773. https://data.gateapi.io/api2/1/orderBook/rndr_eth
  774. https://data.gateapi.io/api2/1/orderBook/zee_usdt
  775. https://data.gateapi.io/api2/1/orderBook/zee_eth
  776. https://data.gateapi.io/api2/1/orderBook/kono_usdt
  777. https://data.gateapi.io/api2/1/orderBook/kono_eth
  778. https://data.gateapi.io/api2/1/orderBook/polc_usdt
  779. https://data.gateapi.io/api2/1/orderBook/polc_eth
  780. https://data.gateapi.io/api2/1/orderBook/bcug_usdt
  781. https://data.gateapi.io/api2/1/orderBook/bcug_eth
  782. https://data.gateapi.io/api2/1/orderBook/xed_usdt
  783. https://data.gateapi.io/api2/1/orderBook/xed_eth
  784. https://data.gateapi.io/api2/1/orderBook/pkf_usdt
  785. https://data.gateapi.io/api2/1/orderBook/pkf_eth
  786. https://data.gateapi.io/api2/1/orderBook/rly_usdt
  787. https://data.gateapi.io/api2/1/orderBook/rly_eth
  788. https://data.gateapi.io/api2/1/orderBook/ustc_usdt
  789. https://data.gateapi.io/api2/1/orderBook/anc_usdt
  790. https://data.gateapi.io/api2/1/orderBook/anc_eth
  791. https://data.gateapi.io/api2/1/orderBook/pnt_usdt
  792. https://data.gateapi.io/api2/1/orderBook/pnt_eth
  793. https://data.gateapi.io/api2/1/orderBook/dafi_usdt
  794. https://data.gateapi.io/api2/1/orderBook/dafi_eth
  795. https://data.gateapi.io/api2/1/orderBook/chain_usdt
  796. https://data.gateapi.io/api2/1/orderBook/chain_eth
  797. https://data.gateapi.io/api2/1/orderBook/fire_usdt
  798. https://data.gateapi.io/api2/1/orderBook/fire_eth
  799. https://data.gateapi.io/api2/1/orderBook/math_usdt
  800. https://data.gateapi.io/api2/1/orderBook/math_eth
  801. https://data.gateapi.io/api2/1/orderBook/tara_usdt
  802. https://data.gateapi.io/api2/1/orderBook/tara_eth
  803. https://data.gateapi.io/api2/1/orderBook/tara_btc
  804. https://data.gateapi.io/api2/1/orderBook/vsp_usdt
  805. https://data.gateapi.io/api2/1/orderBook/vsp_eth
  806. https://data.gateapi.io/api2/1/orderBook/pcnt_usdt
  807. https://data.gateapi.io/api2/1/orderBook/pcnt_eth
  808. https://data.gateapi.io/api2/1/orderBook/arcx_usdt
  809. https://data.gateapi.io/api2/1/orderBook/arcx_eth
  810. https://data.gateapi.io/api2/1/orderBook/dg_usdt
  811. https://data.gateapi.io/api2/1/orderBook/dg_eth
  812. https://data.gateapi.io/api2/1/orderBook/dora_usdt
  813. https://data.gateapi.io/api2/1/orderBook/dora_eth
  814. https://data.gateapi.io/api2/1/orderBook/spi_usdt
  815. https://data.gateapi.io/api2/1/orderBook/spi_eth
  816. https://data.gateapi.io/api2/1/orderBook/bank_usdt
  817. https://data.gateapi.io/api2/1/orderBook/bank_eth
  818. https://data.gateapi.io/api2/1/orderBook/dent_usdt
  819. https://data.gateapi.io/api2/1/orderBook/dent_eth
  820. https://data.gateapi.io/api2/1/orderBook/atd_usdt
  821. https://data.gateapi.io/api2/1/orderBook/shr_usdt
  822. https://data.gateapi.io/api2/1/orderBook/shr_eth
  823. https://data.gateapi.io/api2/1/orderBook/conv_usdt
  824. https://data.gateapi.io/api2/1/orderBook/conv_eth
  825. https://data.gateapi.io/api2/1/orderBook/tidal_usdt
  826. https://data.gateapi.io/api2/1/orderBook/tidal_eth
  827. https://data.gateapi.io/api2/1/orderBook/k21_usdt
  828. https://data.gateapi.io/api2/1/orderBook/k21_eth
  829. https://data.gateapi.io/api2/1/orderBook/labs_usdt
  830. https://data.gateapi.io/api2/1/orderBook/labs_eth
  831. https://data.gateapi.io/api2/1/orderBook/oddz_usdt
  832. https://data.gateapi.io/api2/1/orderBook/oddz_eth
  833. https://data.gateapi.io/api2/1/orderBook/ogv_usdt
  834. https://data.gateapi.io/api2/1/orderBook/ogn_usdt
  835. https://data.gateapi.io/api2/1/orderBook/ogn_eth
  836. https://data.gateapi.io/api2/1/orderBook/ess_usdt
  837. https://data.gateapi.io/api2/1/orderBook/ess_eth
  838. https://data.gateapi.io/api2/1/orderBook/bles_usdt
  839. https://data.gateapi.io/api2/1/orderBook/bles_eth
  840. https://data.gateapi.io/api2/1/orderBook/ovr_usdt
  841. https://data.gateapi.io/api2/1/orderBook/mrch_usdt
  842. https://data.gateapi.io/api2/1/orderBook/mrch_eth
  843. https://data.gateapi.io/api2/1/orderBook/hget_usdt
  844. https://data.gateapi.io/api2/1/orderBook/hget_eth
  845. https://data.gateapi.io/api2/1/orderBook/dsla_usdt
  846. https://data.gateapi.io/api2/1/orderBook/dsla_eth
  847. https://data.gateapi.io/api2/1/orderBook/noia_usdt
  848. https://data.gateapi.io/api2/1/orderBook/noia_eth
  849. https://data.gateapi.io/api2/1/orderBook/revv_usdt
  850. https://data.gateapi.io/api2/1/orderBook/revv_eth
  851. https://data.gateapi.io/api2/1/orderBook/cook_usdt
  852. https://data.gateapi.io/api2/1/orderBook/cook_eth
  853. https://data.gateapi.io/api2/1/orderBook/axs_usdt
  854. https://data.gateapi.io/api2/1/orderBook/axs_eth
  855. https://data.gateapi.io/api2/1/orderBook/cfi_usdt
  856. https://data.gateapi.io/api2/1/orderBook/cfi_eth
  857. https://data.gateapi.io/api2/1/orderBook/mtl_usdt
  858. https://data.gateapi.io/api2/1/orderBook/mtl_eth
  859. https://data.gateapi.io/api2/1/orderBook/alcx_usdt
  860. https://data.gateapi.io/api2/1/orderBook/alcx_eth
  861. https://data.gateapi.io/api2/1/orderBook/fst_usdt
  862. https://data.gateapi.io/api2/1/orderBook/fst_eth
  863. https://data.gateapi.io/api2/1/orderBook/rai_usdt
  864. https://data.gateapi.io/api2/1/orderBook/rai_eth
  865. https://data.gateapi.io/api2/1/orderBook/ame_usdt
  866. https://data.gateapi.io/api2/1/orderBook/ame_eth
  867. https://data.gateapi.io/api2/1/orderBook/nmr_usdt
  868. https://data.gateapi.io/api2/1/orderBook/nmr_eth
  869. https://data.gateapi.io/api2/1/orderBook/stn_usdt
  870. https://data.gateapi.io/api2/1/orderBook/stn_eth
  871. https://data.gateapi.io/api2/1/orderBook/pmon_usdt
  872. https://data.gateapi.io/api2/1/orderBook/pmon_eth
  873. https://data.gateapi.io/api2/1/orderBook/shopx_usdt
  874. https://data.gateapi.io/api2/1/orderBook/shopx_eth
  875. https://data.gateapi.io/api2/1/orderBook/marsh_usdt
  876. https://data.gateapi.io/api2/1/orderBook/marsh_eth
  877. https://data.gateapi.io/api2/1/orderBook/shft_usdt
  878. https://data.gateapi.io/api2/1/orderBook/shft_eth
  879. https://data.gateapi.io/api2/1/orderBook/insur_usdt
  880. https://data.gateapi.io/api2/1/orderBook/insur_eth
  881. https://data.gateapi.io/api2/1/orderBook/rbc_usdt
  882. https://data.gateapi.io/api2/1/orderBook/rbc_eth
  883. https://data.gateapi.io/api2/1/orderBook/xcur_usdt
  884. https://data.gateapi.io/api2/1/orderBook/xcur_eth
  885. https://data.gateapi.io/api2/1/orderBook/vai_usdt
  886. https://data.gateapi.io/api2/1/orderBook/orbs_usdt
  887. https://data.gateapi.io/api2/1/orderBook/orbs_eth
  888. https://data.gateapi.io/api2/1/orderBook/fei_usdt
  889. https://data.gateapi.io/api2/1/orderBook/fei_eth
  890. https://data.gateapi.io/api2/1/orderBook/tribe_usdt
  891. https://data.gateapi.io/api2/1/orderBook/tribe_eth
  892. https://data.gateapi.io/api2/1/orderBook/xend_usdt
  893. https://data.gateapi.io/api2/1/orderBook/xend_eth
  894. https://data.gateapi.io/api2/1/orderBook/key_usdt
  895. https://data.gateapi.io/api2/1/orderBook/key_eth
  896. https://data.gateapi.io/api2/1/orderBook/adx_usdt
  897. https://data.gateapi.io/api2/1/orderBook/adx_eth
  898. https://data.gateapi.io/api2/1/orderBook/hifi_usdt
  899. https://data.gateapi.io/api2/1/orderBook/hifi_eth
  900. https://data.gateapi.io/api2/1/orderBook/suku_usdt
  901. https://data.gateapi.io/api2/1/orderBook/suku_eth
  902. https://data.gateapi.io/api2/1/orderBook/suku_btc
  903. https://data.gateapi.io/api2/1/orderBook/xor_usdt
  904. https://data.gateapi.io/api2/1/orderBook/lto_usdt
  905. https://data.gateapi.io/api2/1/orderBook/lto_eth
  906. https://data.gateapi.io/api2/1/orderBook/bepro_usdt
  907. https://data.gateapi.io/api2/1/orderBook/bepro_eth
  908. https://data.gateapi.io/api2/1/orderBook/totm_usdt
  909. https://data.gateapi.io/api2/1/orderBook/sake_usdt
  910. https://data.gateapi.io/api2/1/orderBook/sake_eth
  911. https://data.gateapi.io/api2/1/orderBook/bly_usdt
  912. https://data.gateapi.io/api2/1/orderBook/bly_btc
  913. https://data.gateapi.io/api2/1/orderBook/aioz_usdt
  914. https://data.gateapi.io/api2/1/orderBook/aioz_eth
  915. https://data.gateapi.io/api2/1/orderBook/lkr_usdt
  916. https://data.gateapi.io/api2/1/orderBook/lkr_eth
  917. https://data.gateapi.io/api2/1/orderBook/tshp_usdt
  918. https://data.gateapi.io/api2/1/orderBook/pnk_usdt
  919. https://data.gateapi.io/api2/1/orderBook/pnk_eth
  920. https://data.gateapi.io/api2/1/orderBook/boson_usdt
  921. https://data.gateapi.io/api2/1/orderBook/boson_eth
  922. https://data.gateapi.io/api2/1/orderBook/raze_usdt
  923. https://data.gateapi.io/api2/1/orderBook/raze_eth
  924. https://data.gateapi.io/api2/1/orderBook/l3p_usdt
  925. https://data.gateapi.io/api2/1/orderBook/l3p_eth
  926. https://data.gateapi.io/api2/1/orderBook/duck2_usdt
  927. https://data.gateapi.io/api2/1/orderBook/duck2_eth
  928. https://data.gateapi.io/api2/1/orderBook/rfox_usdt
  929. https://data.gateapi.io/api2/1/orderBook/rfox_eth
  930. https://data.gateapi.io/api2/1/orderBook/cel_usdt
  931. https://data.gateapi.io/api2/1/orderBook/cel_eth
  932. https://data.gateapi.io/api2/1/orderBook/ktn_usdt
  933. https://data.gateapi.io/api2/1/orderBook/ktn_eth
  934. https://data.gateapi.io/api2/1/orderBook/ddim_usdt
  935. https://data.gateapi.io/api2/1/orderBook/ddim_eth
  936. https://data.gateapi.io/api2/1/orderBook/mofi_usdt
  937. https://data.gateapi.io/api2/1/orderBook/fly_usdt
  938. https://data.gateapi.io/api2/1/orderBook/multi_usdt
  939. https://data.gateapi.io/api2/1/orderBook/multi_eth
  940. https://data.gateapi.io/api2/1/orderBook/tlm_usdt
  941. https://data.gateapi.io/api2/1/orderBook/tlm_eth
  942. https://data.gateapi.io/api2/1/orderBook/dfl_usdt
  943. https://data.gateapi.io/api2/1/orderBook/ddos_usdt
  944. https://data.gateapi.io/api2/1/orderBook/dhv_usdt
  945. https://data.gateapi.io/api2/1/orderBook/dhv_eth
  946. https://data.gateapi.io/api2/1/orderBook/gs_usdt
  947. https://data.gateapi.io/api2/1/orderBook/gs_eth
  948. https://data.gateapi.io/api2/1/orderBook/shib_usdt
  949. https://data.gateapi.io/api2/1/orderBook/shib_usdc
  950. https://data.gateapi.io/api2/1/orderBook/rage_usdt
  951. https://data.gateapi.io/api2/1/orderBook/ram_usdt
  952. https://data.gateapi.io/api2/1/orderBook/akita_usdt
  953. https://data.gateapi.io/api2/1/orderBook/cti_usdt
  954. https://data.gateapi.io/api2/1/orderBook/cti_eth
  955. https://data.gateapi.io/api2/1/orderBook/kif_usdt
  956. https://data.gateapi.io/api2/1/orderBook/kif_eth
  957. https://data.gateapi.io/api2/1/orderBook/reef_usdt
  958. https://data.gateapi.io/api2/1/orderBook/reef_eth
  959. https://data.gateapi.io/api2/1/orderBook/bird_usdt
  960. https://data.gateapi.io/api2/1/orderBook/bird_eth
  961. https://data.gateapi.io/api2/1/orderBook/maps_usdt
  962. https://data.gateapi.io/api2/1/orderBook/maps_eth
  963. https://data.gateapi.io/api2/1/orderBook/mdf_usdt
  964. https://data.gateapi.io/api2/1/orderBook/mdf_eth
  965. https://data.gateapi.io/api2/1/orderBook/mir_usdt
  966. https://data.gateapi.io/api2/1/orderBook/mir_eth
  967. https://data.gateapi.io/api2/1/orderBook/sfil_usdt
  968. https://data.gateapi.io/api2/1/orderBook/zcn_usdt
  969. https://data.gateapi.io/api2/1/orderBook/zcn_eth
  970. https://data.gateapi.io/api2/1/orderBook/mars_usdt
  971. https://data.gateapi.io/api2/1/orderBook/mars_eth
  972. https://data.gateapi.io/api2/1/orderBook/bao_usdt
  973. https://data.gateapi.io/api2/1/orderBook/bao_eth
  974. https://data.gateapi.io/api2/1/orderBook/lpt_usdt
  975. https://data.gateapi.io/api2/1/orderBook/lpt_eth
  976. https://data.gateapi.io/api2/1/orderBook/dis_usdt
  977. https://data.gateapi.io/api2/1/orderBook/dis_eth
  978. https://data.gateapi.io/api2/1/orderBook/dexe_usdt
  979. https://data.gateapi.io/api2/1/orderBook/dexe_eth
  980. https://data.gateapi.io/api2/1/orderBook/pbtc35a_usdt
  981. https://data.gateapi.io/api2/1/orderBook/pbtc35a_eth
  982. https://data.gateapi.io/api2/1/orderBook/orn_usdt
  983. https://data.gateapi.io/api2/1/orderBook/orn_eth
  984. https://data.gateapi.io/api2/1/orderBook/nord_usdt
  985. https://data.gateapi.io/api2/1/orderBook/nord_eth
  986. https://data.gateapi.io/api2/1/orderBook/dao_usdt
  987. https://data.gateapi.io/api2/1/orderBook/dao_eth
  988. https://data.gateapi.io/api2/1/orderBook/flow_usdt
  989. https://data.gateapi.io/api2/1/orderBook/flow_eth
  990. https://data.gateapi.io/api2/1/orderBook/blt_usdt
  991. https://data.gateapi.io/api2/1/orderBook/alpha_usdt
  992. https://data.gateapi.io/api2/1/orderBook/alpha_eth
  993. https://data.gateapi.io/api2/1/orderBook/api3_usdt
  994. https://data.gateapi.io/api2/1/orderBook/api3_eth
  995. https://data.gateapi.io/api2/1/orderBook/fin_usdt
  996. https://data.gateapi.io/api2/1/orderBook/skl_usdt
  997. https://data.gateapi.io/api2/1/orderBook/prq_usdt
  998. https://data.gateapi.io/api2/1/orderBook/front_usdt
  999. https://data.gateapi.io/api2/1/orderBook/front_try
  1000. https://data.gateapi.io/api2/1/orderBook/front_eth
  1001. https://data.gateapi.io/api2/1/orderBook/inj_usdt
  1002. https://data.gateapi.io/api2/1/orderBook/inj_eth
  1003. https://data.gateapi.io/api2/1/orderBook/alpa_usdt
  1004. https://data.gateapi.io/api2/1/orderBook/alpa_eth
  1005. https://data.gateapi.io/api2/1/orderBook/roobee_usdt
  1006. https://data.gateapi.io/api2/1/orderBook/nsure_usdt
  1007. https://data.gateapi.io/api2/1/orderBook/nsure_eth
  1008. https://data.gateapi.io/api2/1/orderBook/kp3r_usdt
  1009. https://data.gateapi.io/api2/1/orderBook/kp3r_eth
  1010. https://data.gateapi.io/api2/1/orderBook/woo_usdt
  1011. https://data.gateapi.io/api2/1/orderBook/woo_eth
  1012. https://data.gateapi.io/api2/1/orderBook/hyve_usdt
  1013. https://data.gateapi.io/api2/1/orderBook/hyve_eth
  1014. https://data.gateapi.io/api2/1/orderBook/kfc_usdt
  1015. https://data.gateapi.io/api2/1/orderBook/lever_usdt
  1016. https://data.gateapi.io/api2/1/orderBook/ramp_usdt
  1017. https://data.gateapi.io/api2/1/orderBook/sylo_usdt
  1018. https://data.gateapi.io/api2/1/orderBook/rari_eth
  1019. https://data.gateapi.io/api2/1/orderBook/rari_usdt
  1020. https://data.gateapi.io/api2/1/orderBook/dvp_usdt
  1021. https://data.gateapi.io/api2/1/orderBook/dvp_eth
  1022. https://data.gateapi.io/api2/1/orderBook/mph_usdt
  1023. https://data.gateapi.io/api2/1/orderBook/mph_eth
  1024. https://data.gateapi.io/api2/1/orderBook/df_usdt
  1025. https://data.gateapi.io/api2/1/orderBook/df_eth
  1026. https://data.gateapi.io/api2/1/orderBook/cvp_usdt
  1027. https://data.gateapi.io/api2/1/orderBook/cvp_eth
  1028. https://data.gateapi.io/api2/1/orderBook/value_usdt
  1029. https://data.gateapi.io/api2/1/orderBook/value_eth
  1030. https://data.gateapi.io/api2/1/orderBook/uma_usdt
  1031. https://data.gateapi.io/api2/1/orderBook/yfii_usdt
  1032. https://data.gateapi.io/api2/1/orderBook/yfii_eth
  1033. https://data.gateapi.io/api2/1/orderBook/swap_usdt
  1034. https://data.gateapi.io/api2/1/orderBook/swap_eth
  1035. https://data.gateapi.io/api2/1/orderBook/sxp_eth
  1036. https://data.gateapi.io/api2/1/orderBook/bal_usdt
  1037. https://data.gateapi.io/api2/1/orderBook/bal_eth
  1038. https://data.gateapi.io/api2/1/orderBook/band_usdt
  1039. https://data.gateapi.io/api2/1/orderBook/band_eth
  1040. https://data.gateapi.io/api2/1/orderBook/ast_usdt
  1041. https://data.gateapi.io/api2/1/orderBook/ast_eth
  1042. https://data.gateapi.io/api2/1/orderBook/troy_usdt
  1043. https://data.gateapi.io/api2/1/orderBook/troy_eth
  1044. https://data.gateapi.io/api2/1/orderBook/om_usdt
  1045. https://data.gateapi.io/api2/1/orderBook/om_eth
  1046. https://data.gateapi.io/api2/1/orderBook/spa_usdt
  1047. https://data.gateapi.io/api2/1/orderBook/spa_eth
  1048. https://data.gateapi.io/api2/1/orderBook/akro_usdt
  1049. https://data.gateapi.io/api2/1/orderBook/akro_eth
  1050. https://data.gateapi.io/api2/1/orderBook/for_usdt
  1051. https://data.gateapi.io/api2/1/orderBook/for_eth
  1052. https://data.gateapi.io/api2/1/orderBook/credit_usdt
  1053. https://data.gateapi.io/api2/1/orderBook/credit_eth
  1054. https://data.gateapi.io/api2/1/orderBook/dia_usdt
  1055. https://data.gateapi.io/api2/1/orderBook/dia_eth
  1056. https://data.gateapi.io/api2/1/orderBook/axis_usdt
  1057. https://data.gateapi.io/api2/1/orderBook/axis_eth
  1058. https://data.gateapi.io/api2/1/orderBook/trb_usdt
  1059. https://data.gateapi.io/api2/1/orderBook/trb_eth
  1060. https://data.gateapi.io/api2/1/orderBook/lien_usdt
  1061. https://data.gateapi.io/api2/1/orderBook/lien_eth
  1062. https://data.gateapi.io/api2/1/orderBook/pearl_usdt
  1063. https://data.gateapi.io/api2/1/orderBook/klv_usdt
  1064. https://data.gateapi.io/api2/1/orderBook/klv_eth
  1065. https://data.gateapi.io/api2/1/orderBook/nft_usdt
  1066. https://data.gateapi.io/api2/1/orderBook/corn_usdt
  1067. https://data.gateapi.io/api2/1/orderBook/slm_usdt
  1068. https://data.gateapi.io/api2/1/orderBook/tai_usdt
  1069. https://data.gateapi.io/api2/1/orderBook/crt_usdt
  1070. https://data.gateapi.io/api2/1/orderBook/jfi_usdt
  1071. https://data.gateapi.io/api2/1/orderBook/mta_usdt
  1072. https://data.gateapi.io/api2/1/orderBook/mta_eth
  1073. https://data.gateapi.io/api2/1/orderBook/yfi_usdt
  1074. https://data.gateapi.io/api2/1/orderBook/yfi_eth
  1075. https://data.gateapi.io/api2/1/orderBook/kin_usdt
  1076. https://data.gateapi.io/api2/1/orderBook/dka_usdt
  1077. https://data.gateapi.io/api2/1/orderBook/dka_eth
  1078. https://data.gateapi.io/api2/1/orderBook/ren_usdt
  1079. https://data.gateapi.io/api2/1/orderBook/ren_eth
  1080. https://data.gateapi.io/api2/1/orderBook/dos_usdt
  1081. https://data.gateapi.io/api2/1/orderBook/suter_usdt
  1082. https://data.gateapi.io/api2/1/orderBook/srm_usdt
  1083. https://data.gateapi.io/api2/1/orderBook/srm_eth
  1084. https://data.gateapi.io/api2/1/orderBook/jst_usdt
  1085. https://data.gateapi.io/api2/1/orderBook/lbk_usdt
  1086. https://data.gateapi.io/api2/1/orderBook/asd_usdt
  1087. https://data.gateapi.io/api2/1/orderBook/swop_usdt
  1088. https://data.gateapi.io/api2/1/orderBook/swop_eth
  1089. https://data.gateapi.io/api2/1/orderBook/enno_usdt
  1090. https://data.gateapi.io/api2/1/orderBook/nsbt_usdt
  1091. https://data.gateapi.io/api2/1/orderBook/nsbt_btc
  1092. https://data.gateapi.io/api2/1/orderBook/nsbt_eth
  1093. https://data.gateapi.io/api2/1/orderBook/west_usdt
  1094. https://data.gateapi.io/api2/1/orderBook/west_eth
  1095. https://data.gateapi.io/api2/1/orderBook/fio_usdt
  1096. https://data.gateapi.io/api2/1/orderBook/fio_eth
  1097. https://data.gateapi.io/api2/1/orderBook/hydra_usdt
  1098. https://data.gateapi.io/api2/1/orderBook/tlos_usdt
  1099. https://data.gateapi.io/api2/1/orderBook/tlos_btc
  1100. https://data.gateapi.io/api2/1/orderBook/olt_usdt
  1101. https://data.gateapi.io/api2/1/orderBook/xem_eth
  1102. https://data.gateapi.io/api2/1/orderBook/xem_usdt
  1103. https://data.gateapi.io/api2/1/orderBook/xem_btc
  1104. https://data.gateapi.io/api2/1/orderBook/xym_usdt
  1105. https://data.gateapi.io/api2/1/orderBook/xym_eth
  1106. https://data.gateapi.io/api2/1/orderBook/alaya_usdt
  1107. https://data.gateapi.io/api2/1/orderBook/alaya_eth
  1108. https://data.gateapi.io/api2/1/orderBook/lat_usdt
  1109. https://data.gateapi.io/api2/1/orderBook/dhx_usdt
  1110. https://data.gateapi.io/api2/1/orderBook/stc_usdt
  1111. https://data.gateapi.io/api2/1/orderBook/icp_usdt
  1112. https://data.gateapi.io/api2/1/orderBook/icp_eth
  1113. https://data.gateapi.io/api2/1/orderBook/ewt_usdt
  1114. https://data.gateapi.io/api2/1/orderBook/ewt_eth
  1115. https://data.gateapi.io/api2/1/orderBook/hnt_usdt
  1116. https://data.gateapi.io/api2/1/orderBook/hnt_eth
  1117. https://data.gateapi.io/api2/1/orderBook/angle_usdt
  1118. https://data.gateapi.io/api2/1/orderBook/mimir_usdt
  1119. https://data.gateapi.io/api2/1/orderBook/mimir_eth
  1120. https://data.gateapi.io/api2/1/orderBook/env_usdt
  1121. https://data.gateapi.io/api2/1/orderBook/xrune_usdt
  1122. https://data.gateapi.io/api2/1/orderBook/pixel_usdt
  1123. https://data.gateapi.io/api2/1/orderBook/gov_usdt
  1124. https://data.gateapi.io/api2/1/orderBook/dose_usdt
  1125. https://data.gateapi.io/api2/1/orderBook/dose_eth
  1126. https://data.gateapi.io/api2/1/orderBook/crpt_usdt
  1127. https://data.gateapi.io/api2/1/orderBook/crpt_eth
  1128. https://data.gateapi.io/api2/1/orderBook/moov_usdt
  1129. https://data.gateapi.io/api2/1/orderBook/ufo_usdt
  1130. https://data.gateapi.io/api2/1/orderBook/vee_usdt
  1131. https://data.gateapi.io/api2/1/orderBook/gm_usdt
  1132. https://data.gateapi.io/api2/1/orderBook/ace_usdt
  1133. https://data.gateapi.io/api2/1/orderBook/life_usdt
  1134. https://data.gateapi.io/api2/1/orderBook/life_eth
  1135. https://data.gateapi.io/api2/1/orderBook/nfty_usdt
  1136. https://data.gateapi.io/api2/1/orderBook/nfty_eth
  1137. https://data.gateapi.io/api2/1/orderBook/adapad_usdt
  1138. https://data.gateapi.io/api2/1/orderBook/phm_usdt
  1139. https://data.gateapi.io/api2/1/orderBook/yin_usdt
  1140. https://data.gateapi.io/api2/1/orderBook/yin_eth
  1141. https://data.gateapi.io/api2/1/orderBook/bcmc_usdt
  1142. https://data.gateapi.io/api2/1/orderBook/sclp_usdt
  1143. https://data.gateapi.io/api2/1/orderBook/sclp_eth
  1144. https://data.gateapi.io/api2/1/orderBook/vera_usdt
  1145. https://data.gateapi.io/api2/1/orderBook/vera_eth
  1146. https://data.gateapi.io/api2/1/orderBook/floki_usdt
  1147. https://data.gateapi.io/api2/1/orderBook/floki_eth
  1148. https://data.gateapi.io/api2/1/orderBook/floki_btc
  1149. https://data.gateapi.io/api2/1/orderBook/dvi_usdt
  1150. https://data.gateapi.io/api2/1/orderBook/cirus_usdt
  1151. https://data.gateapi.io/api2/1/orderBook/talk_usdt
  1152. https://data.gateapi.io/api2/1/orderBook/dydx_usdt
  1153. https://data.gateapi.io/api2/1/orderBook/dydx_eth
  1154. https://data.gateapi.io/api2/1/orderBook/xyo_usdt
  1155. https://data.gateapi.io/api2/1/orderBook/xyo_eth
  1156. https://data.gateapi.io/api2/1/orderBook/rgt_usdt
  1157. https://data.gateapi.io/api2/1/orderBook/rgt_eth
  1158. https://data.gateapi.io/api2/1/orderBook/sku_usdt
  1159. https://data.gateapi.io/api2/1/orderBook/agld_usdt
  1160. https://data.gateapi.io/api2/1/orderBook/agld_eth
  1161. https://data.gateapi.io/api2/1/orderBook/spo_usdt
  1162. https://data.gateapi.io/api2/1/orderBook/dognft_usdt
  1163. https://data.gateapi.io/api2/1/orderBook/dognft_eth
  1164. https://data.gateapi.io/api2/1/orderBook/pros_usdt
  1165. https://data.gateapi.io/api2/1/orderBook/pros_eth
  1166. https://data.gateapi.io/api2/1/orderBook/sov_usdt
  1167. https://data.gateapi.io/api2/1/orderBook/sov_btc
  1168. https://data.gateapi.io/api2/1/orderBook/spell_usdt
  1169. https://data.gateapi.io/api2/1/orderBook/spell_eth
  1170. https://data.gateapi.io/api2/1/orderBook/urus_usdt
  1171. https://data.gateapi.io/api2/1/orderBook/urus_eth
  1172. https://data.gateapi.io/api2/1/orderBook/brkl_usdt
  1173. https://data.gateapi.io/api2/1/orderBook/cfg_usdt
  1174. https://data.gateapi.io/api2/1/orderBook/cfg_btc
  1175. https://data.gateapi.io/api2/1/orderBook/fx_usdt
  1176. https://data.gateapi.io/api2/1/orderBook/fx_eth
  1177. https://data.gateapi.io/api2/1/orderBook/tbtc_usdt
  1178. https://data.gateapi.io/api2/1/orderBook/tbtc_eth
  1179. https://data.gateapi.io/api2/1/orderBook/stos_usdt
  1180. https://data.gateapi.io/api2/1/orderBook/stos_eth
  1181. https://data.gateapi.io/api2/1/orderBook/ssv_usdt
  1182. https://data.gateapi.io/api2/1/orderBook/ssv_eth
  1183. https://data.gateapi.io/api2/1/orderBook/ssv_btc
  1184. https://data.gateapi.io/api2/1/orderBook/asm_usdt
  1185. https://data.gateapi.io/api2/1/orderBook/asm_eth
  1186. https://data.gateapi.io/api2/1/orderBook/des_usdt
  1187. https://data.gateapi.io/api2/1/orderBook/visr_usdt