A. Spot Exchanges
The /tickers endpoint provides 24-hour pricing and volume information on each market pair available on an exchange.
Sample request URL-
Response-
[]
The /historical_trades/ticker_id is used to return data on historical completed trades for a given market pair.
Sample request URL-
Response-
{ "buy": [], "sell": [] }
The /orderbook/ticker_id endpoint is to provide order book information with at least depth = 100 (50 each side) returned for a given market pair/ticker.
Sample request URL-
Response-
{ "ticker_id": "BTC_USD", "timestamp": "1757340232747", "bids": [ [ "111998.665322", "0.24" ], [ "111998.339551", "0.27" ], [ "111998.16824", "0.2" ], [ "111948.841856", "0.2" ], [ "111948.604564", "0.158" ], [ "111948.405571", "0.235" ], [ "111948.172816", "0.2095" ], [ "111928.071451", "0.159" ], [ "111898.275423", "0.2" ], [ "111898.098903", "0.27" ] ], "asks": [ [ "112011.170727", "0.2" ], [ "112011.354063", "0.16965" ], [ "112011.397355", "0.204" ], [ "112011.681952", "0.2" ], [ "112011.846595", "0.22" ], [ "112012.207029", "0.2108" ], [ "112041.700592", "0.2361" ], [ "112041.768406", "0.25531" ], [ "112111.151333", "0.2" ], [ "112111.383652", "0.181" ] ] }
B. Derivative Exchanges
The /contracts endpoint provides a summary of all contracts traded on the exchange. There should be a clear distinction between the type of contracts such as perpetual, futures, options, etc. See below for specifications of data required for the /contracts endpoint:
Sample request URL-
Response-
[ { "ticker_id": "XRPUSDT_PERP", "base_currency": "USDT", "quote_currency": "XRP", "last_price": 2.9758349, "base_volume": 1199011.42, "usd_volume": 1199011.42, "quote_volume": 1199011.42, "bid": 2.97874755, "ask": 2.97895607, "high": 2.98755047, "low": 2.97145137, "product_type": "Perpetual", "open_interest": 1199011.42, "open_interest_usd": 1199011.42, "index_price": 2.98026316, "creation_timestamp": 0, "expiry_timestamp": 0, "funding_rate": 2.9758349, "next_funding_rate": 2.9758349, "next_funding_rate_timestamp": 1757340232857, "maker_fee": 0.2, "taker_fee": 0.2, "contract_type": "Vanilla", "contract_price": 2.9758349, "contract_price_currency": "USDT" }, { "ticker_id": "ETHUSD_PERP", "base_currency": "USD", "quote_currency": "ETH", "last_price": 4322.66056995, "base_volume": 669195.56, "usd_volume": 669195.56, "quote_volume": 669195.56, "bid": 4318.62423309, "ask": 4318.78574077, "high": 4352.02195552, "low": 4316.75506201, "product_type": "Perpetual", "open_interest": 669195.56, "open_interest_usd": 669195.56, "index_price": 4319.82066598, "creation_timestamp": 0, "expiry_timestamp": 0, "funding_rate": 4322.66056995, "next_funding_rate": 4322.66056995, "next_funding_rate_timestamp": 1757340232857, "maker_fee": 0.2, "taker_fee": 0.2, "contract_type": "Vanilla", "contract_price": 4322.66056995, "contract_price_currency": "USD" }, { "ticker_id": "ETHUSD_251226", "base_currency": "USD", "quote_currency": "ETH", "last_price": 4391.30405772, "base_volume": 2642720.65, "usd_volume": 2642720.65, "quote_volume": 2642720.65, "bid": 4386.4764037, "ask": 4401.52880021, "high": 4391.30405772, "low": 4389.05880681, "product_type": "Futures", "open_interest": 2642720.65, "open_interest_usd": 2642720.65, "index_price": 4318.45612859, "creation_timestamp": 1751070232, "expiry_timestamp": 1766793600, "funding_rate": 4391.30405772, "next_funding_rate": 4391.30405772, "next_funding_rate_timestamp": 1757340232857, "maker_fee": 0.2, "taker_fee": 0.2, "contract_type": "Vanilla", "contract_price": 4391.30405772, "contract_price_currency": "USD" }, { "ticker_id": "LTCUSD_250926", "base_currency": "USD", "quote_currency": "LTC", "last_price": 112.97115183, "base_volume": 101004.94, "usd_volume": 101004.94, "quote_volume": 101004.94, "bid": 113.22852416, "ask": 113.4611887, "high": 112.97115183, "low": 112.97113224, "product_type": "Futures", "open_interest": 101004.94, "open_interest_usd": 101004.94, "index_price": 113.0403662, "creation_timestamp": 1743208278, "expiry_timestamp": 1758931200, "funding_rate": 112.97115183, "next_funding_rate": 112.97115183, "next_funding_rate_timestamp": 1757340232857, "maker_fee": 0.2, "taker_fee": 0.2, "contract_type": "Vanilla", "contract_price": 112.97115183, "contract_price_currency": "USD" }, { "ticker_id": "XRPUSD_250926", "base_currency": "USD", "quote_currency": "XRP", "last_price": 2.98665862, "base_volume": 2275846.99, "usd_volume": 2275846.99, "quote_volume": 2275846.99, "bid": 2.99037003, "ask": 2.99143877, "high": 2.9983662, "low": 2.98074197, "product_type": "Futures", "open_interest": 2275846.99, "open_interest_usd": 2275846.99, "index_price": 2.98062292, "creation_timestamp": 1743208278, "expiry_timestamp": 1758931200, "funding_rate": 2.98665862, "next_funding_rate": 2.98665862, "next_funding_rate_timestamp": 1757340232857, "maker_fee": 0.2, "taker_fee": 0.2, "contract_type": "Vanilla", "contract_price": 2.98665862, "contract_price_currency": "USD" }, { "ticker_id": "LTCUSDT_PERP", "base_currency": "USDT", "quote_currency": "LTC", "last_price": 112.90852724, "base_volume": 1218683.05, "usd_volume": 1218683.05, "quote_volume": 1218683.05, "bid": 113.0581105, "ask": 113.07114283, "high": 113.63875721, "low": 112.90828246, "product_type": "Perpetual", "open_interest": 1218683.05, "open_interest_usd": 1218683.05, "index_price": 113.08882353, "creation_timestamp": 0, "expiry_timestamp": 0, "funding_rate": 112.90852724, "next_funding_rate": 112.90852724, "next_funding_rate_timestamp": 1757340232857, "maker_fee": 0.2, "taker_fee": 0.2, "contract_type": "Vanilla", "contract_price": 112.90852724, "contract_price_currency": "USDT" }, { "ticker_id": "BTCUSDT_PERP", "base_currency": "USDT", "quote_currency": "BTC", "last_price": 111873.25215458, "base_volume": 3418499.62, "usd_volume": 3418499.62, "quote_volume": 3418499.62, "bid": 111856.27185426, "ask": 111913.42572929, "high": 112308.13184725, "low": 111873.08424896, "product_type": "Perpetual", "open_interest": 3418499.62, "open_interest_usd": 3418499.62, "index_price": 111948.82978261, "creation_timestamp": 0, "expiry_timestamp": 0, "funding_rate": 111873.25215458, "next_funding_rate": 111873.25215458, "next_funding_rate_timestamp": 1757340232857, "maker_fee": 0.2, "taker_fee": 0.2, "contract_type": "Vanilla", "contract_price": 111873.25215458, "contract_price_currency": "USDT" }, { "ticker_id": "BCHUSD_PERP", "base_currency": "USD", "quote_currency": "BCH", "last_price": 592.42028938, "base_volume": 1974032.96, "usd_volume": 1974032.96, "quote_volume": 1974032.96, "bid": 591.91041507, "ask": 592.48139517, "high": 596.25995267, "low": 591.72632533, "product_type": "Perpetual", "open_interest": 1974032.96, "open_interest_usd": 1974032.96, "index_price": 592.24483062, "creation_timestamp": 0, "expiry_timestamp": 0, "funding_rate": 592.42028938, "next_funding_rate": 592.42028938, "next_funding_rate_timestamp": 1757340232857, "maker_fee": 0.2, "taker_fee": 0.2, "contract_type": "Vanilla", "contract_price": 592.42028938, "contract_price_currency": "USD" }, { "ticker_id": "XRPUSD_251226", "base_currency": "USD", "quote_currency": "XRP", "last_price": 2.94453778, "base_volume": 5223664.7, "usd_volume": 5223664.7, "quote_volume": 5223664.7, "bid": 2.92854304, "ask": 3.03175012, "high": 2.94453778, "low": 2.94143339, "product_type": "Futures", "open_interest": 5223664.7, "open_interest_usd": 5223664.7, "index_price": 2.97776737, "creation_timestamp": 1751070232, "expiry_timestamp": 1766793600, "funding_rate": 2.94453778, "next_funding_rate": 2.94453778, "next_funding_rate_timestamp": 1757340232857, "maker_fee": 0.2, "taker_fee": 0.2, "contract_type": "Vanilla", "contract_price": 2.94453778, "contract_price_currency": "USD" }, { "ticker_id": "LINKUSD_250926", "base_currency": "USD", "quote_currency": "LINK", "last_price": 23.09275853, "base_volume": 60054.71, "usd_volume": 60054.71, "quote_volume": 60054.71, "bid": 23.03576408, "ask": 23.10927034, "high": 23.36076565, "low": 23.09275853, "product_type": "Futures", "open_interest": 60054.71, "open_interest_usd": 60054.71, "index_price": 22.95065099, "creation_timestamp": 1743208278, "expiry_timestamp": 1758931200, "funding_rate": 23.09275853, "next_funding_rate": 23.09275853, "next_funding_rate_timestamp": 1757340232857, "maker_fee": 0.2, "taker_fee": 0.2, "contract_type": "Vanilla", "contract_price": 23.09275853, "contract_price_currency": "USD" }, { "ticker_id": "BTCUSD_251226", "base_currency": "USD", "quote_currency": "BTC", "last_price": 113607.89193637, "base_volume": 6621025.82, "usd_volume": 6621025.82, "quote_volume": 6621025.82, "bid": 113439.20382472, "ask": 114303.09658559, "high": 113607.89193637, "low": 113582.45895423, "product_type": "Futures", "open_interest": 6621025.82, "open_interest_usd": 6621025.82, "index_price": 111992.12470381, "creation_timestamp": 1751070232, "expiry_timestamp": 1766793600, "funding_rate": 113607.89193637, "next_funding_rate": 113607.89193637, "next_funding_rate_timestamp": 1757340232858, "maker_fee": 0.2, "taker_fee": 0.2, "contract_type": "Vanilla", "contract_price": 113607.89193637, "contract_price_currency": "USD" }, { "ticker_id": "BTCUSD_250926", "base_currency": "USD", "quote_currency": "BTC", "last_price": 112255.53166709, "base_volume": 5495188.29, "usd_volume": 5495188.29, "quote_volume": 5495188.29, "bid": 112329.51376091, "ask": 112333.37328245, "high": 112702.01006741, "low": 112255.24405022, "product_type": "Futures", "open_interest": 5495188.29, "open_interest_usd": 5495188.29, "index_price": 111962.48635228, "creation_timestamp": 1743208278, "expiry_timestamp": 1758931200, "funding_rate": 112255.53166709, "next_funding_rate": 112255.53166709, "next_funding_rate_timestamp": 1757340232858, "maker_fee": 0.2, "taker_fee": 0.2, "contract_type": "Vanilla", "contract_price": 112255.53166709, "contract_price_currency": "USD" }, { "ticker_id": "ETHUSDT_PERP", "base_currency": "USDT", "quote_currency": "ETH", "last_price": 4317.1904776, "base_volume": 1337579.43, "usd_volume": 1337579.43, "quote_volume": 1337579.43, "bid": 4320.53131638, "ask": 4322.26232265, "high": 4350.13464564, "low": 4317.18036917, "product_type": "Perpetual", "open_interest": 1337579.43, "open_interest_usd": 1337579.43, "index_price": 4322.07139535, "creation_timestamp": 0, "expiry_timestamp": 0, "funding_rate": 4317.1904776, "next_funding_rate": 4317.1904776, "next_funding_rate_timestamp": 1757340232858, "maker_fee": 0.2, "taker_fee": 0.2, "contract_type": "Vanilla", "contract_price": 4317.1904776, "contract_price_currency": "USDT" }, { "ticker_id": "BCHUSD_250926", "base_currency": "USD", "quote_currency": "BCH", "last_price": 592.25890531, "base_volume": 494345.98, "usd_volume": 494345.98, "quote_volume": 494345.98, "bid": 592.19292692, "ask": 593.46696826, "high": 596.10718749, "low": 592.25890531, "product_type": "Futures", "open_interest": 494345.98, "open_interest_usd": 494345.98, "index_price": 592.53774539, "creation_timestamp": 1743208278, "expiry_timestamp": 1758931200, "funding_rate": 592.25890531, "next_funding_rate": 592.25890531, "next_funding_rate_timestamp": 1757340232858, "maker_fee": 0.2, "taker_fee": 0.2, "contract_type": "Vanilla", "contract_price": 592.25890531, "contract_price_currency": "USD" }, { "ticker_id": "ADAUSD_PERP", "base_currency": "USD", "quote_currency": "ADA", "last_price": 0.85678418, "base_volume": 1063938.76, "usd_volume": 1063938.76, "quote_volume": 1063938.76, "bid": 0.85578683, "ask": 0.85591002, "high": 0.86178359, "low": 0.85591563, "product_type": "Perpetual", "open_interest": 1063938.76, "open_interest_usd": 1063938.76, "index_price": 0.85616554, "creation_timestamp": 0, "expiry_timestamp": 0, "funding_rate": 0.85678418, "next_funding_rate": 0.85678418, "next_funding_rate_timestamp": 1757340232858, "maker_fee": 0.2, "taker_fee": 0.2, "contract_type": "Vanilla", "contract_price": 0.85678418, "contract_price_currency": "USD" }, { "ticker_id": "XRPUSD_PERP", "base_currency": "USD", "quote_currency": "XRP", "last_price": 2.97734137, "base_volume": 1156692.7, "usd_volume": 1156692.7, "quote_volume": 1156692.7, "bid": 2.97506361, "ask": 2.97923335, "high": 2.98575163, "low": 2.96294784, "product_type": "Perpetual", "open_interest": 1156692.7, "open_interest_usd": 1156692.7, "index_price": 2.9798751, "creation_timestamp": 0, "expiry_timestamp": 0, "funding_rate": 2.97734137, "next_funding_rate": 2.97734137, "next_funding_rate_timestamp": 1757340232858, "maker_fee": 0.2, "taker_fee": 0.2, "contract_type": "Vanilla", "contract_price": 2.97734137, "contract_price_currency": "USD" }, { "ticker_id": "LINKUSDT_PERP", "base_currency": "USDT", "quote_currency": "LINK", "last_price": 22.92670624, "base_volume": 226416.04, "usd_volume": 226416.04, "quote_volume": 226416.04, "bid": 22.96970739, "ask": 22.97138817, "high": 23.24471672, "low": 22.92664578, "product_type": "Perpetual", "open_interest": 226416.04, "open_interest_usd": 226416.04, "index_price": 22.97127714, "creation_timestamp": 0, "expiry_timestamp": 0, "funding_rate": 22.92670624, "next_funding_rate": 22.92670624, "next_funding_rate_timestamp": 1757340232858, "maker_fee": 0.2, "taker_fee": 0.2, "contract_type": "Vanilla", "contract_price": 22.92670624, "contract_price_currency": "USDT" }, { "ticker_id": "ADAUSDT_PERP", "base_currency": "USDT", "quote_currency": "ADA", "last_price": 0.85681447, "base_volume": 1009050.95, "usd_volume": 1009050.95, "quote_volume": 1009050.95, "bid": 0.85508834, "ask": 0.85741396, "high": 0.86248288, "low": 0.85598938, "product_type": "Perpetual", "open_interest": 1009050.95, "open_interest_usd": 1009050.95, "index_price": 0.85761976, "creation_timestamp": 0, "expiry_timestamp": 0, "funding_rate": 0.85681447, "next_funding_rate": 0.85681447, "next_funding_rate_timestamp": 1757340232858, "maker_fee": 0.2, "taker_fee": 0.2, "contract_type": "Vanilla", "contract_price": 0.85681447, "contract_price_currency": "USDT" }, { "ticker_id": "LTCUSD_PERP", "base_currency": "USD", "quote_currency": "LTC", "last_price": 112.97834065, "base_volume": 818573.27, "usd_volume": 818573.27, "quote_volume": 818573.27, "bid": 112.98854573, "ask": 113.00136655, "high": 113.66866553, "low": 112.97814138, "product_type": "Perpetual", "open_interest": 818573.27, "open_interest_usd": 818573.27, "index_price": 113.02239855, "creation_timestamp": 0, "expiry_timestamp": 0, "funding_rate": 112.97834065, "next_funding_rate": 112.97834065, "next_funding_rate_timestamp": 1757340232858, "maker_fee": 0.2, "taker_fee": 0.2, "contract_type": "Vanilla", "contract_price": 112.97834065, "contract_price_currency": "USD" }, { "ticker_id": "ADAUSD_250926", "base_currency": "USD", "quote_currency": "ADA", "last_price": 0.86298618, "base_volume": 164501.76, "usd_volume": 164501.76, "quote_volume": 164501.76, "bid": 0.85908821, "ask": 0.861011, "high": 0.86321721, "low": 0.86298403, "product_type": "Futures", "open_interest": 164501.76, "open_interest_usd": 164501.76, "index_price": 0.85674696, "creation_timestamp": 1743208278, "expiry_timestamp": 1758931200, "funding_rate": 0.86298618, "next_funding_rate": 0.86298618, "next_funding_rate_timestamp": 1757340232858, "maker_fee": 0.2, "taker_fee": 0.2, "contract_type": "Vanilla", "contract_price": 0.86298618, "contract_price_currency": "USD" }, { "ticker_id": "BCHUSDT_PERP", "base_currency": "USDT", "quote_currency": "BCH", "last_price": 591.99266598, "base_volume": 1462809.75, "usd_volume": 1462809.75, "quote_volume": 1462809.75, "bid": 591.95994956, "ask": 593.17889151, "high": 596.25882852, "low": 591.57938357, "product_type": "Perpetual", "open_interest": 1462809.75, "open_interest_usd": 1462809.75, "index_price": 593.25451613, "creation_timestamp": 0, "expiry_timestamp": 0, "funding_rate": 591.99266598, "next_funding_rate": 591.99266598, "next_funding_rate_timestamp": 1757340232859, "maker_fee": 0.2, "taker_fee": 0.2, "contract_type": "Vanilla", "contract_price": 591.99266598, "contract_price_currency": "USDT" }, { "ticker_id": "ETHUSD_250926", "base_currency": "USD", "quote_currency": "ETH", "last_price": 4337.07539347, "base_volume": 883393.07, "usd_volume": 883393.07, "quote_volume": 883393.07, "bid": 4334.1107354, "ask": 4334.42087649, "high": 4367.33037054, "low": 4332.31676198, "product_type": "Futures", "open_interest": 883393.07, "open_interest_usd": 883393.07, "index_price": 4320.89824991, "creation_timestamp": 1743208278, "expiry_timestamp": 1758931200, "funding_rate": 4337.07539347, "next_funding_rate": 4337.07539347, "next_funding_rate_timestamp": 1757340232859, "maker_fee": 0.2, "taker_fee": 0.2, "contract_type": "Vanilla", "contract_price": 4337.07539347, "contract_price_currency": "USD" }, { "ticker_id": "LINKUSD_PERP", "base_currency": "USD", "quote_currency": "LINK", "last_price": 22.94075194, "base_volume": 284423.15, "usd_volume": 284423.15, "quote_volume": 284423.15, "bid": 22.90374353, "ask": 22.94525646, "high": 23.23776692, "low": 22.94075194, "product_type": "Perpetual", "open_interest": 284423.15, "open_interest_usd": 284423.15, "index_price": 22.9434298, "creation_timestamp": 0, "expiry_timestamp": 0, "funding_rate": 22.94075194, "next_funding_rate": 22.94075194, "next_funding_rate_timestamp": 1757340232859, "maker_fee": 0.2, "taker_fee": 0.2, "contract_type": "Vanilla", "contract_price": 22.94075194, "contract_price_currency": "USD" }, { "ticker_id": "BTCUSD_PERP", "base_currency": "USD", "quote_currency": "BTC", "last_price": 111820.67942916, "base_volume": 54120705.84, "usd_volume": 54120705.84, "quote_volume": 54120705.84, "bid": 111894.02690937, "ask": 111897.29795331, "high": 112274.66329707, "low": 110021.48414945, "product_type": "Perpetual", "open_interest": 54120705.84, "open_interest_usd": 54120705.84, "index_price": 111952.54354376, "creation_timestamp": 0, "expiry_timestamp": 0, "funding_rate": 111820.67942916, "next_funding_rate": 111820.67942916, "next_funding_rate_timestamp": 1757340232859, "maker_fee": 0.2, "taker_fee": 0.2, "contract_type": "Vanilla", "contract_price": 111820.67942916, "contract_price_currency": "USD" } ]
The /orderbook/ticker_id endpoint is to provide order book information with at least depth = 100 (50 each side) returned for a given market pair/ticker. See below for specifications of data required for the /orderbook endpoint:
Sample request URL-
Response-
{ "bids": [ [ "22.96970739", "66.9" ], [ "22.89471499", "75.3" ], [ "22.89464744", "0.5" ], [ "22.87657529", "62.7" ], [ "22.87655854", "276.9" ], [ "22.86071121", "44.6" ], [ "22.86071025", "28.4" ], [ "22.86063584", "135.2" ], [ "22.86056217", "165.9" ], [ "22.83476046", "35.9" ], [ "22.83469226", "203.5" ], [ "22.83463916", "291" ], [ "22.83460538", "110.8" ], [ "22.78570477", "306" ], [ "22.77959027", "76.9" ], [ "22.77958895", "98.2" ], [ "22.75776965", "74" ], [ "22.75771903", "7.7" ], [ "22.72873685", "304.4" ], [ "22.72866583", "107" ], [ "22.72858985", "170.6" ], [ "22.50559569", "17.7" ], [ "22.4975971", "260.7" ], [ "22.49756371", "49.6" ], [ "22.49368579", "124.4" ], [ "22.49367003", "29.3" ], [ "22.46973665", "149.4" ], [ "22.43274681", "285.9" ], [ "22.43266548", "143.3" ], [ "22.43261213", "10" ], [ "22.37371382", "14.5" ], [ "22.37365237", "60.7" ], [ "22.34067407", "102.6" ], [ "22.34064692", "83" ], [ "22.34058926", "131.4" ], [ "22.3355975", "254.3" ], [ "22.33556547", "97.5" ], [ "22.33061109", "305.4" ], [ "22.28365421", "147.6" ], [ "22.28357576", "107" ], [ "22.28355678", "38.2" ], [ "22.26073906", "169.8" ], [ "22.26065627", "247" ], [ "22.26061703", "263.5" ], [ "22.25268367", "106.4" ], [ "22.25268059", "246.7" ], [ "22.25258715", "146.2" ], [ "22.2477057", "95.7" ], [ "22.24765377", "1.2" ], [ "22.24758568", "228.5" ], [ "22.23561481", "83.7" ], [ "22.23066229", "162.7" ], [ "22.23062587", "114.4" ], [ "22.21862976", "228.7" ], [ "22.213775", "153.1" ], [ "22.21361986", "97.6" ], [ "22.21356759", "122.1" ], [ "22.21262469", "6.2" ], [ "22.21169021", "51.5" ], [ "22.20471615", "273" ], [ "22.20460316", "57.4" ], [ "22.19764146", "296.4" ], [ "22.19757487", "285.8" ], [ "22.19371214", "214.6" ], [ "22.19368494", "266.9" ], [ "22.1936805", "27.4" ], [ "22.17174144", "257.3" ], [ "22.17158094", "27.1" ], [ "22.16362237", "29.5" ], [ "22.16361301", "62.4" ], [ "22.14558099", "16.6" ], [ "22.13972697", "209" ], [ "22.13964344", "189.6" ], [ "22.13960881", "286.8" ], [ "22.13959056", "286.4" ], [ "22.13766914", "2.9" ], [ "22.13764955", "272.3" ], [ "22.13758591", "114.7" ], [ "22.12769387", "67.3" ], [ "22.12768226", "265.5" ], [ "22.12763234", "187.3" ], [ "22.11168237", "58.4" ] ], "asks": [ [ "22.97128881", "212.3" ], [ "22.97138817", "13.6" ], [ "23.04526389", "81.5" ], [ "23.05425558", "141.3" ], [ "23.05428451", "144.2" ], [ "23.05436961", "69" ], [ "23.05444904", "15.2" ], [ "23.06829441", "215.5" ], [ "23.06831919", "0.9" ], [ "23.20839248", "213.3" ], [ "23.24643503", "111.9" ], [ "23.25327902", "301.2" ], [ "23.25344211", "91.1" ] ], "timestamp": "1757340232", "ticker_id": "LINKUSDT_PERP" }