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": "1766313006696",
"bids": [
[
"88843.487469",
"0.2088"
],
[
"88841.978775",
"0.14"
],
[
"88841.863334",
"0.19"
],
[
"88841.796342",
"0.264"
],
[
"88840.874729",
"0.1599"
],
[
"88840.51912",
"0.24394"
],
[
"88839.636271",
"0.186"
],
[
"88818.660502",
"0.1433"
],
[
"88807.397883",
"0.19"
],
[
"88807.36186",
"0.13842"
]
],
"asks": [
[
"88851.099458",
"0.2055"
],
[
"88851.212968",
"0.213"
],
[
"88851.387636",
"0.199"
],
[
"88851.398127",
"0.23"
],
[
"88851.937355",
"0.2"
],
[
"88852.027563",
"0.168"
],
[
"88852.042036",
"0.216"
],
[
"88852.123068",
"0.17"
],
[
"88852.173414",
"0.2384"
],
[
"88852.262236",
"0.207"
]
]
}
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": "LTCUSD_PERP",
"base_currency": "USD",
"quote_currency": "LTC",
"last_price": 77.31127624,
"base_volume": 1437491.86,
"usd_volume": 1437491.86,
"quote_volume": 1437491.86,
"bid": 77.00899995,
"ask": 77.49116174,
"high": 77.31127624,
"low": 77.17121973,
"product_type": "Perpetual",
"open_interest": 1437491.86,
"open_interest_usd": 1437491.86,
"index_price": 77.53951877,
"creation_timestamp": 0,
"expiry_timestamp": 0,
"funding_rate": 77.31127624,
"next_funding_rate": 77.31127624,
"next_funding_rate_timestamp": 1766313006816,
"maker_fee": 0.2,
"taker_fee": 0.2,
"contract_type": "Vanilla",
"contract_price": 77.31127624,
"contract_price_currency": "USD"
},
{
"ticker_id": "BTCUSDT_PERP",
"base_currency": "USDT",
"quote_currency": "BTC",
"last_price": 88267.27977694,
"base_volume": 4984476.32,
"usd_volume": 4984476.32,
"quote_volume": 4984476.32,
"bid": 88048.39336506,
"ask": 88723.36263466,
"high": 88267.27977694,
"low": 88149.77834116,
"product_type": "Perpetual",
"open_interest": 4984476.32,
"open_interest_usd": 4984476.32,
"index_price": 88750.78913043,
"creation_timestamp": 0,
"expiry_timestamp": 0,
"funding_rate": 88267.27977694,
"next_funding_rate": 88267.27977694,
"next_funding_rate_timestamp": 1766313006816,
"maker_fee": 0.2,
"taker_fee": 0.2,
"contract_type": "Vanilla",
"contract_price": 88267.27977694,
"contract_price_currency": "USDT"
},
{
"ticker_id": "ADAUSDT_PERP",
"base_currency": "USDT",
"quote_currency": "ADA",
"last_price": 0.37239526,
"base_volume": 621764.43,
"usd_volume": 621764.43,
"quote_volume": 621764.43,
"bid": 0.37179411,
"ask": 0.37250421,
"high": 0.37310439,
"low": 0.37150421,
"product_type": "Perpetual",
"open_interest": 621764.43,
"open_interest_usd": 621764.43,
"index_price": 0.3720443,
"creation_timestamp": 0,
"expiry_timestamp": 0,
"funding_rate": 0.37239526,
"next_funding_rate": 0.37239526,
"next_funding_rate_timestamp": 1766313006816,
"maker_fee": 0.2,
"taker_fee": 0.2,
"contract_type": "Vanilla",
"contract_price": 0.37239526,
"contract_price_currency": "USDT"
},
{
"ticker_id": "XRPUSD_PERP",
"base_currency": "USD",
"quote_currency": "XRP",
"last_price": 1.93282898,
"base_volume": 1238820.73,
"usd_volume": 1238820.73,
"quote_volume": 1238820.73,
"bid": 1.92228001,
"ask": 1.93562465,
"high": 1.93282898,
"low": 1.93142974,
"product_type": "Perpetual",
"open_interest": 1238820.73,
"open_interest_usd": 1238820.73,
"index_price": 1.93619687,
"creation_timestamp": 0,
"expiry_timestamp": 0,
"funding_rate": 1.93282898,
"next_funding_rate": 1.93282898,
"next_funding_rate_timestamp": 1766313006816,
"maker_fee": 0.2,
"taker_fee": 0.2,
"contract_type": "Vanilla",
"contract_price": 1.93282898,
"contract_price_currency": "USD"
},
{
"ticker_id": "BTCUSD_PERP",
"base_currency": "USD",
"quote_currency": "BTC",
"last_price": 88232.01837663,
"base_volume": 2285915.93,
"usd_volume": 2285915.93,
"quote_volume": 2285915.93,
"bid": 88014.63661154,
"ask": 88685.5093371,
"high": 88232.01837663,
"low": 88117.66115844,
"product_type": "Perpetual",
"open_interest": 2285915.93,
"open_interest_usd": 2285915.93,
"index_price": 88722.54857651,
"creation_timestamp": 0,
"expiry_timestamp": 0,
"funding_rate": 88232.01837663,
"next_funding_rate": 88232.01837663,
"next_funding_rate_timestamp": 1766313006816,
"maker_fee": 0.2,
"taker_fee": 0.2,
"contract_type": "Vanilla",
"contract_price": 88232.01837663,
"contract_price_currency": "USD"
},
{
"ticker_id": "ETHUSD_251226",
"base_currency": "USD",
"quote_currency": "ETH",
"last_price": 2982.95209296,
"base_volume": 1773328,
"usd_volume": 1773328,
"quote_volume": 1773328,
"bid": 2976.99125738,
"ask": 3002.86277632,
"high": 2982.95209296,
"low": 2981.37318837,
"product_type": "Futures",
"open_interest": 1773328,
"open_interest_usd": 1773328,
"index_price": 3000.83106136,
"creation_timestamp": 1751070232,
"expiry_timestamp": 1766793600,
"funding_rate": 2982.95209296,
"next_funding_rate": 2982.95209296,
"next_funding_rate_timestamp": 1766313006816,
"maker_fee": 0.2,
"taker_fee": 0.2,
"contract_type": "Vanilla",
"contract_price": 2982.95209296,
"contract_price_currency": "USD"
},
{
"ticker_id": "ETHUSD_PERP",
"base_currency": "USD",
"quote_currency": "ETH",
"last_price": 2978.44461814,
"base_volume": 670812.97,
"usd_volume": 670812.97,
"quote_volume": 670812.97,
"bid": 2973.7094624,
"ask": 2999.59970145,
"high": 2978.44461814,
"low": 2977.05959682,
"product_type": "Perpetual",
"open_interest": 670812.97,
"open_interest_usd": 670812.97,
"index_price": 3000.57951904,
"creation_timestamp": 0,
"expiry_timestamp": 0,
"funding_rate": 2978.44461814,
"next_funding_rate": 2978.44461814,
"next_funding_rate_timestamp": 1766313006816,
"maker_fee": 0.2,
"taker_fee": 0.2,
"contract_type": "Vanilla",
"contract_price": 2978.44461814,
"contract_price_currency": "USD"
},
{
"ticker_id": "BTCUSD_251226",
"base_currency": "USD",
"quote_currency": "BTC",
"last_price": 88393.85121019,
"base_volume": 5109072.47,
"usd_volume": 5109072.47,
"quote_volume": 5109072.47,
"bid": 88241.88175161,
"ask": 88864.12777529,
"high": 88393.85121019,
"low": 88290.70865333,
"product_type": "Futures",
"open_interest": 5109072.47,
"open_interest_usd": 5109072.47,
"index_price": 88720.84865845,
"creation_timestamp": 1751070232,
"expiry_timestamp": 1766793600,
"funding_rate": 88393.85121019,
"next_funding_rate": 88393.85121019,
"next_funding_rate_timestamp": 1766313006816,
"maker_fee": 0.2,
"taker_fee": 0.2,
"contract_type": "Vanilla",
"contract_price": 88393.85121019,
"contract_price_currency": "USD"
},
{
"ticker_id": "XRPUSD_260327",
"base_currency": "USD",
"quote_currency": "XRP",
"last_price": 1.93922289,
"base_volume": 4990807.14,
"usd_volume": 4990807.14,
"quote_volume": 4990807.14,
"bid": 1.93146394,
"ask": 1.9439384,
"high": 1.93922289,
"low": 1.93483556,
"product_type": "Futures",
"open_interest": 4990807.14,
"open_interest_usd": 4990807.14,
"index_price": 1.936226,
"creation_timestamp": 1758931461,
"expiry_timestamp": 1774658416,
"funding_rate": 1.93922289,
"next_funding_rate": 1.93922289,
"next_funding_rate_timestamp": 1766313006816,
"maker_fee": 0.2,
"taker_fee": 0.2,
"contract_type": "Vanilla",
"contract_price": 1.93922289,
"contract_price_currency": "USD"
},
{
"ticker_id": "BCHUSD_PERP",
"base_currency": "USD",
"quote_currency": "BCH",
"last_price": 590.92887308,
"base_volume": 3124144.97,
"usd_volume": 3124144.97,
"quote_volume": 3124144.97,
"bid": 587.22050291,
"ask": 593.90019793,
"high": 591.7601318,
"low": 590.92842338,
"product_type": "Perpetual",
"open_interest": 3124144.97,
"open_interest_usd": 3124144.97,
"index_price": 587.61981651,
"creation_timestamp": 0,
"expiry_timestamp": 0,
"funding_rate": 590.92887308,
"next_funding_rate": 590.92887308,
"next_funding_rate_timestamp": 1766313006816,
"maker_fee": 0.2,
"taker_fee": 0.2,
"contract_type": "Vanilla",
"contract_price": 590.92887308,
"contract_price_currency": "USD"
},
{
"ticker_id": "ETHUSD_260327",
"base_currency": "USD",
"quote_currency": "ETH",
"last_price": 3008.08012756,
"base_volume": 1956934.05,
"usd_volume": 1956934.05,
"quote_volume": 1956934.05,
"bid": 3003.31191967,
"ask": 3030.49101578,
"high": 3008.08012756,
"low": 3007.29408297,
"product_type": "Futures",
"open_interest": 1956934.05,
"open_interest_usd": 1956934.05,
"index_price": 3000.8553946,
"creation_timestamp": 1758931461,
"expiry_timestamp": 1774658416,
"funding_rate": 3008.08012756,
"next_funding_rate": 3008.08012756,
"next_funding_rate_timestamp": 1766313006816,
"maker_fee": 0.2,
"taker_fee": 0.2,
"contract_type": "Vanilla",
"contract_price": 3008.08012756,
"contract_price_currency": "USD"
},
{
"ticker_id": "XRPUSD_251226",
"base_currency": "USD",
"quote_currency": "XRP",
"last_price": 1.9332194,
"base_volume": 3243247.09,
"usd_volume": 3243247.09,
"quote_volume": 3243247.09,
"bid": 1.92467205,
"ask": 1.93712446,
"high": 1.9332194,
"low": 1.93192727,
"product_type": "Futures",
"open_interest": 3243247.09,
"open_interest_usd": 3243247.09,
"index_price": 1.9361351,
"creation_timestamp": 1751070232,
"expiry_timestamp": 1766793600,
"funding_rate": 1.9332194,
"next_funding_rate": 1.9332194,
"next_funding_rate_timestamp": 1766313006816,
"maker_fee": 0.2,
"taker_fee": 0.2,
"contract_type": "Vanilla",
"contract_price": 1.9332194,
"contract_price_currency": "USD"
},
{
"ticker_id": "LTCUSDT_PERP",
"base_currency": "USDT",
"quote_currency": "LTC",
"last_price": 77.390816,
"base_volume": 1392821.19,
"usd_volume": 1392821.19,
"quote_volume": 1392821.19,
"bid": 77.06912853,
"ask": 77.53113355,
"high": 77.390816,
"low": 77.21136732,
"product_type": "Perpetual",
"open_interest": 1392821.19,
"open_interest_usd": 1392821.19,
"index_price": 77.57352941,
"creation_timestamp": 0,
"expiry_timestamp": 0,
"funding_rate": 77.390816,
"next_funding_rate": 77.390816,
"next_funding_rate_timestamp": 1766313006816,
"maker_fee": 0.2,
"taker_fee": 0.2,
"contract_type": "Vanilla",
"contract_price": 77.390816,
"contract_price_currency": "USDT"
},
{
"ticker_id": "XRPUSDT_PERP",
"base_currency": "USDT",
"quote_currency": "XRP",
"last_price": 1.93372934,
"base_volume": 1504768.85,
"usd_volume": 1504768.85,
"quote_volume": 1504768.85,
"bid": 1.92367079,
"ask": 1.93612221,
"high": 1.93372934,
"low": 1.92983618,
"product_type": "Perpetual",
"open_interest": 1504768.85,
"open_interest_usd": 1504768.85,
"index_price": 1.93700552,
"creation_timestamp": 0,
"expiry_timestamp": 0,
"funding_rate": 1.93372934,
"next_funding_rate": 1.93372934,
"next_funding_rate_timestamp": 1766313006816,
"maker_fee": 0.2,
"taker_fee": 0.2,
"contract_type": "Vanilla",
"contract_price": 1.93372934,
"contract_price_currency": "USDT"
},
{
"ticker_id": "BTCUSD_260327",
"base_currency": "USD",
"quote_currency": "BTC",
"last_price": 89314.36977486,
"base_volume": 5066095.75,
"usd_volume": 5066095.75,
"quote_volume": 5066095.75,
"bid": 89059.25274168,
"ask": 89759.92132613,
"high": 89314.36977486,
"low": 89172.31405095,
"product_type": "Futures",
"open_interest": 5066095.75,
"open_interest_usd": 5066095.75,
"index_price": 88719.40070498,
"creation_timestamp": 1758931461,
"expiry_timestamp": 1774658416,
"funding_rate": 89314.36977486,
"next_funding_rate": 89314.36977486,
"next_funding_rate_timestamp": 1766313006816,
"maker_fee": 0.2,
"taker_fee": 0.2,
"contract_type": "Vanilla",
"contract_price": 89314.36977486,
"contract_price_currency": "USD"
},
{
"ticker_id": "LINKUSD_PERP",
"base_currency": "USD",
"quote_currency": "LINK",
"last_price": 12.60522791,
"base_volume": 224221.04,
"usd_volume": 224221.04,
"quote_volume": 224221.04,
"bid": 12.49377903,
"ask": 12.64724979,
"high": 12.60522791,
"low": 12.5822509,
"product_type": "Perpetual",
"open_interest": 224221.04,
"open_interest_usd": 224221.04,
"index_price": 12.6500586,
"creation_timestamp": 0,
"expiry_timestamp": 0,
"funding_rate": 12.60522791,
"next_funding_rate": 12.60522791,
"next_funding_rate_timestamp": 1766313006816,
"maker_fee": 0.2,
"taker_fee": 0.2,
"contract_type": "Vanilla",
"contract_price": 12.60522791,
"contract_price_currency": "USD"
},
{
"ticker_id": "BCHUSDT_PERP",
"base_currency": "USDT",
"quote_currency": "BCH",
"last_price": 590.8619063,
"base_volume": 3764220.06,
"usd_volume": 3764220.06,
"quote_volume": 3764220.06,
"bid": 587.47130478,
"ask": 594.19813638,
"high": 591.74997443,
"low": 590.85926503,
"product_type": "Perpetual",
"open_interest": 3764220.06,
"open_interest_usd": 3764220.06,
"index_price": 588.02691242,
"creation_timestamp": 0,
"expiry_timestamp": 0,
"funding_rate": 590.8619063,
"next_funding_rate": 590.8619063,
"next_funding_rate_timestamp": 1766313006816,
"maker_fee": 0.2,
"taker_fee": 0.2,
"contract_type": "Vanilla",
"contract_price": 590.8619063,
"contract_price_currency": "USDT"
},
{
"ticker_id": "ADAUSD_PERP",
"base_currency": "USD",
"quote_currency": "ADA",
"last_price": 0.37199294,
"base_volume": 723404.1,
"usd_volume": 723404.1,
"quote_volume": 723404.1,
"bid": 0.37169475,
"ask": 0.37180573,
"high": 0.3735043,
"low": 0.37140423,
"product_type": "Perpetual",
"open_interest": 723404.1,
"open_interest_usd": 723404.1,
"index_price": 0.37193253,
"creation_timestamp": 0,
"expiry_timestamp": 0,
"funding_rate": 0.37199294,
"next_funding_rate": 0.37199294,
"next_funding_rate_timestamp": 1766313006816,
"maker_fee": 0.2,
"taker_fee": 0.2,
"contract_type": "Vanilla",
"contract_price": 0.37199294,
"contract_price_currency": "USD"
},
{
"ticker_id": "ETHUSDT_PERP",
"base_currency": "USDT",
"quote_currency": "ETH",
"last_price": 2981.10811919,
"base_volume": 1558632.79,
"usd_volume": 1558632.79,
"quote_volume": 1558632.79,
"bid": 2976.69302372,
"ask": 3000.56587631,
"high": 2981.10811919,
"low": 2979.14875547,
"product_type": "Perpetual",
"open_interest": 1558632.79,
"open_interest_usd": 1558632.79,
"index_price": 3002.22511628,
"creation_timestamp": 0,
"expiry_timestamp": 0,
"funding_rate": 2981.10811919,
"next_funding_rate": 2981.10811919,
"next_funding_rate_timestamp": 1766313006816,
"maker_fee": 0.2,
"taker_fee": 0.2,
"contract_type": "Vanilla",
"contract_price": 2981.10811919,
"contract_price_currency": "USDT"
},
{
"ticker_id": "LINKUSDT_PERP",
"base_currency": "USDT",
"quote_currency": "LINK",
"last_price": 12.60316635,
"base_volume": 190235.52,
"usd_volume": 190235.52,
"quote_volume": 190235.52,
"bid": 12.49886828,
"ask": 12.65123122,
"high": 12.60316635,
"low": 12.56014039,
"product_type": "Perpetual",
"open_interest": 190235.52,
"open_interest_usd": 190235.52,
"index_price": 12.65690236,
"creation_timestamp": 0,
"expiry_timestamp": 0,
"funding_rate": 12.60316635,
"next_funding_rate": 12.60316635,
"next_funding_rate_timestamp": 1766313006816,
"maker_fee": 0.2,
"taker_fee": 0.2,
"contract_type": "Vanilla",
"contract_price": 12.60316635,
"contract_price_currency": "USDT"
}
]
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": [
[
"12.50379677",
"143.3"
],
[
"12.50284971",
"84.6"
],
[
"12.50278191",
"200.8"
],
[
"12.50276626",
"39.9"
],
[
"12.50275952",
"128.8"
],
[
"12.5018154",
"226.5"
],
[
"12.50181075",
"258.3"
],
[
"12.50177032",
"283.2"
],
[
"12.50083757",
"32.9"
],
[
"12.5007918",
"128.8"
],
[
"12.50078995",
"27.6"
],
[
"12.50075177",
"31.1"
],
[
"12.49886828",
"300.6"
],
[
"12.49883073",
"68"
],
[
"12.49882946",
"207.8"
],
[
"12.49878914",
"230"
],
[
"12.49878565",
"116.1"
],
[
"12.49784731",
"244.6"
],
[
"12.49784004",
"219.8"
],
[
"12.49783783",
"4.8"
],
[
"12.49779179",
"136.8"
],
[
"12.49779044",
"240.5"
],
[
"12.4977764",
"14.9"
],
[
"12.49776499",
"61"
],
[
"12.49687261",
"148.9"
],
[
"12.496847",
"42.7"
],
[
"12.49683314",
"172.9"
],
[
"12.49679408",
"77.7"
],
[
"12.49678642",
"121.6"
],
[
"12.49676029",
"121.3"
],
[
"12.49675458",
"192.9"
],
[
"12.49576932",
"23.5"
],
[
"12.4948745",
"19.5"
],
[
"12.49485701",
"138.9"
],
[
"12.49485197",
"222.4"
],
[
"12.49483723",
"42.1"
],
[
"12.49483557",
"42.6"
],
[
"12.49482857",
"256.6"
],
[
"12.49482567",
"186"
],
[
"12.49479337",
"199.6"
],
[
"12.49479103",
"42.3"
],
[
"12.49478874",
"81.8"
],
[
"12.49478432",
"56.3"
],
[
"12.49478336",
"227.8"
],
[
"12.49477238",
"101.6"
],
[
"12.49476688",
"199.8"
],
[
"12.49476382",
"299.8"
],
[
"12.4947621",
"74.2"
],
[
"12.49475974",
"72.1"
],
[
"12.49475921",
"262"
],
[
"12.49475916",
"304"
],
[
"12.49475759",
"246.2"
],
[
"12.49475449",
"124.8"
],
[
"12.49384389",
"41.4"
],
[
"12.49382801",
"201.5"
],
[
"12.49382783",
"85.8"
],
[
"12.49382277",
"291.6"
],
[
"12.49380961",
"88.8"
],
[
"12.49380784",
"169.8"
],
[
"12.49378915",
"301.7"
],
[
"12.49378306",
"266.9"
],
[
"12.49378277",
"210.7"
],
[
"12.49287497",
"176.2"
],
[
"12.49282632",
"164"
],
[
"12.49277285",
"142.9"
],
[
"12.49275748",
"214.4"
],
[
"12.49275361",
"133.1"
],
[
"12.49186964",
"184.9"
],
[
"12.49185558",
"92.8"
],
[
"12.49185052",
"91.5"
],
[
"12.49184064",
"120.3"
],
[
"12.49181664",
"284.2"
],
[
"12.49180753",
"253.4"
],
[
"12.49180187",
"48.6"
],
[
"12.49180078",
"292.9"
],
[
"12.49179017",
"202.1"
],
[
"12.49175745",
"37.3"
],
[
"12.49175669",
"188.2"
],
[
"12.49175569",
"182.7"
],
[
"12.491754",
"166.8"
],
[
"12.49086508",
"108.6"
],
[
"12.49085647",
"161.5"
],
[
"12.49085366",
"199"
],
[
"12.49085152",
"97.6"
],
[
"12.49084037",
"155"
],
[
"12.49083282",
"103.9"
],
[
"12.49083102",
"144.1"
],
[
"12.49082593",
"227.4"
],
[
"12.49082517",
"17.2"
],
[
"12.49080997",
"150.5"
],
[
"12.49080699",
"13"
],
[
"12.49080547",
"95.6"
],
[
"12.49080494",
"263"
],
[
"12.49077544",
"234.1"
],
[
"12.49077395",
"287.3"
],
[
"12.49077306",
"266"
],
[
"12.49076186",
"103.2"
],
[
"12.49075521",
"13.6"
],
[
"12.48987297",
"275.1"
],
[
"12.48985448",
"34.9"
],
[
"12.48984487",
"59.8"
],
[
"12.48983829",
"272.3"
],
[
"12.48982748",
"215.7"
],
[
"12.48982234",
"91.2"
],
[
"12.48982217",
"51"
],
[
"12.48981461",
"62.3"
],
[
"12.48981324",
"82"
],
[
"12.48979754",
"142.3"
],
[
"12.48979157",
"129"
],
[
"12.48978942",
"204.2"
],
[
"12.48976366",
"251.5"
],
[
"12.48975754",
"139.5"
],
[
"12.48885555",
"125.9"
],
[
"12.48885194",
"269.5"
],
[
"12.4888433",
"243.6"
],
[
"12.48881111",
"220.8"
],
[
"12.48880845",
"277.3"
],
[
"12.48878614",
"230.6"
],
[
"12.48877599",
"238.8"
],
[
"12.48877418",
"31.1"
],
[
"12.48877237",
"12.1"
],
[
"12.48876387",
"250.6"
],
[
"12.48875748",
"183.8"
],
[
"12.48786231",
"217.9"
],
[
"12.48785306",
"223.1"
],
[
"12.48783216",
"56.1"
],
[
"12.48782544",
"174.7"
],
[
"12.48780408",
"230"
],
[
"12.48780224",
"243.4"
],
[
"12.48777923",
"65.2"
],
[
"12.48777676",
"36.6"
],
[
"12.48777018",
"288.2"
],
[
"12.48775894",
"188.6"
],
[
"12.48686637",
"135.5"
],
[
"12.48684647",
"217"
],
[
"12.48682922",
"190.4"
],
[
"12.48682813",
"283.5"
],
[
"12.48680921",
"110.9"
],
[
"12.48680828",
"131.9"
],
[
"12.48680607",
"144.1"
],
[
"12.48680193",
"199.7"
],
[
"12.48679464",
"165.5"
],
[
"12.48679346",
"90.4"
],
[
"12.48679173",
"281.2"
],
[
"12.48678202",
"296.9"
],
[
"12.48677432",
"100.3"
],
[
"12.48675041",
"67.4"
],
[
"12.48581323",
"52.2"
],
[
"12.48487333",
"3.9"
],
[
"12.48486711",
"294.1"
],
[
"12.48483106",
"203.5"
],
[
"12.48482879",
"129.7"
],
[
"12.48482694",
"83.5"
],
[
"12.48482354",
"255.2"
],
[
"12.48386417",
"154.7"
],
[
"12.48385749",
"77.4"
],
[
"12.48382414",
"189.3"
],
[
"12.48376107",
"164.8"
],
[
"12.48283616",
"95.2"
],
[
"12.48283606",
"287"
],
[
"12.48278706",
"185.2"
],
[
"12.48275036",
"269.8"
],
[
"12.48186686",
"243.7"
],
[
"12.48185072",
"103.5"
],
[
"12.48184543",
"13.3"
],
[
"12.48180445",
"71.1"
],
[
"12.48178801",
"100.5"
],
[
"12.48178305",
"265.3"
],
[
"12.48175343",
"27.6"
],
[
"12.48175068",
"284.2"
],
[
"12.4808609",
"242.3"
],
[
"12.48085756",
"146.8"
],
[
"12.48083266",
"127.5"
],
[
"12.48082324",
"160.1"
],
[
"12.48081765",
"141.5"
],
[
"12.48081649",
"65.6"
],
[
"12.48078588",
"164.6"
],
[
"12.48075391",
"293.9"
],
[
"12.47986844",
"204.6"
],
[
"12.47986426",
"23"
],
[
"12.47984084",
"36.8"
],
[
"12.47983754",
"253.8"
],
[
"12.47982546",
"215.1"
],
[
"12.47980788",
"191.9"
],
[
"12.4797717",
"109"
],
[
"12.4797642",
"134"
],
[
"12.47976134",
"172.9"
],
[
"12.47975732",
"267.9"
],
[
"12.47886899",
"266.7"
],
[
"12.47886745",
"209"
],
[
"12.47875439",
"151.6"
],
[
"12.47786371",
"63.2"
],
[
"12.47786302",
"281.9"
],
[
"12.47779805",
"89.3"
],
[
"12.47778829",
"181.9"
],
[
"12.47585527",
"162.5"
],
[
"12.47575918",
"126.6"
],
[
"12.47485292",
"76"
],
[
"12.47480854",
"118.8"
],
[
"12.47480143",
"100.7"
],
[
"12.46985315",
"28"
],
[
"12.46979261",
"53.3"
],
[
"12.46586401",
"18"
],
[
"12.4658204",
"72.3"
],
[
"12.46579227",
"52.4"
],
[
"12.46382891",
"226"
],
[
"12.46287065",
"29.1"
],
[
"12.46283353",
"274.2"
],
[
"12.46281443",
"165.7"
],
[
"12.46279011",
"273.4"
],
[
"12.4627867",
"244.1"
],
[
"12.46276081",
"122.5"
],
[
"12.46085802",
"107.8"
],
[
"12.46082518",
"83.7"
],
[
"12.46076855",
"59.7"
],
[
"12.46076628",
"145.7"
],
[
"12.45787484",
"161.7"
],
[
"12.45784571",
"277.4"
],
[
"12.45780253",
"165.5"
],
[
"12.45779503",
"3.6"
],
[
"12.45684622",
"16.5"
],
[
"12.45678999",
"59.8"
],
[
"12.45676446",
"79.1"
],
[
"12.45279187",
"176.7"
],
[
"12.45276135",
"45.1"
],
[
"12.45185096",
"17.4"
],
[
"12.45184438",
"220.6"
],
[
"12.45181237",
"244.3"
],
[
"12.45180543",
"166"
],
[
"12.44981288",
"75.6"
],
[
"12.44976263",
"232.2"
],
[
"12.44782065",
"221.9"
],
[
"12.44775467",
"176"
],
[
"12.44687439",
"286.1"
],
[
"12.44681799",
"230.9"
],
[
"12.44484271",
"191.6"
],
[
"12.44483545",
"100.1"
],
[
"12.44480711",
"119.3"
],
[
"12.44480644",
"41.3"
],
[
"12.44480124",
"117.4"
],
[
"12.43784468",
"167"
],
[
"12.43782477",
"59.2"
],
[
"12.43778684",
"50.1"
],
[
"12.4377596",
"214.6"
],
[
"12.43686005",
"170.1"
],
[
"12.43678309",
"125"
],
[
"12.43678025",
"145.3"
],
[
"12.43077551",
"55.8"
],
[
"12.43076411",
"226.6"
],
[
"12.42282738",
"9.3"
],
[
"12.42281719",
"56.9"
],
[
"12.42276438",
"298.4"
],
[
"12.4227543",
"165.5"
],
[
"12.42086126",
"300.6"
],
[
"12.42082285",
"51.8"
],
[
"12.42081475",
"144.6"
],
[
"12.42081307",
"183.2"
],
[
"12.42080316",
"159.8"
],
[
"12.40785522",
"196.1"
],
[
"12.40784772",
"291.2"
],
[
"12.40778984",
"224.6"
],
[
"12.40776863",
"3.1"
],
[
"12.40776344",
"40.5"
],
[
"12.40587038",
"288.8"
],
[
"12.40584256",
"182.6"
],
[
"12.40582277",
"172.2"
],
[
"12.40183546",
"303.7"
],
[
"12.4018211",
"86.4"
],
[
"12.40181375",
"174.5"
],
[
"12.40180736",
"114.7"
],
[
"12.40176726",
"57.5"
],
[
"12.39683156",
"44.2"
],
[
"12.39682946",
"213.1"
],
[
"12.39677371",
"97.9"
],
[
"12.39281492",
"179.2"
],
[
"12.3927681",
"94.1"
],
[
"12.39276768",
"297.9"
],
[
"12.38977264",
"105"
],
[
"12.38975483",
"207.5"
],
[
"12.38786327",
"263.2"
],
[
"12.38786327",
"16.3"
],
[
"12.38785009",
"42.8"
],
[
"12.38783367",
"59.9"
],
[
"12.38781732",
"297.4"
],
[
"12.38775909",
"237.7"
],
[
"12.38387206",
"82.6"
],
[
"12.38385286",
"113.5"
],
[
"12.38377979",
"134.9"
],
[
"12.38377133",
"1.2"
]
],
"asks": [
[
"12.60316635",
"255.1"
],
[
"12.60418902",
"266.2"
],
[
"12.60714417",
"65.4"
],
[
"12.60721598",
"130.6"
],
[
"12.60722408",
"299.5"
],
[
"12.60722475",
"54.3"
],
[
"12.60723248",
"43.9"
],
[
"12.60723588",
"276.5"
],
[
"12.60816417",
"246.7"
],
[
"12.60821704",
"162.4"
],
[
"12.60822368",
"154.4"
],
[
"12.6091426",
"241.5"
],
[
"12.60918242",
"191.3"
],
[
"12.60919739",
"61.6"
],
[
"12.60920138",
"231.9"
],
[
"12.60923124",
"32.3"
],
[
"12.60924063",
"24"
],
[
"12.61012827",
"46.5"
],
[
"12.61013263",
"51.3"
],
[
"12.61014399",
"126.2"
],
[
"12.61015483",
"72.5"
],
[
"12.61015494",
"192.4"
],
[
"12.61017128",
"81"
],
[
"12.61017839",
"9"
],
[
"12.61019763",
"192.8"
],
[
"12.61021622",
"287.9"
],
[
"12.61022763",
"100"
],
[
"12.61024187",
"266.5"
],
[
"12.61114593",
"48.3"
],
[
"12.61119707",
"301"
],
[
"12.61124352",
"76.3"
],
[
"12.61124825",
"124.9"
],
[
"12.61715286",
"211.7"
],
[
"12.61715933",
"50.6"
],
[
"12.6171717",
"278.5"
],
[
"12.61717358",
"237.9"
],
[
"12.61717882",
"288"
],
[
"12.61719278",
"6.9"
],
[
"12.61721084",
"213.2"
],
[
"12.61723065",
"235.4"
],
[
"12.61723233",
"273.2"
],
[
"12.61724468",
"59"
],
[
"12.61724648",
"133.7"
],
[
"12.61813105",
"294.2"
],
[
"12.6181369",
"198.6"
],
[
"12.61813921",
"305.7"
],
[
"12.61818771",
"91.4"
],
[
"12.61821333",
"250"
],
[
"12.6182244",
"116.3"
],
[
"12.61822556",
"1.3"
],
[
"12.61913683",
"79.2"
],
[
"12.6191967",
"198.8"
],
[
"12.61923938",
"292.6"
],
[
"12.6201342",
"77.3"
],
[
"12.62016128",
"50.2"
],
[
"12.62020907",
"37.6"
],
[
"12.62021799",
"160.2"
],
[
"12.62022455",
"214.5"
],
[
"12.62213596",
"155.6"
],
[
"12.62219485",
"38.9"
],
[
"12.6222468",
"28.2"
],
[
"12.62312786",
"47.2"
],
[
"12.62314947",
"169.3"
],
[
"12.62316509",
"28.3"
],
[
"12.62318804",
"225.7"
],
[
"12.62323293",
"293.5"
],
[
"12.62325159",
"183.8"
],
[
"12.62513419",
"231.8"
],
[
"12.6251515",
"6.9"
],
[
"12.62515222",
"129.3"
],
[
"12.62516655",
"117.2"
],
[
"12.62517353",
"102.8"
],
[
"12.62517579",
"296.6"
],
[
"12.62520634",
"243.4"
],
[
"12.62522196",
"72.9"
],
[
"12.62522319",
"129.4"
],
[
"12.62523014",
"41.8"
],
[
"12.62524491",
"236.2"
],
[
"12.62618186",
"104.6"
],
[
"12.62620921",
"65"
],
[
"12.62624577",
"28.2"
],
[
"12.62624809",
"135.5"
],
[
"12.62715735",
"288.8"
],
[
"12.62717416",
"23.9"
],
[
"12.62719091",
"236.7"
],
[
"12.62720519",
"272.8"
],
[
"12.62813968",
"98.3"
],
[
"12.62814159",
"125"
],
[
"12.62815273",
"300.9"
],
[
"12.62815317",
"9.8"
],
[
"12.62815556",
"51.6"
],
[
"12.62818082",
"135"
],
[
"12.6282089",
"271.8"
],
[
"12.63014677",
"88.7"
],
[
"12.63019939",
"218.3"
],
[
"12.63112799",
"54.5"
],
[
"12.63116461",
"292.6"
],
[
"12.63118621",
"134"
],
[
"12.6311994",
"116.7"
],
[
"12.63214443",
"128.6"
],
[
"12.63222347",
"158.9"
],
[
"12.6322396",
"4.3"
],
[
"12.63315337",
"143.8"
],
[
"12.63315792",
"212.3"
],
[
"12.63316759",
"89.3"
],
[
"12.63317266",
"28.1"
],
[
"12.63317705",
"100.9"
],
[
"12.63318054",
"96.3"
],
[
"12.63318216",
"258.4"
],
[
"12.63319285",
"207.5"
],
[
"12.63513078",
"215.3"
],
[
"12.63514182",
"109.2"
],
[
"12.63520132",
"12.4"
],
[
"12.635238",
"116.6"
],
[
"12.63523826",
"92.8"
],
[
"12.63915725",
"31.6"
],
[
"12.63918776",
"246.9"
],
[
"12.63918813",
"100.2"
],
[
"12.63920036",
"262.7"
],
[
"12.64013838",
"5.7"
],
[
"12.64024277",
"139.3"
],
[
"12.64113229",
"113.1"
],
[
"12.64119689",
"163.6"
],
[
"12.64123366",
"267.7"
],
[
"12.64521429",
"21.5"
],
[
"12.6452275",
"203.4"
],
[
"12.64613167",
"167.9"
],
[
"12.64614074",
"195.3"
],
[
"12.64615808",
"60.8"
],
[
"12.64622673",
"27.6"
],
[
"12.64623815",
"185.9"
],
[
"12.64717253",
"96.3"
],
[
"12.64720257",
"67.7"
],
[
"12.64722239",
"239.9"
],
[
"12.64722671",
"236.2"
],
[
"12.64724539",
"247.4"
],
[
"12.6472506",
"122.7"
],
[
"12.64816045",
"34.8"
],
[
"12.64819719",
"296.4"
],
[
"12.64820664",
"9.8"
],
[
"12.6482135",
"153.2"
],
[
"12.64821647",
"157.6"
],
[
"12.64822709",
"232.5"
],
[
"12.64914409",
"294.7"
],
[
"12.64914648",
"77.5"
],
[
"12.64914683",
"37.4"
],
[
"12.64915871",
"32.5"
],
[
"12.64916307",
"38.1"
],
[
"12.64917497",
"83.8"
],
[
"12.64918103",
"37.7"
],
[
"12.64919377",
"188.4"
],
[
"12.64919394",
"139.6"
],
[
"12.64921971",
"227.4"
],
[
"12.64923429",
"225.4"
],
[
"12.6501292",
"181.5"
],
[
"12.65017235",
"223.7"
],
[
"12.65018389",
"161.9"
],
[
"12.65018733",
"211.1"
],
[
"12.65019079",
"144.6"
],
[
"12.65019915",
"162.1"
],
[
"12.65112685",
"252.9"
],
[
"12.65112797",
"66.4"
],
[
"12.65113407",
"4.6"
],
[
"12.65115622",
"240.5"
],
[
"12.65117101",
"128.2"
],
[
"12.65117215",
"242.5"
],
[
"12.65119404",
"19.9"
],
[
"12.65120663",
"33.2"
],
[
"12.65120712",
"14.4"
],
[
"12.65121604",
"106.8"
],
[
"12.65121964",
"142.3"
],
[
"12.65122296",
"23.9"
],
[
"12.65122754",
"191"
],
[
"12.65123122",
"295.7"
],
[
"12.65123206",
"104.5"
],
[
"12.65213665",
"165.1"
],
[
"12.65217074",
"115.1"
],
[
"12.65218699",
"242.9"
],
[
"12.65512738",
"89.4"
],
[
"12.6551328",
"161.2"
],
[
"12.65516776",
"301.4"
],
[
"12.65521494",
"259.9"
],
[
"12.65521915",
"2.2"
],
[
"12.65612745",
"33.5"
],
[
"12.65613729",
"72.5"
],
[
"12.65615117",
"151.5"
],
[
"12.65617942",
"53.5"
],
[
"12.65618029",
"130"
],
[
"12.65618443",
"62.7"
],
[
"12.65618741",
"8.3"
],
[
"12.65624198",
"1.2"
],
[
"12.65624313",
"189.3"
],
[
"12.65715232",
"108.3"
],
[
"12.65715751",
"242.3"
],
[
"12.65716106",
"94.8"
],
[
"12.65716273",
"38.9"
],
[
"12.65717934",
"205.3"
],
[
"12.65718036",
"131.2"
],
[
"12.65718162",
"51.8"
],
[
"12.65718731",
"23.6"
],
[
"12.65721083",
"41.9"
],
[
"12.6572161",
"42.3"
],
[
"12.65721942",
"173"
],
[
"12.65722829",
"250.8"
],
[
"12.65723463",
"149.4"
],
[
"12.65724686",
"10.5"
],
[
"12.6581511",
"196.4"
],
[
"12.65816668",
"80.7"
],
[
"12.65817836",
"283.6"
],
[
"12.6581805",
"231.2"
],
[
"12.65818141",
"190.6"
],
[
"12.6581834",
"242.2"
],
[
"12.65820057",
"304"
],
[
"12.65820663",
"148.4"
],
[
"12.65823085",
"266.3"
],
[
"12.65824409",
"219"
],
[
"12.65824658",
"199.5"
],
[
"12.65913566",
"94.3"
],
[
"12.65914397",
"187.7"
],
[
"12.65916057",
"177.8"
],
[
"12.65917148",
"202.4"
],
[
"12.659181",
"172.8"
],
[
"12.65920013",
"155.4"
],
[
"12.65920264",
"98.5"
],
[
"12.65921006",
"14.5"
],
[
"12.65921203",
"147.5"
],
[
"12.65923585",
"14.9"
],
[
"12.6601266",
"199.3"
],
[
"12.66015355",
"237.5"
],
[
"12.66020036",
"302.2"
],
[
"12.66020756",
"272"
],
[
"12.6602165",
"168.1"
],
[
"12.66118702",
"82.1"
],
[
"12.66121797",
"171.9"
],
[
"12.66122195",
"57.8"
],
[
"12.66213097",
"301.7"
],
[
"12.66214585",
"27"
],
[
"12.66218583",
"151.8"
],
[
"12.66224438",
"159.9"
],
[
"12.66313534",
"55.5"
],
[
"12.66314483",
"127.9"
],
[
"12.66315074",
"276.7"
],
[
"12.66315206",
"49.8"
],
[
"12.66315417",
"260.8"
],
[
"12.66315496",
"114"
],
[
"12.66315871",
"101.3"
],
[
"12.66315932",
"96.7"
],
[
"12.66316894",
"106.2"
],
[
"12.66317074",
"165"
],
[
"12.66317422",
"152.3"
],
[
"12.66318826",
"174.8"
],
[
"12.66319149",
"9.8"
],
[
"12.66319515",
"38.8"
],
[
"12.66320835",
"248.3"
],
[
"12.66321564",
"73.7"
],
[
"12.66324551",
"0.6"
],
[
"12.66413491",
"113.1"
],
[
"12.66419195",
"97.6"
],
[
"12.66424373",
"39.5"
],
[
"12.66512877",
"140.7"
],
[
"12.6651407",
"147.5"
],
[
"12.66514171",
"108.9"
],
[
"12.66518793",
"1.5"
],
[
"12.66521137",
"71.1"
],
[
"12.66523845",
"249.5"
],
[
"12.66525295",
"60.9"
],
[
"12.66613368",
"300.3"
],
[
"12.66615455",
"262.6"
],
[
"12.66714935",
"289.1"
],
[
"12.66720399",
"51.7"
],
[
"12.66720854",
"47.3"
],
[
"12.66724093",
"153.5"
],
[
"12.66814991",
"304.6"
],
[
"12.66815432",
"132.5"
],
[
"12.66815558",
"159.7"
],
[
"12.66816575",
"211.6"
],
[
"12.66817514",
"276.7"
],
[
"12.6682281",
"259.9"
],
[
"12.66823721",
"254.9"
],
[
"12.66823853",
"175.5"
],
[
"12.66824519",
"127.7"
],
[
"12.668249",
"264.7"
],
[
"12.66825066",
"135.3"
],
[
"12.66913701",
"160.3"
],
[
"12.66913863",
"283"
],
[
"12.66913939",
"66.2"
],
[
"12.66916163",
"200.5"
],
[
"12.6691709",
"175.8"
],
[
"12.66918411",
"237.6"
],
[
"12.66924608",
"168"
],
[
"12.67013773",
"136.9"
],
[
"12.67023957",
"196.9"
],
[
"12.67115308",
"202.6"
],
[
"12.67120176",
"264.5"
],
[
"12.67121229",
"112.4"
],
[
"12.67122836",
"61.7"
],
[
"12.67122964",
"222.8"
],
[
"12.67124893",
"283.8"
],
[
"12.67125018",
"68"
],
[
"12.67213313",
"241.3"
],
[
"12.67214704",
"127.4"
],
[
"12.67216318",
"204.2"
],
[
"12.67218328",
"292.3"
],
[
"12.67221831",
"169.8"
],
[
"12.67221987",
"100.7"
],
[
"12.67222318",
"139.4"
],
[
"12.67224104",
"285.7"
],
[
"12.67312765",
"305.1"
],
[
"12.67315829",
"96.8"
],
[
"12.67317291",
"230"
],
[
"12.67317484",
"61.8"
],
[
"12.67319767",
"201.1"
],
[
"12.67322371",
"261.7"
],
[
"12.67414804",
"10.1"
],
[
"12.67415076",
"167.7"
],
[
"12.67415356",
"210.5"
],
[
"12.6741544",
"226.5"
],
[
"12.67415886",
"44.6"
],
[
"12.67415941",
"217.6"
],
[
"12.67416922",
"121"
],
[
"12.67416977",
"228.2"
],
[
"12.67416992",
"199.6"
],
[
"12.67417578",
"304.1"
],
[
"12.67419401",
"152.9"
],
[
"12.6741964",
"240.3"
],
[
"12.67419863",
"10.7"
],
[
"12.67420003",
"57.3"
],
[
"12.674202",
"0.4"
],
[
"12.67421369",
"87"
],
[
"12.67421548",
"76.5"
],
[
"12.67421998",
"238.4"
],
[
"12.67422518",
"211.7"
],
[
"12.67422685",
"41.4"
],
[
"12.67422725",
"60.3"
],
[
"12.67515101",
"153.7"
],
[
"12.67515126",
"221.5"
],
[
"12.67515757",
"87.5"
],
[
"12.67516026",
"202.9"
],
[
"12.67516963",
"225.4"
],
[
"12.67520137",
"91.2"
],
[
"12.67522229",
"28.1"
],
[
"12.67523065",
"61.7"
],
[
"12.67613451",
"214.5"
],
[
"12.67614128",
"271.1"
],
[
"12.67614376",
"237.2"
],
[
"12.67614658",
"47.7"
],
[
"12.67616406",
"9.4"
],
[
"12.67617868",
"159.9"
],
[
"12.67619319",
"303.2"
],
[
"12.67622481",
"75.1"
],
[
"12.67622777",
"165.4"
],
[
"12.67623267",
"285.3"
],
[
"12.67623542",
"246.5"
],
[
"12.67817012",
"89"
],
[
"12.67822873",
"165.1"
],
[
"12.67914344",
"167"
],
[
"12.67915771",
"142.8"
],
[
"12.67916506",
"92.4"
],
[
"12.67918668",
"202.4"
],
[
"12.67919742",
"95.9"
],
[
"12.67919759",
"70.1"
],
[
"12.6791995",
"207.4"
],
[
"12.6792267",
"68.5"
],
[
"12.67922933",
"44.3"
],
[
"12.6792428",
"69.3"
],
[
"12.67924694",
"250.4"
],
[
"12.68022431",
"18.4"
],
[
"12.68023048",
"192.2"
],
[
"12.68024823",
"303.6"
],
[
"12.68025346",
"57.1"
],
[
"12.68114816",
"106.8"
],
[
"12.68116581",
"189.3"
],
[
"12.68120122",
"198"
],
[
"12.68121234",
"263.5"
],
[
"12.68122817",
"17.3"
],
[
"12.6812364",
"170.2"
],
[
"12.68216972",
"100.2"
],
[
"12.68218647",
"188.9"
],
[
"12.68220173",
"297.9"
],
[
"12.6822123",
"171.3"
],
[
"12.68221407",
"109.4"
],
[
"12.68316601",
"201.3"
],
[
"12.68316793",
"227.9"
],
[
"12.6831719",
"110.5"
],
[
"12.68319245",
"100.6"
],
[
"12.68324843",
"57.3"
],
[
"12.6851587",
"198.7"
],
[
"12.68524213",
"104.7"
],
[
"12.68621427",
"237.6"
],
[
"12.68624916",
"17.5"
],
[
"12.68822602",
"83"
],
[
"12.69214658",
"294.5"
],
[
"12.6921541",
"55.9"
],
[
"12.69216318",
"151.4"
],
[
"12.69417788",
"157.9"
],
[
"12.69419691",
"153.9"
],
[
"12.69420894",
"14.9"
],
[
"12.69513333",
"175.7"
],
[
"12.69515523",
"60"
],
[
"12.69522324",
"268.4"
],
[
"12.69522536",
"267.2"
],
[
"12.69523884",
"133.5"
],
[
"12.70017272",
"165.1"
],
[
"12.70017354",
"124.4"
],
[
"12.70021935",
"83.8"
],
[
"12.70023302",
"73.2"
]
],
"timestamp": "1766313006",
"ticker_id": "LINKUSDT_PERP"
}

