Publish sample dataset for bitget-market-scraper
Browse files- README.md +93 -0
- sample.json +1702 -0
- sample.parquet +3 -0
README.md
ADDED
|
@@ -0,0 +1,93 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
---
|
| 2 |
+
license: cc-by-4.0
|
| 3 |
+
pretty_name: "Bitget Market Scraper"
|
| 4 |
+
tags: [crypto, web-scraping, apify, automation, developer-tools, scraper]
|
| 5 |
+
size_categories:
|
| 6 |
+
- n<1K
|
| 7 |
+
---
|
| 8 |
+
|
| 9 |
+
# Bitget Market Scraper
|
| 10 |
+
|
| 11 |
+
Scrape live market data for every Bitget spot trading pair in one run — last price, 24h change, high/low, base/quote/USDT volume and bid/ask. Schedule it for a continuously fresh price feed.
|
| 12 |
+
|
| 13 |
+
## What the actor scrapes
|
| 14 |
+
|
| 15 |
+
# 🟦 Bitget Market Scraper — Live Spot & Futures Crypto Prices Scrape **live market data from Bitget**, one of the world's leading cryptocurrency exchanges, straight from its official public API. No login, no API key, no blocking. This Apify Actor returns a clean, structured snapshot of every Bitget spot, USDT-margined futures, and coin-margined futures pair in a single run: price, 24h change, high/low, multi-denominated volume, bid/ask, funding rate, and open interest. If you need bulk **Bitget
|
| 16 |
+
|
| 17 |
+
## Who this is for
|
| 18 |
+
|
| 19 |
+
This sample is useful for anyone working in **crypto, automation, developer tools** who wants a quick look at the shape of the data before running the live actor at scale. Treat it as a static snapshot — counts, prices and timestamps reflect the moment the sample was captured and will drift over time.
|
| 20 |
+
|
| 21 |
+
## Source
|
| 22 |
+
|
| 23 |
+
**Live source:** This dataset is a static sample. For fresh, customizable extractions, run the live Apify actor: [logiover/bitget-market-scraper](https://apify.com/logiover/bitget-market-scraper)
|
| 24 |
+
|
| 25 |
+
## Fields
|
| 26 |
+
|
| 27 |
+
- **`symbol`** — asset ticker symbol
|
| 28 |
+
- **`category`** — category label
|
| 29 |
+
- **`lastPrice`** — field captured by the actor
|
| 30 |
+
- **`openPrice`** — field captured by the actor
|
| 31 |
+
- **`high24h`** — field captured by the actor
|
| 32 |
+
- **`low24h`** — field captured by the actor
|
| 33 |
+
- **`priceChangePercent24h`** — field captured by the actor
|
| 34 |
+
- **`baseVolume`** — field captured by the actor
|
| 35 |
+
- **`quoteVolume`** — field captured by the actor
|
| 36 |
+
- **`usdtVolume`** — field captured by the actor
|
| 37 |
+
- **`bidPrice`** — field captured by the actor
|
| 38 |
+
- **`askPrice`** — field captured by the actor
|
| 39 |
+
- **`fundingRate`** — field captured by the actor
|
| 40 |
+
- **`openInterest`** — field captured by the actor
|
| 41 |
+
- **`scrapedAt`** — timestamp the row was scraped
|
| 42 |
+
|
| 43 |
+
## Sample preview
|
| 44 |
+
|
| 45 |
+
```json
|
| 46 |
+
[
|
| 47 |
+
{
|
| 48 |
+
"symbol": "BTCUSDT",
|
| 49 |
+
"category": "usdt-futures",
|
| 50 |
+
"lastPrice": 81297,
|
| 51 |
+
"openPrice": 79281.4,
|
| 52 |
+
"high24h": 81571.6,
|
| 53 |
+
"low24h": 78865.6,
|
| 54 |
+
"priceChangePercent24h": 2.742,
|
| 55 |
+
"baseVolume": 46934.5616,
|
| 56 |
+
"quoteVolume": 3757205322.628,
|
| 57 |
+
"usdtVolume": 3757205322.628,
|
| 58 |
+
"bidPrice": 81296.9,
|
| 59 |
+
"askPrice": 81297,
|
| 60 |
+
"fundingRate": -0.000294,
|
| 61 |
+
"openInterest": 31271.6411,
|
| 62 |
+
"scrapedAt": "2026-05-14T16:57:16.885Z"
|
| 63 |
+
},
|
| 64 |
+
{
|
| 65 |
+
"symbol": "ETHUSDT",
|
| 66 |
+
"category": "usdt-futures",
|
| 67 |
+
"lastPrice": 2300.21,
|
| 68 |
+
"openPrice": 2258.61,
|
| 69 |
+
"high24h": 2312.42,
|
| 70 |
+
"low24h": 2238.06,
|
| 71 |
+
"priceChangePercent24h": 2.161,
|
| 72 |
+
"baseVolume": 777896.26,
|
| 73 |
+
"quoteVolume": 1763612989.0456,
|
| 74 |
+
"usdtVolume": 1763612989.0456,
|
| 75 |
+
"bidPrice": 2300.21,
|
| 76 |
+
"askPrice": 2300.22,
|
| 77 |
+
"fundingRate": -1e-06,
|
| 78 |
+
"openInterest": 1067600.05,
|
| 79 |
+
"scrapedAt": "2026-05-14T16:57:16.885Z"
|
| 80 |
+
}
|
| 81 |
+
]
|
| 82 |
+
```
|
| 83 |
+
|
| 84 |
+
## Snapshot stats
|
| 85 |
+
|
| 86 |
+
- Row count in this sample: **100**
|
| 87 |
+
- Data quality flag at capture time: `EXISTING_USED`
|
| 88 |
+
|
| 89 |
+
## License & Attribution
|
| 90 |
+
|
| 91 |
+
Released under **Creative Commons Attribution 4.0 (CC BY 4.0)**. If you use this data, please credit the source actor and link back to its Apify Store page: [logiover/bitget-market-scraper](https://apify.com/logiover/bitget-market-scraper).
|
| 92 |
+
|
| 93 |
+
The sample is provided as-is for evaluation and research. Source websites retain their own terms of service — downstream users are responsible for complying with them when running the live actor or redistributing scraped content.
|
sample.json
ADDED
|
@@ -0,0 +1,1702 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
[
|
| 2 |
+
{
|
| 3 |
+
"symbol": "BTCUSDT",
|
| 4 |
+
"category": "usdt-futures",
|
| 5 |
+
"lastPrice": 81297,
|
| 6 |
+
"openPrice": 79281.4,
|
| 7 |
+
"high24h": 81571.6,
|
| 8 |
+
"low24h": 78865.6,
|
| 9 |
+
"priceChangePercent24h": 2.742,
|
| 10 |
+
"baseVolume": 46934.5616,
|
| 11 |
+
"quoteVolume": 3757205322.628,
|
| 12 |
+
"usdtVolume": 3757205322.628,
|
| 13 |
+
"bidPrice": 81296.9,
|
| 14 |
+
"askPrice": 81297,
|
| 15 |
+
"fundingRate": -0.000294,
|
| 16 |
+
"openInterest": 31271.6411,
|
| 17 |
+
"scrapedAt": "2026-05-14T16:57:16.885Z"
|
| 18 |
+
},
|
| 19 |
+
{
|
| 20 |
+
"symbol": "ETHUSDT",
|
| 21 |
+
"category": "usdt-futures",
|
| 22 |
+
"lastPrice": 2300.21,
|
| 23 |
+
"openPrice": 2258.61,
|
| 24 |
+
"high24h": 2312.42,
|
| 25 |
+
"low24h": 2238.06,
|
| 26 |
+
"priceChangePercent24h": 2.161,
|
| 27 |
+
"baseVolume": 777896.26,
|
| 28 |
+
"quoteVolume": 1763612989.0456,
|
| 29 |
+
"usdtVolume": 1763612989.0456,
|
| 30 |
+
"bidPrice": 2300.21,
|
| 31 |
+
"askPrice": 2300.22,
|
| 32 |
+
"fundingRate": -1e-06,
|
| 33 |
+
"openInterest": 1067600.05,
|
| 34 |
+
"scrapedAt": "2026-05-14T16:57:16.885Z"
|
| 35 |
+
},
|
| 36 |
+
{
|
| 37 |
+
"symbol": "SOLUSDT",
|
| 38 |
+
"category": "usdt-futures",
|
| 39 |
+
"lastPrice": 92.73,
|
| 40 |
+
"openPrice": 91.119,
|
| 41 |
+
"high24h": 93.653,
|
| 42 |
+
"low24h": 89.762,
|
| 43 |
+
"priceChangePercent24h": 1.9040000000000001,
|
| 44 |
+
"baseVolume": 4293164.6,
|
| 45 |
+
"quoteVolume": 391776367.5396,
|
| 46 |
+
"usdtVolume": 391776367.5396,
|
| 47 |
+
"bidPrice": 92.731,
|
| 48 |
+
"askPrice": 92.732,
|
| 49 |
+
"fundingRate": 0.0001,
|
| 50 |
+
"openInterest": 4241269.1,
|
| 51 |
+
"scrapedAt": "2026-05-14T16:57:16.885Z"
|
| 52 |
+
},
|
| 53 |
+
{
|
| 54 |
+
"symbol": "XAGUSDT",
|
| 55 |
+
"category": "usdt-futures",
|
| 56 |
+
"lastPrice": 84.69,
|
| 57 |
+
"openPrice": 87.69,
|
| 58 |
+
"high24h": 89.09,
|
| 59 |
+
"low24h": 83.82,
|
| 60 |
+
"priceChangePercent24h": -4.478,
|
| 61 |
+
"baseVolume": 3187041.04,
|
| 62 |
+
"quoteVolume": 276082559.0917,
|
| 63 |
+
"usdtVolume": 276082559.0917,
|
| 64 |
+
"bidPrice": 84.69,
|
| 65 |
+
"askPrice": 84.7,
|
| 66 |
+
"fundingRate": 0,
|
| 67 |
+
"openInterest": 507449.87,
|
| 68 |
+
"scrapedAt": "2026-05-14T16:57:16.886Z"
|
| 69 |
+
},
|
| 70 |
+
{
|
| 71 |
+
"symbol": "BTCUSDT",
|
| 72 |
+
"category": "spot",
|
| 73 |
+
"lastPrice": 81335.85,
|
| 74 |
+
"openPrice": 79139.99,
|
| 75 |
+
"high24h": 81632.32,
|
| 76 |
+
"low24h": 78916.68,
|
| 77 |
+
"priceChangePercent24h": 2.775,
|
| 78 |
+
"baseVolume": 3392.209377,
|
| 79 |
+
"quoteVolume": 271098823.095828,
|
| 80 |
+
"usdtVolume": 271098823.0958274,
|
| 81 |
+
"bidPrice": 81329.99,
|
| 82 |
+
"askPrice": 81330,
|
| 83 |
+
"fundingRate": null,
|
| 84 |
+
"openInterest": null,
|
| 85 |
+
"scrapedAt": "2026-05-14T16:57:15.727Z"
|
| 86 |
+
},
|
| 87 |
+
{
|
| 88 |
+
"symbol": "XRPUSDT",
|
| 89 |
+
"category": "usdt-futures",
|
| 90 |
+
"lastPrice": 1.4712,
|
| 91 |
+
"openPrice": 1.4263,
|
| 92 |
+
"high24h": 1.4759,
|
| 93 |
+
"low24h": 1.4145,
|
| 94 |
+
"priceChangePercent24h": 3.344,
|
| 95 |
+
"baseVolume": 173582528,
|
| 96 |
+
"quoteVolume": 250455541.6692,
|
| 97 |
+
"usdtVolume": 250455541.6692,
|
| 98 |
+
"bidPrice": 1.4712,
|
| 99 |
+
"askPrice": 1.4713,
|
| 100 |
+
"fundingRate": 0.0001,
|
| 101 |
+
"openInterest": 151000296,
|
| 102 |
+
"scrapedAt": "2026-05-14T16:57:16.885Z"
|
| 103 |
+
},
|
| 104 |
+
{
|
| 105 |
+
"symbol": "XAUUSDT",
|
| 106 |
+
"category": "usdt-futures",
|
| 107 |
+
"lastPrice": 4680.93,
|
| 108 |
+
"openPrice": 4699.63,
|
| 109 |
+
"high24h": 4721.22,
|
| 110 |
+
"low24h": 4670.27,
|
| 111 |
+
"priceChangePercent24h": -0.418,
|
| 112 |
+
"baseVolume": 41728.26,
|
| 113 |
+
"quoteVolume": 195935339.7706,
|
| 114 |
+
"usdtVolume": 195935339.7706,
|
| 115 |
+
"bidPrice": 4680.93,
|
| 116 |
+
"askPrice": 4680.94,
|
| 117 |
+
"fundingRate": 0.000186,
|
| 118 |
+
"openInterest": 9314.39,
|
| 119 |
+
"scrapedAt": "2026-05-14T16:57:16.886Z"
|
| 120 |
+
},
|
| 121 |
+
{
|
| 122 |
+
"symbol": "DOGEUSDT",
|
| 123 |
+
"category": "usdt-futures",
|
| 124 |
+
"lastPrice": 0.11541,
|
| 125 |
+
"openPrice": 0.1126,
|
| 126 |
+
"high24h": 0.1166,
|
| 127 |
+
"low24h": 0.11186,
|
| 128 |
+
"priceChangePercent24h": 3.026,
|
| 129 |
+
"baseVolume": 1577356079,
|
| 130 |
+
"quoteVolume": 179954980.0298,
|
| 131 |
+
"usdtVolume": 179954980.0298,
|
| 132 |
+
"bidPrice": 0.11541,
|
| 133 |
+
"askPrice": 0.11542,
|
| 134 |
+
"fundingRate": -0.000227,
|
| 135 |
+
"openInterest": 954045141,
|
| 136 |
+
"scrapedAt": "2026-05-14T16:57:16.885Z"
|
| 137 |
+
},
|
| 138 |
+
{
|
| 139 |
+
"symbol": "ETHUSDT",
|
| 140 |
+
"category": "spot",
|
| 141 |
+
"lastPrice": 2300.94,
|
| 142 |
+
"openPrice": 2252.02,
|
| 143 |
+
"high24h": 2313.2,
|
| 144 |
+
"low24h": 2238.69,
|
| 145 |
+
"priceChangePercent24h": 2.172,
|
| 146 |
+
"baseVolume": 69330.0291,
|
| 147 |
+
"quoteVolume": 156984779.5199,
|
| 148 |
+
"usdtVolume": 156984779.519816,
|
| 149 |
+
"bidPrice": 2300.94,
|
| 150 |
+
"askPrice": 2300.95,
|
| 151 |
+
"fundingRate": null,
|
| 152 |
+
"openInterest": null,
|
| 153 |
+
"scrapedAt": "2026-05-14T16:57:15.727Z"
|
| 154 |
+
},
|
| 155 |
+
{
|
| 156 |
+
"symbol": "LABUSDT",
|
| 157 |
+
"category": "usdt-futures",
|
| 158 |
+
"lastPrice": 5.92642,
|
| 159 |
+
"openPrice": 6.07628,
|
| 160 |
+
"high24h": 6.68876,
|
| 161 |
+
"low24h": 4.78465,
|
| 162 |
+
"priceChangePercent24h": -3.3680000000000003,
|
| 163 |
+
"baseVolume": 14848978,
|
| 164 |
+
"quoteVolume": 85429435.90365,
|
| 165 |
+
"usdtVolume": 85429435.90365,
|
| 166 |
+
"bidPrice": 5.92384,
|
| 167 |
+
"askPrice": 5.92626,
|
| 168 |
+
"fundingRate": 0.000311,
|
| 169 |
+
"openInterest": 27655841,
|
| 170 |
+
"scrapedAt": "2026-05-14T16:57:16.886Z"
|
| 171 |
+
},
|
| 172 |
+
{
|
| 173 |
+
"symbol": "NVDAUSDT",
|
| 174 |
+
"category": "usdt-futures",
|
| 175 |
+
"lastPrice": 235.2,
|
| 176 |
+
"openPrice": 227.68,
|
| 177 |
+
"high24h": 236.35,
|
| 178 |
+
"low24h": 225.21,
|
| 179 |
+
"priceChangePercent24h": 3.485,
|
| 180 |
+
"baseVolume": 356774.71,
|
| 181 |
+
"quoteVolume": 82604188.2107,
|
| 182 |
+
"usdtVolume": 82604188.2107,
|
| 183 |
+
"bidPrice": 235.2,
|
| 184 |
+
"askPrice": 235.21,
|
| 185 |
+
"fundingRate": 0,
|
| 186 |
+
"openInterest": 60261.64,
|
| 187 |
+
"scrapedAt": "2026-05-14T16:57:16.886Z"
|
| 188 |
+
},
|
| 189 |
+
{
|
| 190 |
+
"symbol": "HYPEUSDT",
|
| 191 |
+
"category": "usdt-futures",
|
| 192 |
+
"lastPrice": 43.21,
|
| 193 |
+
"openPrice": 38.802,
|
| 194 |
+
"high24h": 43.397,
|
| 195 |
+
"low24h": 38.126,
|
| 196 |
+
"priceChangePercent24h": 10.23,
|
| 197 |
+
"baseVolume": 1880056.38,
|
| 198 |
+
"quoteVolume": 76004688.81886,
|
| 199 |
+
"usdtVolume": 76004688.81886,
|
| 200 |
+
"bidPrice": 43.188,
|
| 201 |
+
"askPrice": 43.19,
|
| 202 |
+
"fundingRate": 4.7e-05,
|
| 203 |
+
"openInterest": 1660251.82,
|
| 204 |
+
"scrapedAt": "2026-05-14T16:57:16.885Z"
|
| 205 |
+
},
|
| 206 |
+
{
|
| 207 |
+
"symbol": "SUIUSDT",
|
| 208 |
+
"category": "usdt-futures",
|
| 209 |
+
"lastPrice": 1.203,
|
| 210 |
+
"openPrice": 1.2073,
|
| 211 |
+
"high24h": 1.2298,
|
| 212 |
+
"low24h": 1.1852,
|
| 213 |
+
"priceChangePercent24h": -0.652,
|
| 214 |
+
"baseVolume": 57099911.1,
|
| 215 |
+
"quoteVolume": 68994919.30931,
|
| 216 |
+
"usdtVolume": 68994919.30931,
|
| 217 |
+
"bidPrice": 1.203,
|
| 218 |
+
"askPrice": 1.2031,
|
| 219 |
+
"fundingRate": -1.1e-05,
|
| 220 |
+
"openInterest": 45857711.4,
|
| 221 |
+
"scrapedAt": "2026-05-14T16:57:16.885Z"
|
| 222 |
+
},
|
| 223 |
+
{
|
| 224 |
+
"symbol": "BILLUSDT",
|
| 225 |
+
"category": "usdt-futures",
|
| 226 |
+
"lastPrice": 0.2045,
|
| 227 |
+
"openPrice": 0.18356,
|
| 228 |
+
"high24h": 0.21616,
|
| 229 |
+
"low24h": 0.16037,
|
| 230 |
+
"priceChangePercent24h": 18.958,
|
| 231 |
+
"baseVolume": 350769312,
|
| 232 |
+
"quoteVolume": 64159004.94292,
|
| 233 |
+
"usdtVolume": 64159004.94292,
|
| 234 |
+
"bidPrice": 0.20446,
|
| 235 |
+
"askPrice": 0.20455,
|
| 236 |
+
"fundingRate": 0.000738,
|
| 237 |
+
"openInterest": 42455495,
|
| 238 |
+
"scrapedAt": "2026-05-14T16:57:16.886Z"
|
| 239 |
+
},
|
| 240 |
+
{
|
| 241 |
+
"symbol": "SIRENUSDT",
|
| 242 |
+
"category": "usdt-futures",
|
| 243 |
+
"lastPrice": 0.52096,
|
| 244 |
+
"openPrice": 1.1338,
|
| 245 |
+
"high24h": 1.2418,
|
| 246 |
+
"low24h": 0.50139,
|
| 247 |
+
"priceChangePercent24h": -56.843999999999994,
|
| 248 |
+
"baseVolume": 90680720,
|
| 249 |
+
"quoteVolume": 61932976.7724,
|
| 250 |
+
"usdtVolume": 61932976.7724,
|
| 251 |
+
"bidPrice": 0.52027,
|
| 252 |
+
"askPrice": 0.52098,
|
| 253 |
+
"fundingRate": -7.9e-05,
|
| 254 |
+
"openInterest": 11652698,
|
| 255 |
+
"scrapedAt": "2026-05-14T16:57:16.886Z"
|
| 256 |
+
},
|
| 257 |
+
{
|
| 258 |
+
"symbol": "ZECUSDT",
|
| 259 |
+
"category": "usdt-futures",
|
| 260 |
+
"lastPrice": 534.62,
|
| 261 |
+
"openPrice": 524.38,
|
| 262 |
+
"high24h": 559.3,
|
| 263 |
+
"low24h": 514.1,
|
| 264 |
+
"priceChangePercent24h": -0.388,
|
| 265 |
+
"baseVolume": 105989.828,
|
| 266 |
+
"quoteVolume": 56475873.64942,
|
| 267 |
+
"usdtVolume": 56475873.64942,
|
| 268 |
+
"bidPrice": 534.62,
|
| 269 |
+
"askPrice": 534.63,
|
| 270 |
+
"fundingRate": 5e-05,
|
| 271 |
+
"openInterest": 96695.73,
|
| 272 |
+
"scrapedAt": "2026-05-14T16:57:16.885Z"
|
| 273 |
+
},
|
| 274 |
+
{
|
| 275 |
+
"symbol": "BTCUSD",
|
| 276 |
+
"category": "coin-futures",
|
| 277 |
+
"lastPrice": 81324.7,
|
| 278 |
+
"openPrice": 79223.9,
|
| 279 |
+
"high24h": 81579.1,
|
| 280 |
+
"low24h": 78868.4,
|
| 281 |
+
"priceChangePercent24h": 2.806,
|
| 282 |
+
"baseVolume": 695.1207,
|
| 283 |
+
"quoteVolume": 55806706.10212,
|
| 284 |
+
"usdtVolume": 55806706.10212,
|
| 285 |
+
"bidPrice": 81359.1,
|
| 286 |
+
"askPrice": 81384.7,
|
| 287 |
+
"fundingRate": -0.00027,
|
| 288 |
+
"openInterest": 4210.8673,
|
| 289 |
+
"scrapedAt": "2026-05-14T16:57:49.830Z"
|
| 290 |
+
},
|
| 291 |
+
{
|
| 292 |
+
"symbol": "CLUSDT",
|
| 293 |
+
"category": "usdt-futures",
|
| 294 |
+
"lastPrice": 96.63,
|
| 295 |
+
"openPrice": 96.823,
|
| 296 |
+
"high24h": 98.075,
|
| 297 |
+
"low24h": 95.1,
|
| 298 |
+
"priceChangePercent24h": -1.283,
|
| 299 |
+
"baseVolume": 564685.88,
|
| 300 |
+
"quoteVolume": 54684288.86489,
|
| 301 |
+
"usdtVolume": 54684288.86489,
|
| 302 |
+
"bidPrice": 96.636,
|
| 303 |
+
"askPrice": 96.637,
|
| 304 |
+
"fundingRate": 0,
|
| 305 |
+
"openInterest": 116363.85,
|
| 306 |
+
"scrapedAt": "2026-05-14T16:57:16.886Z"
|
| 307 |
+
},
|
| 308 |
+
{
|
| 309 |
+
"symbol": "SOLUSDT",
|
| 310 |
+
"category": "spot",
|
| 311 |
+
"lastPrice": 92.74,
|
| 312 |
+
"openPrice": 91.03,
|
| 313 |
+
"high24h": 93.67,
|
| 314 |
+
"low24h": 89.8,
|
| 315 |
+
"priceChangePercent24h": 1.879,
|
| 316 |
+
"baseVolume": 572227.3321,
|
| 317 |
+
"quoteVolume": 52147650.0135,
|
| 318 |
+
"usdtVolume": 52147650.013476,
|
| 319 |
+
"bidPrice": 92.75,
|
| 320 |
+
"askPrice": 92.76,
|
| 321 |
+
"fundingRate": null,
|
| 322 |
+
"openInterest": null,
|
| 323 |
+
"scrapedAt": "2026-05-14T16:57:15.727Z"
|
| 324 |
+
},
|
| 325 |
+
{
|
| 326 |
+
"symbol": "QUSDT",
|
| 327 |
+
"category": "usdt-futures",
|
| 328 |
+
"lastPrice": 0.021101,
|
| 329 |
+
"openPrice": 0.021648,
|
| 330 |
+
"high24h": 0.025842,
|
| 331 |
+
"low24h": 0.020179,
|
| 332 |
+
"priceChangePercent24h": 1.9369999999999998,
|
| 333 |
+
"baseVolume": 1996277096,
|
| 334 |
+
"quoteVolume": 45105821.880325,
|
| 335 |
+
"usdtVolume": 45105821.880325,
|
| 336 |
+
"bidPrice": 0.021097,
|
| 337 |
+
"askPrice": 0.021118,
|
| 338 |
+
"fundingRate": 7.8e-05,
|
| 339 |
+
"openInterest": 164870483,
|
| 340 |
+
"scrapedAt": "2026-05-14T16:57:16.886Z"
|
| 341 |
+
},
|
| 342 |
+
{
|
| 343 |
+
"symbol": "XRPUSDT",
|
| 344 |
+
"category": "spot",
|
| 345 |
+
"lastPrice": 1.4715,
|
| 346 |
+
"openPrice": 1.4244,
|
| 347 |
+
"high24h": 1.4763,
|
| 348 |
+
"low24h": 1.4156,
|
| 349 |
+
"priceChangePercent24h": 3.3070000000000004,
|
| 350 |
+
"baseVolume": 29788859.4345,
|
| 351 |
+
"quoteVolume": 42764521.587,
|
| 352 |
+
"usdtVolume": 42764521.58691497,
|
| 353 |
+
"bidPrice": 1.4715,
|
| 354 |
+
"askPrice": 1.4716,
|
| 355 |
+
"fundingRate": null,
|
| 356 |
+
"openInterest": null,
|
| 357 |
+
"scrapedAt": "2026-05-14T16:57:15.727Z"
|
| 358 |
+
},
|
| 359 |
+
{
|
| 360 |
+
"symbol": "HYPEUSDT",
|
| 361 |
+
"category": "spot",
|
| 362 |
+
"lastPrice": 43.23,
|
| 363 |
+
"openPrice": 39.26,
|
| 364 |
+
"high24h": 43.4,
|
| 365 |
+
"low24h": 38.21,
|
| 366 |
+
"priceChangePercent24h": 10.112,
|
| 367 |
+
"baseVolume": 912574.23,
|
| 368 |
+
"quoteVolume": 37153114.82,
|
| 369 |
+
"usdtVolume": 37153114.8195,
|
| 370 |
+
"bidPrice": 43.22,
|
| 371 |
+
"askPrice": 43.23,
|
| 372 |
+
"fundingRate": null,
|
| 373 |
+
"openInterest": null,
|
| 374 |
+
"scrapedAt": "2026-05-14T16:57:15.728Z"
|
| 375 |
+
},
|
| 376 |
+
{
|
| 377 |
+
"symbol": "XAUTUSDT",
|
| 378 |
+
"category": "usdt-futures",
|
| 379 |
+
"lastPrice": 4670.92,
|
| 380 |
+
"openPrice": 4687.84,
|
| 381 |
+
"high24h": 4708.83,
|
| 382 |
+
"low24h": 4660,
|
| 383 |
+
"priceChangePercent24h": -0.39699999999999996,
|
| 384 |
+
"baseVolume": 7888.88,
|
| 385 |
+
"quoteVolume": 36946718.1974,
|
| 386 |
+
"usdtVolume": 36946718.1974,
|
| 387 |
+
"bidPrice": 4671.34,
|
| 388 |
+
"askPrice": 4671.35,
|
| 389 |
+
"fundingRate": 4.5e-05,
|
| 390 |
+
"openInterest": 7361.5,
|
| 391 |
+
"scrapedAt": "2026-05-14T16:57:16.886Z"
|
| 392 |
+
},
|
| 393 |
+
{
|
| 394 |
+
"symbol": "SNDKUSDT",
|
| 395 |
+
"category": "usdt-futures",
|
| 396 |
+
"lastPrice": 1409.99,
|
| 397 |
+
"openPrice": 1444.46,
|
| 398 |
+
"high24h": 1469.2,
|
| 399 |
+
"low24h": 1368.03,
|
| 400 |
+
"priceChangePercent24h": -2.834,
|
| 401 |
+
"baseVolume": 25903.529,
|
| 402 |
+
"quoteVolume": 36796011.51239,
|
| 403 |
+
"usdtVolume": 36796011.51239,
|
| 404 |
+
"bidPrice": 1409.76,
|
| 405 |
+
"askPrice": 1410.21,
|
| 406 |
+
"fundingRate": 0.001,
|
| 407 |
+
"openInterest": 4289.357,
|
| 408 |
+
"scrapedAt": "2026-05-14T16:57:16.886Z"
|
| 409 |
+
},
|
| 410 |
+
{
|
| 411 |
+
"symbol": "DOGEUSDT",
|
| 412 |
+
"category": "spot",
|
| 413 |
+
"lastPrice": 0.11545,
|
| 414 |
+
"openPrice": 0.11208,
|
| 415 |
+
"high24h": 0.11666,
|
| 416 |
+
"low24h": 0.11194,
|
| 417 |
+
"priceChangePercent24h": 3.007,
|
| 418 |
+
"baseVolume": 317588352.3787,
|
| 419 |
+
"quoteVolume": 36254257.9199,
|
| 420 |
+
"usdtVolume": 36254257.919829935,
|
| 421 |
+
"bidPrice": 0.11546,
|
| 422 |
+
"askPrice": 0.11547,
|
| 423 |
+
"fundingRate": null,
|
| 424 |
+
"openInterest": null,
|
| 425 |
+
"scrapedAt": "2026-05-14T16:57:15.727Z"
|
| 426 |
+
},
|
| 427 |
+
{
|
| 428 |
+
"symbol": "MUUSDT",
|
| 429 |
+
"category": "usdt-futures",
|
| 430 |
+
"lastPrice": 794.26,
|
| 431 |
+
"openPrice": 803.81,
|
| 432 |
+
"high24h": 814.35,
|
| 433 |
+
"low24h": 777.49,
|
| 434 |
+
"priceChangePercent24h": -0.147,
|
| 435 |
+
"baseVolume": 44435.59,
|
| 436 |
+
"quoteVolume": 35420092.2684,
|
| 437 |
+
"usdtVolume": 35420092.2684,
|
| 438 |
+
"bidPrice": 794.22,
|
| 439 |
+
"askPrice": 794.31,
|
| 440 |
+
"fundingRate": 0.000958,
|
| 441 |
+
"openInterest": 13594.98,
|
| 442 |
+
"scrapedAt": "2026-05-14T16:57:16.886Z"
|
| 443 |
+
},
|
| 444 |
+
{
|
| 445 |
+
"symbol": "AIGENSYNUSDT",
|
| 446 |
+
"category": "usdt-futures",
|
| 447 |
+
"lastPrice": 0.04714,
|
| 448 |
+
"openPrice": 0.02919,
|
| 449 |
+
"high24h": 0.05154,
|
| 450 |
+
"low24h": 0.02827,
|
| 451 |
+
"priceChangePercent24h": 65.752,
|
| 452 |
+
"baseVolume": 762996040,
|
| 453 |
+
"quoteVolume": 33084751.16973,
|
| 454 |
+
"usdtVolume": 33084751.16973,
|
| 455 |
+
"bidPrice": 0.04714,
|
| 456 |
+
"askPrice": 0.04717,
|
| 457 |
+
"fundingRate": 5e-05,
|
| 458 |
+
"openInterest": 78282806,
|
| 459 |
+
"scrapedAt": "2026-05-14T16:57:16.886Z"
|
| 460 |
+
},
|
| 461 |
+
{
|
| 462 |
+
"symbol": "INJUSDT",
|
| 463 |
+
"category": "usdt-futures",
|
| 464 |
+
"lastPrice": 5.153,
|
| 465 |
+
"openPrice": 5.14,
|
| 466 |
+
"high24h": 5.47,
|
| 467 |
+
"low24h": 4.902,
|
| 468 |
+
"priceChangePercent24h": -2.8649999999999998,
|
| 469 |
+
"baseVolume": 6368416.9,
|
| 470 |
+
"quoteVolume": 32734648.3524,
|
| 471 |
+
"usdtVolume": 32734648.3524,
|
| 472 |
+
"bidPrice": 5.152,
|
| 473 |
+
"askPrice": 5.154,
|
| 474 |
+
"fundingRate": -0.000133,
|
| 475 |
+
"openInterest": 1696593,
|
| 476 |
+
"scrapedAt": "2026-05-14T16:57:16.885Z"
|
| 477 |
+
},
|
| 478 |
+
{
|
| 479 |
+
"symbol": "UBUSDT",
|
| 480 |
+
"category": "usdt-futures",
|
| 481 |
+
"lastPrice": 0.23041,
|
| 482 |
+
"openPrice": 0.21249,
|
| 483 |
+
"high24h": 0.23432,
|
| 484 |
+
"low24h": 0.19025,
|
| 485 |
+
"priceChangePercent24h": 14.063999999999998,
|
| 486 |
+
"baseVolume": 141480221,
|
| 487 |
+
"quoteVolume": 29769827.17325,
|
| 488 |
+
"usdtVolume": 29769827.17325,
|
| 489 |
+
"bidPrice": 0.23047,
|
| 490 |
+
"askPrice": 0.23067,
|
| 491 |
+
"fundingRate": -0.000148,
|
| 492 |
+
"openInterest": 22031738,
|
| 493 |
+
"scrapedAt": "2026-05-14T16:57:16.886Z"
|
| 494 |
+
},
|
| 495 |
+
{
|
| 496 |
+
"symbol": "USDCUSDT",
|
| 497 |
+
"category": "spot",
|
| 498 |
+
"lastPrice": 1,
|
| 499 |
+
"openPrice": 1.0003,
|
| 500 |
+
"high24h": 1.0003,
|
| 501 |
+
"low24h": 1,
|
| 502 |
+
"priceChangePercent24h": -0.03,
|
| 503 |
+
"baseVolume": 28802854.4941,
|
| 504 |
+
"quoteVolume": 28807341.0099,
|
| 505 |
+
"usdtVolume": 28807341.00986837,
|
| 506 |
+
"bidPrice": 1,
|
| 507 |
+
"askPrice": 1.0001,
|
| 508 |
+
"fundingRate": null,
|
| 509 |
+
"openInterest": null,
|
| 510 |
+
"scrapedAt": "2026-05-14T16:57:15.727Z"
|
| 511 |
+
},
|
| 512 |
+
{
|
| 513 |
+
"symbol": "TONUSDT",
|
| 514 |
+
"category": "usdt-futures",
|
| 515 |
+
"lastPrice": 2.1154,
|
| 516 |
+
"openPrice": 2.1006,
|
| 517 |
+
"high24h": 2.1699,
|
| 518 |
+
"low24h": 2.0409,
|
| 519 |
+
"priceChangePercent24h": -0.96,
|
| 520 |
+
"baseVolume": 13398134.9,
|
| 521 |
+
"quoteVolume": 28312656.1358,
|
| 522 |
+
"usdtVolume": 28312656.1358,
|
| 523 |
+
"bidPrice": 2.1155,
|
| 524 |
+
"askPrice": 2.1156,
|
| 525 |
+
"fundingRate": 5e-05,
|
| 526 |
+
"openInterest": 8925804.1,
|
| 527 |
+
"scrapedAt": "2026-05-14T16:57:16.885Z"
|
| 528 |
+
},
|
| 529 |
+
{
|
| 530 |
+
"symbol": "CRCLUSDT",
|
| 531 |
+
"category": "usdt-futures",
|
| 532 |
+
"lastPrice": 128.26,
|
| 533 |
+
"openPrice": 126.63,
|
| 534 |
+
"high24h": 132.61,
|
| 535 |
+
"low24h": 118.67,
|
| 536 |
+
"priceChangePercent24h": 0.565,
|
| 537 |
+
"baseVolume": 210829.57,
|
| 538 |
+
"quoteVolume": 26310454.3998,
|
| 539 |
+
"usdtVolume": 26310454.3998,
|
| 540 |
+
"bidPrice": 128.2,
|
| 541 |
+
"askPrice": 128.29,
|
| 542 |
+
"fundingRate": 0.000171,
|
| 543 |
+
"openInterest": 62363.31,
|
| 544 |
+
"scrapedAt": "2026-05-14T16:57:16.886Z"
|
| 545 |
+
},
|
| 546 |
+
{
|
| 547 |
+
"symbol": "SKYAIUSDT",
|
| 548 |
+
"category": "usdt-futures",
|
| 549 |
+
"lastPrice": 0.37624,
|
| 550 |
+
"openPrice": 0.46586,
|
| 551 |
+
"high24h": 0.48939,
|
| 552 |
+
"low24h": 0.33278,
|
| 553 |
+
"priceChangePercent24h": -20.95,
|
| 554 |
+
"baseVolume": 60668146,
|
| 555 |
+
"quoteVolume": 24362861.86442,
|
| 556 |
+
"usdtVolume": 24362861.86442,
|
| 557 |
+
"bidPrice": 0.376,
|
| 558 |
+
"askPrice": 0.37618,
|
| 559 |
+
"fundingRate": 5e-05,
|
| 560 |
+
"openInterest": 115620824,
|
| 561 |
+
"scrapedAt": "2026-05-14T16:57:16.886Z"
|
| 562 |
+
},
|
| 563 |
+
{
|
| 564 |
+
"symbol": "BZUSDT",
|
| 565 |
+
"category": "usdt-futures",
|
| 566 |
+
"lastPrice": 101.09,
|
| 567 |
+
"openPrice": 101.81,
|
| 568 |
+
"high24h": 103,
|
| 569 |
+
"low24h": 99.73,
|
| 570 |
+
"priceChangePercent24h": -1.481,
|
| 571 |
+
"baseVolume": 214721.66,
|
| 572 |
+
"quoteVolume": 21805085.7581,
|
| 573 |
+
"usdtVolume": 21805085.7581,
|
| 574 |
+
"bidPrice": 101.09,
|
| 575 |
+
"askPrice": 101.1,
|
| 576 |
+
"fundingRate": 5.2e-05,
|
| 577 |
+
"openInterest": 72823.76,
|
| 578 |
+
"scrapedAt": "2026-05-14T16:57:16.886Z"
|
| 579 |
+
},
|
| 580 |
+
{
|
| 581 |
+
"symbol": "INTCUSDT",
|
| 582 |
+
"category": "usdt-futures",
|
| 583 |
+
"lastPrice": 117.13,
|
| 584 |
+
"openPrice": 120.19,
|
| 585 |
+
"high24h": 122.73,
|
| 586 |
+
"low24h": 113.38,
|
| 587 |
+
"priceChangePercent24h": -3.5090000000000003,
|
| 588 |
+
"baseVolume": 185679.32,
|
| 589 |
+
"quoteVolume": 21786971.3707,
|
| 590 |
+
"usdtVolume": 21786971.3707,
|
| 591 |
+
"bidPrice": 117.11,
|
| 592 |
+
"askPrice": 117.14,
|
| 593 |
+
"fundingRate": 0.001,
|
| 594 |
+
"openInterest": 76276.34,
|
| 595 |
+
"scrapedAt": "2026-05-14T16:57:16.886Z"
|
| 596 |
+
},
|
| 597 |
+
{
|
| 598 |
+
"symbol": "ONDOUSDT",
|
| 599 |
+
"category": "usdt-futures",
|
| 600 |
+
"lastPrice": 0.3986,
|
| 601 |
+
"openPrice": 0.3853,
|
| 602 |
+
"high24h": 0.4154,
|
| 603 |
+
"low24h": 0.3735,
|
| 604 |
+
"priceChangePercent24h": 3.211,
|
| 605 |
+
"baseVolume": 55218016.4,
|
| 606 |
+
"quoteVolume": 21501459.17294,
|
| 607 |
+
"usdtVolume": 21501459.17294,
|
| 608 |
+
"bidPrice": 0.3985,
|
| 609 |
+
"askPrice": 0.3986,
|
| 610 |
+
"fundingRate": -6e-06,
|
| 611 |
+
"openInterest": 41806962.3,
|
| 612 |
+
"scrapedAt": "2026-05-14T16:57:16.885Z"
|
| 613 |
+
},
|
| 614 |
+
{
|
| 615 |
+
"symbol": "ADAUSDT",
|
| 616 |
+
"category": "usdt-futures",
|
| 617 |
+
"lastPrice": 0.2705,
|
| 618 |
+
"openPrice": 0.2645,
|
| 619 |
+
"high24h": 0.2724,
|
| 620 |
+
"low24h": 0.2621,
|
| 621 |
+
"priceChangePercent24h": 2.307,
|
| 622 |
+
"baseVolume": 78739310,
|
| 623 |
+
"quoteVolume": 20935863.9356,
|
| 624 |
+
"usdtVolume": 20935863.9356,
|
| 625 |
+
"bidPrice": 0.2705,
|
| 626 |
+
"askPrice": 0.2706,
|
| 627 |
+
"fundingRate": 0.0001,
|
| 628 |
+
"openInterest": 145418378,
|
| 629 |
+
"scrapedAt": "2026-05-14T16:57:16.885Z"
|
| 630 |
+
},
|
| 631 |
+
{
|
| 632 |
+
"symbol": "LINKUSDT",
|
| 633 |
+
"category": "usdt-futures",
|
| 634 |
+
"lastPrice": 10.633,
|
| 635 |
+
"openPrice": 10.214,
|
| 636 |
+
"high24h": 10.766,
|
| 637 |
+
"low24h": 10.088,
|
| 638 |
+
"priceChangePercent24h": 4.522,
|
| 639 |
+
"baseVolume": 1992798,
|
| 640 |
+
"quoteVolume": 20605104.473,
|
| 641 |
+
"usdtVolume": 20605104.473,
|
| 642 |
+
"bidPrice": 10.635,
|
| 643 |
+
"askPrice": 10.636,
|
| 644 |
+
"fundingRate": 0.0001,
|
| 645 |
+
"openInterest": 4078165,
|
| 646 |
+
"scrapedAt": "2026-05-14T16:57:16.885Z"
|
| 647 |
+
},
|
| 648 |
+
{
|
| 649 |
+
"symbol": "RIVERUSDT",
|
| 650 |
+
"category": "usdt-futures",
|
| 651 |
+
"lastPrice": 7.424,
|
| 652 |
+
"openPrice": 6.705,
|
| 653 |
+
"high24h": 7.869,
|
| 654 |
+
"low24h": 6.606,
|
| 655 |
+
"priceChangePercent24h": 10.972,
|
| 656 |
+
"baseVolume": 2758003,
|
| 657 |
+
"quoteVolume": 20141932.396,
|
| 658 |
+
"usdtVolume": 20141932.396,
|
| 659 |
+
"bidPrice": 7.426,
|
| 660 |
+
"askPrice": 7.43,
|
| 661 |
+
"fundingRate": 0.000151,
|
| 662 |
+
"openInterest": 1714105,
|
| 663 |
+
"scrapedAt": "2026-05-14T16:57:16.886Z"
|
| 664 |
+
},
|
| 665 |
+
{
|
| 666 |
+
"symbol": "BUSDT",
|
| 667 |
+
"category": "usdt-futures",
|
| 668 |
+
"lastPrice": 0.4952,
|
| 669 |
+
"openPrice": 0.6463,
|
| 670 |
+
"high24h": 0.776,
|
| 671 |
+
"low24h": 0.4121,
|
| 672 |
+
"priceChangePercent24h": -26.929,
|
| 673 |
+
"baseVolume": 36720863,
|
| 674 |
+
"quoteVolume": 19543021.9393,
|
| 675 |
+
"usdtVolume": 19543021.9393,
|
| 676 |
+
"bidPrice": 0.4952,
|
| 677 |
+
"askPrice": 0.4955,
|
| 678 |
+
"fundingRate": 5e-05,
|
| 679 |
+
"openInterest": 15601276,
|
| 680 |
+
"scrapedAt": "2026-05-14T16:57:16.886Z"
|
| 681 |
+
},
|
| 682 |
+
{
|
| 683 |
+
"symbol": "TSLAUSDT",
|
| 684 |
+
"category": "usdt-futures",
|
| 685 |
+
"lastPrice": 447.24,
|
| 686 |
+
"openPrice": 448.78,
|
| 687 |
+
"high24h": 452.7,
|
| 688 |
+
"low24h": 441.75,
|
| 689 |
+
"priceChangePercent24h": -0.505,
|
| 690 |
+
"baseVolume": 41996.51,
|
| 691 |
+
"quoteVolume": 18783042.4532,
|
| 692 |
+
"usdtVolume": 18783042.4532,
|
| 693 |
+
"bidPrice": 447.37,
|
| 694 |
+
"askPrice": 447.38,
|
| 695 |
+
"fundingRate": 0.000257,
|
| 696 |
+
"openInterest": 31267.4,
|
| 697 |
+
"scrapedAt": "2026-05-14T16:57:16.886Z"
|
| 698 |
+
},
|
| 699 |
+
{
|
| 700 |
+
"symbol": "PEPEUSDT",
|
| 701 |
+
"category": "usdt-futures",
|
| 702 |
+
"lastPrice": 4.1174e-06,
|
| 703 |
+
"openPrice": 4.0536e-06,
|
| 704 |
+
"high24h": 4.1474e-06,
|
| 705 |
+
"low24h": 3.9953e-06,
|
| 706 |
+
"priceChangePercent24h": 1.4460000000000002,
|
| 707 |
+
"baseVolume": 4564449266000,
|
| 708 |
+
"quoteVolume": 18529598.1387174,
|
| 709 |
+
"usdtVolume": 18529598.1387174,
|
| 710 |
+
"bidPrice": 4.1175e-06,
|
| 711 |
+
"askPrice": 4.1176e-06,
|
| 712 |
+
"fundingRate": 0.0001,
|
| 713 |
+
"openInterest": 7317363215828,
|
| 714 |
+
"scrapedAt": "2026-05-14T16:57:16.885Z"
|
| 715 |
+
},
|
| 716 |
+
{
|
| 717 |
+
"symbol": "SAGAUSDT",
|
| 718 |
+
"category": "usdt-futures",
|
| 719 |
+
"lastPrice": 0.02812,
|
| 720 |
+
"openPrice": 0.0292,
|
| 721 |
+
"high24h": 0.03751,
|
| 722 |
+
"low24h": 0.02687,
|
| 723 |
+
"priceChangePercent24h": -3.034,
|
| 724 |
+
"baseVolume": 599617741.2,
|
| 725 |
+
"quoteVolume": 18385278.868141,
|
| 726 |
+
"usdtVolume": 18385278.868141,
|
| 727 |
+
"bidPrice": 0.02809,
|
| 728 |
+
"askPrice": 0.02811,
|
| 729 |
+
"fundingRate": 5e-05,
|
| 730 |
+
"openInterest": 104284445.1,
|
| 731 |
+
"scrapedAt": "2026-05-14T16:57:16.885Z"
|
| 732 |
+
},
|
| 733 |
+
{
|
| 734 |
+
"symbol": "NEARUSDT",
|
| 735 |
+
"category": "usdt-futures",
|
| 736 |
+
"lastPrice": 1.6042,
|
| 737 |
+
"openPrice": 1.5741,
|
| 738 |
+
"high24h": 1.6336,
|
| 739 |
+
"low24h": 1.5374,
|
| 740 |
+
"priceChangePercent24h": 1.256,
|
| 741 |
+
"baseVolume": 11624652,
|
| 742 |
+
"quoteVolume": 18361707.8451,
|
| 743 |
+
"usdtVolume": 18361707.8451,
|
| 744 |
+
"bidPrice": 1.6046,
|
| 745 |
+
"askPrice": 1.6051,
|
| 746 |
+
"fundingRate": 7.7e-05,
|
| 747 |
+
"openInterest": 10053201,
|
| 748 |
+
"scrapedAt": "2026-05-14T16:57:16.885Z"
|
| 749 |
+
},
|
| 750 |
+
{
|
| 751 |
+
"symbol": "TAOUSDT",
|
| 752 |
+
"category": "usdt-futures",
|
| 753 |
+
"lastPrice": 305.83,
|
| 754 |
+
"openPrice": 294.67,
|
| 755 |
+
"high24h": 308.64,
|
| 756 |
+
"low24h": 292.14,
|
| 757 |
+
"priceChangePercent24h": 4.166,
|
| 758 |
+
"baseVolume": 55478.434,
|
| 759 |
+
"quoteVolume": 16560857.13245,
|
| 760 |
+
"usdtVolume": 16560857.13245,
|
| 761 |
+
"bidPrice": 305.83,
|
| 762 |
+
"askPrice": 305.84,
|
| 763 |
+
"fundingRate": -5.1e-05,
|
| 764 |
+
"openInterest": 95578.023,
|
| 765 |
+
"scrapedAt": "2026-05-14T16:57:16.885Z"
|
| 766 |
+
},
|
| 767 |
+
{
|
| 768 |
+
"symbol": "BILLUSDT",
|
| 769 |
+
"category": "spot",
|
| 770 |
+
"lastPrice": 0.204048,
|
| 771 |
+
"openPrice": 0.171831,
|
| 772 |
+
"high24h": 0.215893,
|
| 773 |
+
"low24h": 0.160024,
|
| 774 |
+
"priceChangePercent24h": 18.749,
|
| 775 |
+
"baseVolume": 89478448.88,
|
| 776 |
+
"quoteVolume": 16332245.38,
|
| 777 |
+
"usdtVolume": 16332245.37471482,
|
| 778 |
+
"bidPrice": 0.203958,
|
| 779 |
+
"askPrice": 0.204129,
|
| 780 |
+
"fundingRate": null,
|
| 781 |
+
"openInterest": null,
|
| 782 |
+
"scrapedAt": "2026-05-14T16:57:15.728Z"
|
| 783 |
+
},
|
| 784 |
+
{
|
| 785 |
+
"symbol": "PIEVERSEUSDT",
|
| 786 |
+
"category": "usdt-futures",
|
| 787 |
+
"lastPrice": 1.02243,
|
| 788 |
+
"openPrice": 0.92368,
|
| 789 |
+
"high24h": 1.07822,
|
| 790 |
+
"low24h": 0.88795,
|
| 791 |
+
"priceChangePercent24h": 14.96,
|
| 792 |
+
"baseVolume": 14804773,
|
| 793 |
+
"quoteVolume": 15080132.53679,
|
| 794 |
+
"usdtVolume": 15080132.53679,
|
| 795 |
+
"bidPrice": 1.023,
|
| 796 |
+
"askPrice": 1.02382,
|
| 797 |
+
"fundingRate": 5e-05,
|
| 798 |
+
"openInterest": 4074274,
|
| 799 |
+
"scrapedAt": "2026-05-14T16:57:16.886Z"
|
| 800 |
+
},
|
| 801 |
+
{
|
| 802 |
+
"symbol": "BNBUSDT",
|
| 803 |
+
"category": "usdt-futures",
|
| 804 |
+
"lastPrice": 679.45,
|
| 805 |
+
"openPrice": 671.18,
|
| 806 |
+
"high24h": 682.42,
|
| 807 |
+
"low24h": 664.73,
|
| 808 |
+
"priceChangePercent24h": 1.4000000000000001,
|
| 809 |
+
"baseVolume": 20918.79,
|
| 810 |
+
"quoteVolume": 14113321.9339,
|
| 811 |
+
"usdtVolume": 14113321.9339,
|
| 812 |
+
"bidPrice": 679.54,
|
| 813 |
+
"askPrice": 679.55,
|
| 814 |
+
"fundingRate": -3.8e-05,
|
| 815 |
+
"openInterest": 73787.94,
|
| 816 |
+
"scrapedAt": "2026-05-14T16:57:16.885Z"
|
| 817 |
+
},
|
| 818 |
+
{
|
| 819 |
+
"symbol": "USDGOUSDT",
|
| 820 |
+
"category": "spot",
|
| 821 |
+
"lastPrice": 1.0001,
|
| 822 |
+
"openPrice": 1,
|
| 823 |
+
"high24h": 1.0003,
|
| 824 |
+
"low24h": 0.9996,
|
| 825 |
+
"priceChangePercent24h": 0.01,
|
| 826 |
+
"baseVolume": 14069961.1392,
|
| 827 |
+
"quoteVolume": 14071124.7332,
|
| 828 |
+
"usdtVolume": 14071124.73313094,
|
| 829 |
+
"bidPrice": 1,
|
| 830 |
+
"askPrice": 1.0001,
|
| 831 |
+
"fundingRate": null,
|
| 832 |
+
"openInterest": null,
|
| 833 |
+
"scrapedAt": "2026-05-14T16:57:15.728Z"
|
| 834 |
+
},
|
| 835 |
+
{
|
| 836 |
+
"symbol": "BGBUSDT",
|
| 837 |
+
"category": "spot",
|
| 838 |
+
"lastPrice": 2.0916,
|
| 839 |
+
"openPrice": 2.0453,
|
| 840 |
+
"high24h": 2.0989,
|
| 841 |
+
"low24h": 2.0418,
|
| 842 |
+
"priceChangePercent24h": 2.2640000000000002,
|
| 843 |
+
"baseVolume": 6677862.3433,
|
| 844 |
+
"quoteVolume": 13864379.6544,
|
| 845 |
+
"usdtVolume": 13864379.65436361,
|
| 846 |
+
"bidPrice": 2.0915,
|
| 847 |
+
"askPrice": 2.0916,
|
| 848 |
+
"fundingRate": null,
|
| 849 |
+
"openInterest": null,
|
| 850 |
+
"scrapedAt": "2026-05-14T16:57:15.727Z"
|
| 851 |
+
},
|
| 852 |
+
{
|
| 853 |
+
"symbol": "AIGENSYNUSDT",
|
| 854 |
+
"category": "spot",
|
| 855 |
+
"lastPrice": 0.047204,
|
| 856 |
+
"openPrice": 0.028433,
|
| 857 |
+
"high24h": 0.051568,
|
| 858 |
+
"low24h": 0.028326,
|
| 859 |
+
"priceChangePercent24h": 66.018,
|
| 860 |
+
"baseVolume": 317863163.9,
|
| 861 |
+
"quoteVolume": 13295942.06,
|
| 862 |
+
"usdtVolume": 13295942.05603272,
|
| 863 |
+
"bidPrice": 0.047137,
|
| 864 |
+
"askPrice": 0.047183,
|
| 865 |
+
"fundingRate": null,
|
| 866 |
+
"openInterest": null,
|
| 867 |
+
"scrapedAt": "2026-05-14T16:57:15.728Z"
|
| 868 |
+
},
|
| 869 |
+
{
|
| 870 |
+
"symbol": "BTCUSDC",
|
| 871 |
+
"category": "spot",
|
| 872 |
+
"lastPrice": 81332.18,
|
| 873 |
+
"openPrice": 79103.81,
|
| 874 |
+
"high24h": 81634.5,
|
| 875 |
+
"low24h": 78907.63,
|
| 876 |
+
"priceChangePercent24h": 2.817,
|
| 877 |
+
"baseVolume": 160.523159,
|
| 878 |
+
"quoteVolume": 12826257.610981,
|
| 879 |
+
"usdtVolume": 12828472.73649988,
|
| 880 |
+
"bidPrice": 81332.17,
|
| 881 |
+
"askPrice": 81332.18,
|
| 882 |
+
"fundingRate": null,
|
| 883 |
+
"openInterest": null,
|
| 884 |
+
"scrapedAt": "2026-05-14T16:57:15.727Z"
|
| 885 |
+
},
|
| 886 |
+
{
|
| 887 |
+
"symbol": "NAORISUSDT",
|
| 888 |
+
"category": "usdt-futures",
|
| 889 |
+
"lastPrice": 0.0806,
|
| 890 |
+
"openPrice": 0.11346,
|
| 891 |
+
"high24h": 0.12806,
|
| 892 |
+
"low24h": 0.07681,
|
| 893 |
+
"priceChangePercent24h": -34.509,
|
| 894 |
+
"baseVolume": 122221334,
|
| 895 |
+
"quoteVolume": 12056246.01188,
|
| 896 |
+
"usdtVolume": 12056246.01188,
|
| 897 |
+
"bidPrice": 0.08056,
|
| 898 |
+
"askPrice": 0.08067,
|
| 899 |
+
"fundingRate": 5e-05,
|
| 900 |
+
"openInterest": 43449849,
|
| 901 |
+
"scrapedAt": "2026-05-14T16:57:16.886Z"
|
| 902 |
+
},
|
| 903 |
+
{
|
| 904 |
+
"symbol": "MLNUSDT",
|
| 905 |
+
"category": "usdt-futures",
|
| 906 |
+
"lastPrice": 3.146,
|
| 907 |
+
"openPrice": 2.183,
|
| 908 |
+
"high24h": 3.744,
|
| 909 |
+
"low24h": 2.132,
|
| 910 |
+
"priceChangePercent24h": 43.391000000000005,
|
| 911 |
+
"baseVolume": 3804927,
|
| 912 |
+
"quoteVolume": 11802805.733,
|
| 913 |
+
"usdtVolume": 11802805.733,
|
| 914 |
+
"bidPrice": 3.148,
|
| 915 |
+
"askPrice": 3.149,
|
| 916 |
+
"fundingRate": -0.000388,
|
| 917 |
+
"openInterest": 271313,
|
| 918 |
+
"scrapedAt": "2026-05-14T16:57:16.886Z"
|
| 919 |
+
},
|
| 920 |
+
{
|
| 921 |
+
"symbol": "LABUSDT",
|
| 922 |
+
"category": "spot",
|
| 923 |
+
"lastPrice": 5.92685,
|
| 924 |
+
"openPrice": 6.14168,
|
| 925 |
+
"high24h": 6.68182,
|
| 926 |
+
"low24h": 4.8022,
|
| 927 |
+
"priceChangePercent24h": -3.4979999999999998,
|
| 928 |
+
"baseVolume": 2021850.46,
|
| 929 |
+
"quoteVolume": 11709231.69,
|
| 930 |
+
"usdtVolume": 11709231.6830948,
|
| 931 |
+
"bidPrice": 5.93053,
|
| 932 |
+
"askPrice": 5.93789,
|
| 933 |
+
"fundingRate": null,
|
| 934 |
+
"openInterest": null,
|
| 935 |
+
"scrapedAt": "2026-05-14T16:57:15.728Z"
|
| 936 |
+
},
|
| 937 |
+
{
|
| 938 |
+
"symbol": "AVAXUSDT",
|
| 939 |
+
"category": "usdt-futures",
|
| 940 |
+
"lastPrice": 9.986,
|
| 941 |
+
"openPrice": 9.753,
|
| 942 |
+
"high24h": 10.103,
|
| 943 |
+
"low24h": 9.624,
|
| 944 |
+
"priceChangePercent24h": 2.463,
|
| 945 |
+
"baseVolume": 1192710.3,
|
| 946 |
+
"quoteVolume": 11696444.7077,
|
| 947 |
+
"usdtVolume": 11696444.7077,
|
| 948 |
+
"bidPrice": 9.985,
|
| 949 |
+
"askPrice": 9.986,
|
| 950 |
+
"fundingRate": 0.0001,
|
| 951 |
+
"openInterest": 2611144.5,
|
| 952 |
+
"scrapedAt": "2026-05-14T16:57:16.885Z"
|
| 953 |
+
},
|
| 954 |
+
{
|
| 955 |
+
"symbol": "AAVEUSDT",
|
| 956 |
+
"category": "usdt-futures",
|
| 957 |
+
"lastPrice": 99.24,
|
| 958 |
+
"openPrice": 96.39,
|
| 959 |
+
"high24h": 99.57,
|
| 960 |
+
"low24h": 94.96,
|
| 961 |
+
"priceChangePercent24h": 3.971,
|
| 962 |
+
"baseVolume": 120638.8,
|
| 963 |
+
"quoteVolume": 11691138.33,
|
| 964 |
+
"usdtVolume": 11691138.33,
|
| 965 |
+
"bidPrice": 99.21,
|
| 966 |
+
"askPrice": 99.23,
|
| 967 |
+
"fundingRate": -9.1e-05,
|
| 968 |
+
"openInterest": 178617.4,
|
| 969 |
+
"scrapedAt": "2026-05-14T16:57:16.885Z"
|
| 970 |
+
},
|
| 971 |
+
{
|
| 972 |
+
"symbol": "MSTRUSDT",
|
| 973 |
+
"category": "usdt-futures",
|
| 974 |
+
"lastPrice": 189.8,
|
| 975 |
+
"openPrice": 178.19,
|
| 976 |
+
"high24h": 191.23,
|
| 977 |
+
"low24h": 174.9,
|
| 978 |
+
"priceChangePercent24h": 6.075,
|
| 979 |
+
"baseVolume": 64293.86,
|
| 980 |
+
"quoteVolume": 11650089.0649,
|
| 981 |
+
"usdtVolume": 11650089.0649,
|
| 982 |
+
"bidPrice": 189.81,
|
| 983 |
+
"askPrice": 189.88,
|
| 984 |
+
"fundingRate": 0,
|
| 985 |
+
"openInterest": 16311.2,
|
| 986 |
+
"scrapedAt": "2026-05-14T16:57:16.886Z"
|
| 987 |
+
},
|
| 988 |
+
{
|
| 989 |
+
"symbol": "PAXGUSDT",
|
| 990 |
+
"category": "usdt-futures",
|
| 991 |
+
"lastPrice": 4671.21,
|
| 992 |
+
"openPrice": 4686.79,
|
| 993 |
+
"high24h": 4708.41,
|
| 994 |
+
"low24h": 4658.3,
|
| 995 |
+
"priceChangePercent24h": -0.4,
|
| 996 |
+
"baseVolume": 2364.539,
|
| 997 |
+
"quoteVolume": 11071326.04019,
|
| 998 |
+
"usdtVolume": 11071326.04019,
|
| 999 |
+
"bidPrice": 4671.2,
|
| 1000 |
+
"askPrice": 4671.21,
|
| 1001 |
+
"fundingRate": 5e-05,
|
| 1002 |
+
"openInterest": 2184.088,
|
| 1003 |
+
"scrapedAt": "2026-05-14T16:57:16.885Z"
|
| 1004 |
+
},
|
| 1005 |
+
{
|
| 1006 |
+
"symbol": "SOXLUSDT",
|
| 1007 |
+
"category": "usdt-futures",
|
| 1008 |
+
"lastPrice": 187.45,
|
| 1009 |
+
"openPrice": 187.72,
|
| 1010 |
+
"high24h": 189.37,
|
| 1011 |
+
"low24h": 175.32,
|
| 1012 |
+
"priceChangePercent24h": 1.6760000000000002,
|
| 1013 |
+
"baseVolume": 54515.94,
|
| 1014 |
+
"quoteVolume": 10122667.1882,
|
| 1015 |
+
"usdtVolume": 10122667.1882,
|
| 1016 |
+
"bidPrice": 187.35,
|
| 1017 |
+
"askPrice": 187.41,
|
| 1018 |
+
"fundingRate": -0.000437,
|
| 1019 |
+
"openInterest": 28209.66,
|
| 1020 |
+
"scrapedAt": "2026-05-14T16:57:16.886Z"
|
| 1021 |
+
},
|
| 1022 |
+
{
|
| 1023 |
+
"symbol": "VVVUSDT",
|
| 1024 |
+
"category": "usdt-futures",
|
| 1025 |
+
"lastPrice": 14.644,
|
| 1026 |
+
"openPrice": 14.347,
|
| 1027 |
+
"high24h": 15.639,
|
| 1028 |
+
"low24h": 12.974,
|
| 1029 |
+
"priceChangePercent24h": 0.861,
|
| 1030 |
+
"baseVolume": 674288.57,
|
| 1031 |
+
"quoteVolume": 9525007.30202,
|
| 1032 |
+
"usdtVolume": 9525007.30202,
|
| 1033 |
+
"bidPrice": 14.621,
|
| 1034 |
+
"askPrice": 14.636,
|
| 1035 |
+
"fundingRate": -0.000839,
|
| 1036 |
+
"openInterest": 235639.84,
|
| 1037 |
+
"scrapedAt": "2026-05-14T16:57:16.886Z"
|
| 1038 |
+
},
|
| 1039 |
+
{
|
| 1040 |
+
"symbol": "SAHARAUSDT",
|
| 1041 |
+
"category": "usdt-futures",
|
| 1042 |
+
"lastPrice": 0.0402,
|
| 1043 |
+
"openPrice": 0.04406,
|
| 1044 |
+
"high24h": 0.04613,
|
| 1045 |
+
"low24h": 0.03965,
|
| 1046 |
+
"priceChangePercent24h": -10.607,
|
| 1047 |
+
"baseVolume": 214807837,
|
| 1048 |
+
"quoteVolume": 9222433.2535,
|
| 1049 |
+
"usdtVolume": 9222433.2535,
|
| 1050 |
+
"bidPrice": 0.0402,
|
| 1051 |
+
"askPrice": 0.04021,
|
| 1052 |
+
"fundingRate": 5e-05,
|
| 1053 |
+
"openInterest": 264637196,
|
| 1054 |
+
"scrapedAt": "2026-05-14T16:57:16.886Z"
|
| 1055 |
+
},
|
| 1056 |
+
{
|
| 1057 |
+
"symbol": "IRYSUSDT",
|
| 1058 |
+
"category": "usdt-futures",
|
| 1059 |
+
"lastPrice": 0.0552,
|
| 1060 |
+
"openPrice": 0.05652,
|
| 1061 |
+
"high24h": 0.06592,
|
| 1062 |
+
"low24h": 0.05025,
|
| 1063 |
+
"priceChangePercent24h": 9.851,
|
| 1064 |
+
"baseVolume": 157485614,
|
| 1065 |
+
"quoteVolume": 9203525.03991,
|
| 1066 |
+
"usdtVolume": 9203525.03991,
|
| 1067 |
+
"bidPrice": 0.05516,
|
| 1068 |
+
"askPrice": 0.05523,
|
| 1069 |
+
"fundingRate": 5e-05,
|
| 1070 |
+
"openInterest": 21935349,
|
| 1071 |
+
"scrapedAt": "2026-05-14T16:57:16.886Z"
|
| 1072 |
+
},
|
| 1073 |
+
{
|
| 1074 |
+
"symbol": "ETHUSD",
|
| 1075 |
+
"category": "coin-futures",
|
| 1076 |
+
"lastPrice": 2297.45,
|
| 1077 |
+
"openPrice": 2255.48,
|
| 1078 |
+
"high24h": 2310,
|
| 1079 |
+
"low24h": 2235.2,
|
| 1080 |
+
"priceChangePercent24h": 2.138,
|
| 1081 |
+
"baseVolume": 4004.37,
|
| 1082 |
+
"quoteVolume": 9074080.0272,
|
| 1083 |
+
"usdtVolume": 9074080.0272,
|
| 1084 |
+
"bidPrice": 2300.62,
|
| 1085 |
+
"askPrice": 2301.25,
|
| 1086 |
+
"fundingRate": -0.000557,
|
| 1087 |
+
"openInterest": 41709.68,
|
| 1088 |
+
"scrapedAt": "2026-05-14T16:57:49.830Z"
|
| 1089 |
+
},
|
| 1090 |
+
{
|
| 1091 |
+
"symbol": "SKYAIUSDT",
|
| 1092 |
+
"category": "spot",
|
| 1093 |
+
"lastPrice": 0.37579,
|
| 1094 |
+
"openPrice": 0.47441,
|
| 1095 |
+
"high24h": 0.48785,
|
| 1096 |
+
"low24h": 0.33302,
|
| 1097 |
+
"priceChangePercent24h": -20.788,
|
| 1098 |
+
"baseVolume": 22601639.3,
|
| 1099 |
+
"quoteVolume": 9050047.45,
|
| 1100 |
+
"usdtVolume": 9050047.4419962,
|
| 1101 |
+
"bidPrice": 0.37579,
|
| 1102 |
+
"askPrice": 0.37589,
|
| 1103 |
+
"fundingRate": null,
|
| 1104 |
+
"openInterest": null,
|
| 1105 |
+
"scrapedAt": "2026-05-14T16:57:15.728Z"
|
| 1106 |
+
},
|
| 1107 |
+
{
|
| 1108 |
+
"symbol": "TRUMPUSDT",
|
| 1109 |
+
"category": "usdt-futures",
|
| 1110 |
+
"lastPrice": 2.408,
|
| 1111 |
+
"openPrice": 2.36,
|
| 1112 |
+
"high24h": 2.416,
|
| 1113 |
+
"low24h": 2.331,
|
| 1114 |
+
"priceChangePercent24h": 1.775,
|
| 1115 |
+
"baseVolume": 3782516.2,
|
| 1116 |
+
"quoteVolume": 8953208.2024,
|
| 1117 |
+
"usdtVolume": 8953208.2024,
|
| 1118 |
+
"bidPrice": 2.408,
|
| 1119 |
+
"askPrice": 2.409,
|
| 1120 |
+
"fundingRate": 5e-05,
|
| 1121 |
+
"openInterest": 9553524.9,
|
| 1122 |
+
"scrapedAt": "2026-05-14T16:57:16.886Z"
|
| 1123 |
+
},
|
| 1124 |
+
{
|
| 1125 |
+
"symbol": "CBRSUSDT",
|
| 1126 |
+
"category": "usdt-futures",
|
| 1127 |
+
"lastPrice": 361,
|
| 1128 |
+
"openPrice": 296.84,
|
| 1129 |
+
"high24h": 395.17,
|
| 1130 |
+
"low24h": 284.81,
|
| 1131 |
+
"priceChangePercent24h": 16.557,
|
| 1132 |
+
"baseVolume": 26050.4,
|
| 1133 |
+
"quoteVolume": 8910697.8477,
|
| 1134 |
+
"usdtVolume": 8910697.8477,
|
| 1135 |
+
"bidPrice": 361.03,
|
| 1136 |
+
"askPrice": 361.52,
|
| 1137 |
+
"fundingRate": 0,
|
| 1138 |
+
"openInterest": 4483.09,
|
| 1139 |
+
"scrapedAt": "2026-05-14T16:57:16.886Z"
|
| 1140 |
+
},
|
| 1141 |
+
{
|
| 1142 |
+
"symbol": "FILUSDT",
|
| 1143 |
+
"category": "usdt-futures",
|
| 1144 |
+
"lastPrice": 1.0543,
|
| 1145 |
+
"openPrice": 1.0468,
|
| 1146 |
+
"high24h": 1.0644,
|
| 1147 |
+
"low24h": 1.0233,
|
| 1148 |
+
"priceChangePercent24h": 0.4,
|
| 1149 |
+
"baseVolume": 8347546.6,
|
| 1150 |
+
"quoteVolume": 8715642.67735,
|
| 1151 |
+
"usdtVolume": 8715642.67735,
|
| 1152 |
+
"bidPrice": 1.0551,
|
| 1153 |
+
"askPrice": 1.0552,
|
| 1154 |
+
"fundingRate": 2.1e-05,
|
| 1155 |
+
"openInterest": 10780314.1,
|
| 1156 |
+
"scrapedAt": "2026-05-14T16:57:16.885Z"
|
| 1157 |
+
},
|
| 1158 |
+
{
|
| 1159 |
+
"symbol": "ENAUSDT",
|
| 1160 |
+
"category": "usdt-futures",
|
| 1161 |
+
"lastPrice": 0.1226,
|
| 1162 |
+
"openPrice": 0.1166,
|
| 1163 |
+
"high24h": 0.1242,
|
| 1164 |
+
"low24h": 0.1149,
|
| 1165 |
+
"priceChangePercent24h": 5.3260000000000005,
|
| 1166 |
+
"baseVolume": 71710163,
|
| 1167 |
+
"quoteVolume": 8496832.257,
|
| 1168 |
+
"usdtVolume": 8496832.257,
|
| 1169 |
+
"bidPrice": 0.1227,
|
| 1170 |
+
"askPrice": 0.1228,
|
| 1171 |
+
"fundingRate": -9.3e-05,
|
| 1172 |
+
"openInterest": 127798050,
|
| 1173 |
+
"scrapedAt": "2026-05-14T16:57:16.885Z"
|
| 1174 |
+
},
|
| 1175 |
+
{
|
| 1176 |
+
"symbol": "RIVERUSDT",
|
| 1177 |
+
"category": "spot",
|
| 1178 |
+
"lastPrice": 7.4238,
|
| 1179 |
+
"openPrice": 6.678,
|
| 1180 |
+
"high24h": 7.865,
|
| 1181 |
+
"low24h": 6.6013,
|
| 1182 |
+
"priceChangePercent24h": 11.168,
|
| 1183 |
+
"baseVolume": 1152457.93,
|
| 1184 |
+
"quoteVolume": 8373783.98,
|
| 1185 |
+
"usdtVolume": 8373783.979035,
|
| 1186 |
+
"bidPrice": 7.4171,
|
| 1187 |
+
"askPrice": 7.4197,
|
| 1188 |
+
"fundingRate": null,
|
| 1189 |
+
"openInterest": null,
|
| 1190 |
+
"scrapedAt": "2026-05-14T16:57:15.728Z"
|
| 1191 |
+
},
|
| 1192 |
+
{
|
| 1193 |
+
"symbol": "PENGUUSDT",
|
| 1194 |
+
"category": "usdt-futures",
|
| 1195 |
+
"lastPrice": 0.00918,
|
| 1196 |
+
"openPrice": 0.008984,
|
| 1197 |
+
"high24h": 0.009291,
|
| 1198 |
+
"low24h": 0.008836,
|
| 1199 |
+
"priceChangePercent24h": 1.537,
|
| 1200 |
+
"baseVolume": 919263213,
|
| 1201 |
+
"quoteVolume": 8305119.834772,
|
| 1202 |
+
"usdtVolume": 8305119.834772,
|
| 1203 |
+
"bidPrice": 0.009183,
|
| 1204 |
+
"askPrice": 0.009184,
|
| 1205 |
+
"fundingRate": -9.2e-05,
|
| 1206 |
+
"openInterest": 876827069,
|
| 1207 |
+
"scrapedAt": "2026-05-14T16:57:16.885Z"
|
| 1208 |
+
},
|
| 1209 |
+
{
|
| 1210 |
+
"symbol": "TIAUSDT",
|
| 1211 |
+
"category": "usdt-futures",
|
| 1212 |
+
"lastPrice": 0.4715,
|
| 1213 |
+
"openPrice": 0.4525,
|
| 1214 |
+
"high24h": 0.4834,
|
| 1215 |
+
"low24h": 0.4429,
|
| 1216 |
+
"priceChangePercent24h": 1.2449999999999999,
|
| 1217 |
+
"baseVolume": 17635183.9,
|
| 1218 |
+
"quoteVolume": 8098202.00623,
|
| 1219 |
+
"usdtVolume": 8098202.00623,
|
| 1220 |
+
"bidPrice": 0.4715,
|
| 1221 |
+
"askPrice": 0.4717,
|
| 1222 |
+
"fundingRate": 5e-05,
|
| 1223 |
+
"openInterest": 7765855.9,
|
| 1224 |
+
"scrapedAt": "2026-05-14T16:57:16.885Z"
|
| 1225 |
+
},
|
| 1226 |
+
{
|
| 1227 |
+
"symbol": "BSBUSDT",
|
| 1228 |
+
"category": "usdt-futures",
|
| 1229 |
+
"lastPrice": 0.41805,
|
| 1230 |
+
"openPrice": 0.44565,
|
| 1231 |
+
"high24h": 0.46793,
|
| 1232 |
+
"low24h": 0.3916,
|
| 1233 |
+
"priceChangePercent24h": -5.296,
|
| 1234 |
+
"baseVolume": 18460155,
|
| 1235 |
+
"quoteVolume": 7960036.80547,
|
| 1236 |
+
"usdtVolume": 7960036.80547,
|
| 1237 |
+
"bidPrice": 0.41798,
|
| 1238 |
+
"askPrice": 0.41825,
|
| 1239 |
+
"fundingRate": -1.4e-05,
|
| 1240 |
+
"openInterest": 8288192,
|
| 1241 |
+
"scrapedAt": "2026-05-14T16:57:16.886Z"
|
| 1242 |
+
},
|
| 1243 |
+
{
|
| 1244 |
+
"symbol": "SUIUSDT",
|
| 1245 |
+
"category": "spot",
|
| 1246 |
+
"lastPrice": 1.2041,
|
| 1247 |
+
"openPrice": 1.2115,
|
| 1248 |
+
"high24h": 1.2306,
|
| 1249 |
+
"low24h": 1.1862,
|
| 1250 |
+
"priceChangePercent24h": -0.611,
|
| 1251 |
+
"baseVolume": 6228416.01,
|
| 1252 |
+
"quoteVolume": 7529782.35,
|
| 1253 |
+
"usdtVolume": 7529782.341622,
|
| 1254 |
+
"bidPrice": 1.2041,
|
| 1255 |
+
"askPrice": 1.2042,
|
| 1256 |
+
"fundingRate": null,
|
| 1257 |
+
"openInterest": null,
|
| 1258 |
+
"scrapedAt": "2026-05-14T16:57:15.727Z"
|
| 1259 |
+
},
|
| 1260 |
+
{
|
| 1261 |
+
"symbol": "LTCUSDT",
|
| 1262 |
+
"category": "usdt-futures",
|
| 1263 |
+
"lastPrice": 57.98,
|
| 1264 |
+
"openPrice": 56.95,
|
| 1265 |
+
"high24h": 58.28,
|
| 1266 |
+
"low24h": 56.51,
|
| 1267 |
+
"priceChangePercent24h": 1.8980000000000001,
|
| 1268 |
+
"baseVolume": 130476,
|
| 1269 |
+
"quoteVolume": 7460884.523,
|
| 1270 |
+
"usdtVolume": 7460884.523,
|
| 1271 |
+
"bidPrice": 57.99,
|
| 1272 |
+
"askPrice": 58,
|
| 1273 |
+
"fundingRate": 0.0001,
|
| 1274 |
+
"openInterest": 438334.9,
|
| 1275 |
+
"scrapedAt": "2026-05-14T16:57:16.885Z"
|
| 1276 |
+
},
|
| 1277 |
+
{
|
| 1278 |
+
"symbol": "WLDUSDT",
|
| 1279 |
+
"category": "usdt-futures",
|
| 1280 |
+
"lastPrice": 0.2623,
|
| 1281 |
+
"openPrice": 0.2594,
|
| 1282 |
+
"high24h": 0.2663,
|
| 1283 |
+
"low24h": 0.2533,
|
| 1284 |
+
"priceChangePercent24h": 1.5879999999999999,
|
| 1285 |
+
"baseVolume": 28593117,
|
| 1286 |
+
"quoteVolume": 7397131.6492,
|
| 1287 |
+
"usdtVolume": 7397131.6492,
|
| 1288 |
+
"bidPrice": 0.2626,
|
| 1289 |
+
"askPrice": 0.2628,
|
| 1290 |
+
"fundingRate": 0.0001,
|
| 1291 |
+
"openInterest": 42136249,
|
| 1292 |
+
"scrapedAt": "2026-05-14T16:57:16.885Z"
|
| 1293 |
+
},
|
| 1294 |
+
{
|
| 1295 |
+
"symbol": "ZECUSDT",
|
| 1296 |
+
"category": "spot",
|
| 1297 |
+
"lastPrice": 534.63,
|
| 1298 |
+
"openPrice": 536.92,
|
| 1299 |
+
"high24h": 559.02,
|
| 1300 |
+
"low24h": 514.18,
|
| 1301 |
+
"priceChangePercent24h": -0.42700000000000005,
|
| 1302 |
+
"baseVolume": 13648.967,
|
| 1303 |
+
"quoteVolume": 7238017.206,
|
| 1304 |
+
"usdtVolume": 7238017.20516,
|
| 1305 |
+
"bidPrice": 534.67,
|
| 1306 |
+
"askPrice": 534.77,
|
| 1307 |
+
"fundingRate": null,
|
| 1308 |
+
"openInterest": null,
|
| 1309 |
+
"scrapedAt": "2026-05-14T16:57:15.728Z"
|
| 1310 |
+
},
|
| 1311 |
+
{
|
| 1312 |
+
"symbol": "COINUSDT",
|
| 1313 |
+
"category": "usdt-futures",
|
| 1314 |
+
"lastPrice": 218.41,
|
| 1315 |
+
"openPrice": 201.99,
|
| 1316 |
+
"high24h": 222.39,
|
| 1317 |
+
"low24h": 195.22,
|
| 1318 |
+
"priceChangePercent24h": 8.155999999999999,
|
| 1319 |
+
"baseVolume": 34849.52,
|
| 1320 |
+
"quoteVolume": 7235279.9748,
|
| 1321 |
+
"usdtVolume": 7235279.9748,
|
| 1322 |
+
"bidPrice": 218.35,
|
| 1323 |
+
"askPrice": 218.36,
|
| 1324 |
+
"fundingRate": 0,
|
| 1325 |
+
"openInterest": 11051.13,
|
| 1326 |
+
"scrapedAt": "2026-05-14T16:57:16.886Z"
|
| 1327 |
+
},
|
| 1328 |
+
{
|
| 1329 |
+
"symbol": "SHIBUSDT",
|
| 1330 |
+
"category": "usdt-futures",
|
| 1331 |
+
"lastPrice": 6.374e-06,
|
| 1332 |
+
"openPrice": 6.271e-06,
|
| 1333 |
+
"high24h": 6.413e-06,
|
| 1334 |
+
"low24h": 6.213e-06,
|
| 1335 |
+
"priceChangePercent24h": 1.659,
|
| 1336 |
+
"baseVolume": 1115081520000,
|
| 1337 |
+
"quoteVolume": 7027884.49166,
|
| 1338 |
+
"usdtVolume": 7027884.49166,
|
| 1339 |
+
"bidPrice": 6.376e-06,
|
| 1340 |
+
"askPrice": 6.377e-06,
|
| 1341 |
+
"fundingRate": 0.0001,
|
| 1342 |
+
"openInterest": 1726708248546,
|
| 1343 |
+
"scrapedAt": "2026-05-14T16:57:16.885Z"
|
| 1344 |
+
},
|
| 1345 |
+
{
|
| 1346 |
+
"symbol": "XAUTUSDT",
|
| 1347 |
+
"category": "spot",
|
| 1348 |
+
"lastPrice": 4672.5,
|
| 1349 |
+
"openPrice": 4691.6,
|
| 1350 |
+
"high24h": 4709.2,
|
| 1351 |
+
"low24h": 4662.4,
|
| 1352 |
+
"priceChangePercent24h": -0.407,
|
| 1353 |
+
"baseVolume": 1483.7045,
|
| 1354 |
+
"quoteVolume": 6952098.3815,
|
| 1355 |
+
"usdtVolume": 6952098.38147,
|
| 1356 |
+
"bidPrice": 4673.2,
|
| 1357 |
+
"askPrice": 4673.3,
|
| 1358 |
+
"fundingRate": null,
|
| 1359 |
+
"openInterest": null,
|
| 1360 |
+
"scrapedAt": "2026-05-14T16:57:15.727Z"
|
| 1361 |
+
},
|
| 1362 |
+
{
|
| 1363 |
+
"symbol": "AINUSDT",
|
| 1364 |
+
"category": "usdt-futures",
|
| 1365 |
+
"lastPrice": 0.10235,
|
| 1366 |
+
"openPrice": 0.13469,
|
| 1367 |
+
"high24h": 0.14225,
|
| 1368 |
+
"low24h": 0.09533,
|
| 1369 |
+
"priceChangePercent24h": -16.855999999999998,
|
| 1370 |
+
"baseVolume": 52916226,
|
| 1371 |
+
"quoteVolume": 6647232.41373,
|
| 1372 |
+
"usdtVolume": 6647232.41373,
|
| 1373 |
+
"bidPrice": 0.1021,
|
| 1374 |
+
"askPrice": 0.10237,
|
| 1375 |
+
"fundingRate": 5e-05,
|
| 1376 |
+
"openInterest": 26921902,
|
| 1377 |
+
"scrapedAt": "2026-05-14T16:57:16.886Z"
|
| 1378 |
+
},
|
| 1379 |
+
{
|
| 1380 |
+
"symbol": "CHIPUSDT",
|
| 1381 |
+
"category": "usdt-futures",
|
| 1382 |
+
"lastPrice": 0.06055,
|
| 1383 |
+
"openPrice": 0.05845,
|
| 1384 |
+
"high24h": 0.06137,
|
| 1385 |
+
"low24h": 0.05652,
|
| 1386 |
+
"priceChangePercent24h": -0.868,
|
| 1387 |
+
"baseVolume": 104970699,
|
| 1388 |
+
"quoteVolume": 6171608.42028,
|
| 1389 |
+
"usdtVolume": 6171608.42028,
|
| 1390 |
+
"bidPrice": 0.06059,
|
| 1391 |
+
"askPrice": 0.06062,
|
| 1392 |
+
"fundingRate": -0.000936,
|
| 1393 |
+
"openInterest": 62726980,
|
| 1394 |
+
"scrapedAt": "2026-05-14T16:57:16.886Z"
|
| 1395 |
+
},
|
| 1396 |
+
{
|
| 1397 |
+
"symbol": "BIOUSDT",
|
| 1398 |
+
"category": "usdt-futures",
|
| 1399 |
+
"lastPrice": 0.04524,
|
| 1400 |
+
"openPrice": 0.04506,
|
| 1401 |
+
"high24h": 0.04651,
|
| 1402 |
+
"low24h": 0.04338,
|
| 1403 |
+
"priceChangePercent24h": -0.154,
|
| 1404 |
+
"baseVolume": 130515449,
|
| 1405 |
+
"quoteVolume": 5863843.65176,
|
| 1406 |
+
"usdtVolume": 5863843.65176,
|
| 1407 |
+
"bidPrice": 0.04526,
|
| 1408 |
+
"askPrice": 0.04527,
|
| 1409 |
+
"fundingRate": -0.00016,
|
| 1410 |
+
"openInterest": 76549730,
|
| 1411 |
+
"scrapedAt": "2026-05-14T16:57:16.885Z"
|
| 1412 |
+
},
|
| 1413 |
+
{
|
| 1414 |
+
"symbol": "DOTUSDT",
|
| 1415 |
+
"category": "usdt-futures",
|
| 1416 |
+
"lastPrice": 1.379,
|
| 1417 |
+
"openPrice": 1.327,
|
| 1418 |
+
"high24h": 1.386,
|
| 1419 |
+
"low24h": 1.311,
|
| 1420 |
+
"priceChangePercent24h": 3.064,
|
| 1421 |
+
"baseVolume": 4264961,
|
| 1422 |
+
"quoteVolume": 5702825.171,
|
| 1423 |
+
"usdtVolume": 5702825.171,
|
| 1424 |
+
"bidPrice": 1.379,
|
| 1425 |
+
"askPrice": 1.38,
|
| 1426 |
+
"fundingRate": 0.0001,
|
| 1427 |
+
"openInterest": 11248840,
|
| 1428 |
+
"scrapedAt": "2026-05-14T16:57:16.885Z"
|
| 1429 |
+
},
|
| 1430 |
+
{
|
| 1431 |
+
"symbol": "DOGEUSDC",
|
| 1432 |
+
"category": "spot",
|
| 1433 |
+
"lastPrice": 0.11541,
|
| 1434 |
+
"openPrice": 0.11206,
|
| 1435 |
+
"high24h": 0.11665,
|
| 1436 |
+
"low24h": 0.11194,
|
| 1437 |
+
"priceChangePercent24h": 2.989,
|
| 1438 |
+
"baseVolume": 48959718.375,
|
| 1439 |
+
"quoteVolume": 5594065.378,
|
| 1440 |
+
"usdtVolume": 5594970.128745677,
|
| 1441 |
+
"bidPrice": 0.11541,
|
| 1442 |
+
"askPrice": 0.11545,
|
| 1443 |
+
"fundingRate": null,
|
| 1444 |
+
"openInterest": null,
|
| 1445 |
+
"scrapedAt": "2026-05-14T16:57:15.727Z"
|
| 1446 |
+
},
|
| 1447 |
+
{
|
| 1448 |
+
"symbol": "APTUSDT",
|
| 1449 |
+
"category": "usdt-futures",
|
| 1450 |
+
"lastPrice": 1.0553,
|
| 1451 |
+
"openPrice": 1.0445,
|
| 1452 |
+
"high24h": 1.068,
|
| 1453 |
+
"low24h": 1.0208,
|
| 1454 |
+
"priceChangePercent24h": 1.17,
|
| 1455 |
+
"baseVolume": 5328053.507,
|
| 1456 |
+
"quoteVolume": 5529455.4497608,
|
| 1457 |
+
"usdtVolume": 5529455.4497608,
|
| 1458 |
+
"bidPrice": 1.056,
|
| 1459 |
+
"askPrice": 1.0563,
|
| 1460 |
+
"fundingRate": 0.0001,
|
| 1461 |
+
"openInterest": 5908193.44,
|
| 1462 |
+
"scrapedAt": "2026-05-14T16:57:16.885Z"
|
| 1463 |
+
},
|
| 1464 |
+
{
|
| 1465 |
+
"symbol": "RKLBUSDT",
|
| 1466 |
+
"category": "usdt-futures",
|
| 1467 |
+
"lastPrice": 131.03,
|
| 1468 |
+
"openPrice": 124.49,
|
| 1469 |
+
"high24h": 133.04,
|
| 1470 |
+
"low24h": 122.03,
|
| 1471 |
+
"priceChangePercent24h": 3.5479999999999996,
|
| 1472 |
+
"baseVolume": 43553.38,
|
| 1473 |
+
"quoteVolume": 5485842.0341,
|
| 1474 |
+
"usdtVolume": 5485842.0341,
|
| 1475 |
+
"bidPrice": 130.98,
|
| 1476 |
+
"askPrice": 131.14,
|
| 1477 |
+
"fundingRate": 0,
|
| 1478 |
+
"openInterest": 11474.49,
|
| 1479 |
+
"scrapedAt": "2026-05-14T16:57:16.886Z"
|
| 1480 |
+
},
|
| 1481 |
+
{
|
| 1482 |
+
"symbol": "OPGUSDT",
|
| 1483 |
+
"category": "usdt-futures",
|
| 1484 |
+
"lastPrice": 0.274,
|
| 1485 |
+
"openPrice": 0.2582,
|
| 1486 |
+
"high24h": 0.2783,
|
| 1487 |
+
"low24h": 0.2465,
|
| 1488 |
+
"priceChangePercent24h": 7.8740000000000006,
|
| 1489 |
+
"baseVolume": 20504700,
|
| 1490 |
+
"quoteVolume": 5330302.5376,
|
| 1491 |
+
"usdtVolume": 5330302.5376,
|
| 1492 |
+
"bidPrice": 0.2739,
|
| 1493 |
+
"askPrice": 0.2741,
|
| 1494 |
+
"fundingRate": 5e-05,
|
| 1495 |
+
"openInterest": 4575960,
|
| 1496 |
+
"scrapedAt": "2026-05-14T16:57:16.886Z"
|
| 1497 |
+
},
|
| 1498 |
+
{
|
| 1499 |
+
"symbol": "PUMPUSDT",
|
| 1500 |
+
"category": "usdt-futures",
|
| 1501 |
+
"lastPrice": 0.001913,
|
| 1502 |
+
"openPrice": 0.001863,
|
| 1503 |
+
"high24h": 0.001928,
|
| 1504 |
+
"low24h": 0.001827,
|
| 1505 |
+
"priceChangePercent24h": 2.081,
|
| 1506 |
+
"baseVolume": 2843345059,
|
| 1507 |
+
"quoteVolume": 5328615.694747,
|
| 1508 |
+
"usdtVolume": 5328615.694747,
|
| 1509 |
+
"bidPrice": 0.001914,
|
| 1510 |
+
"askPrice": 0.001916,
|
| 1511 |
+
"fundingRate": 5e-05,
|
| 1512 |
+
"openInterest": 4363614922,
|
| 1513 |
+
"scrapedAt": "2026-05-14T16:57:16.886Z"
|
| 1514 |
+
},
|
| 1515 |
+
{
|
| 1516 |
+
"symbol": "JCTUSDT",
|
| 1517 |
+
"category": "usdt-futures",
|
| 1518 |
+
"lastPrice": 0.004282,
|
| 1519 |
+
"openPrice": 0.004319,
|
| 1520 |
+
"high24h": 0.004606,
|
| 1521 |
+
"low24h": 0.003754,
|
| 1522 |
+
"priceChangePercent24h": 4.109,
|
| 1523 |
+
"baseVolume": 1211776982,
|
| 1524 |
+
"quoteVolume": 5147377.031895,
|
| 1525 |
+
"usdtVolume": 5147377.031895,
|
| 1526 |
+
"bidPrice": 0.004276,
|
| 1527 |
+
"askPrice": 0.004282,
|
| 1528 |
+
"fundingRate": 9.5e-05,
|
| 1529 |
+
"openInterest": 837755519,
|
| 1530 |
+
"scrapedAt": "2026-05-14T16:57:16.886Z"
|
| 1531 |
+
},
|
| 1532 |
+
{
|
| 1533 |
+
"symbol": "XLMUSDT",
|
| 1534 |
+
"category": "usdt-futures",
|
| 1535 |
+
"lastPrice": 0.16271,
|
| 1536 |
+
"openPrice": 0.15892,
|
| 1537 |
+
"high24h": 0.16471,
|
| 1538 |
+
"low24h": 0.15791,
|
| 1539 |
+
"priceChangePercent24h": 2.3009999999999997,
|
| 1540 |
+
"baseVolume": 31856751,
|
| 1541 |
+
"quoteVolume": 5123035.66492,
|
| 1542 |
+
"usdtVolume": 5123035.66492,
|
| 1543 |
+
"bidPrice": 0.16271,
|
| 1544 |
+
"askPrice": 0.16273,
|
| 1545 |
+
"fundingRate": 0.0001,
|
| 1546 |
+
"openInterest": 88136264,
|
| 1547 |
+
"scrapedAt": "2026-05-14T16:57:16.885Z"
|
| 1548 |
+
},
|
| 1549 |
+
{
|
| 1550 |
+
"symbol": "XMRUSDT",
|
| 1551 |
+
"category": "usdt-futures",
|
| 1552 |
+
"lastPrice": 400.11,
|
| 1553 |
+
"openPrice": 397.95,
|
| 1554 |
+
"high24h": 408.18,
|
| 1555 |
+
"low24h": 389.18,
|
| 1556 |
+
"priceChangePercent24h": -0.828,
|
| 1557 |
+
"baseVolume": 12833.65,
|
| 1558 |
+
"quoteVolume": 5110538.4776,
|
| 1559 |
+
"usdtVolume": 5110538.4776,
|
| 1560 |
+
"bidPrice": 400.15,
|
| 1561 |
+
"askPrice": 400.43,
|
| 1562 |
+
"fundingRate": 0.0001,
|
| 1563 |
+
"openInterest": 8035.9,
|
| 1564 |
+
"scrapedAt": "2026-05-14T16:57:16.885Z"
|
| 1565 |
+
},
|
| 1566 |
+
{
|
| 1567 |
+
"symbol": "NILUSDT",
|
| 1568 |
+
"category": "usdt-futures",
|
| 1569 |
+
"lastPrice": 0.05488,
|
| 1570 |
+
"openPrice": 0.05212,
|
| 1571 |
+
"high24h": 0.05788,
|
| 1572 |
+
"low24h": 0.05041,
|
| 1573 |
+
"priceChangePercent24h": 8.117,
|
| 1574 |
+
"baseVolume": 94690620,
|
| 1575 |
+
"quoteVolume": 5093254.17511,
|
| 1576 |
+
"usdtVolume": 5093254.17511,
|
| 1577 |
+
"bidPrice": 0.05485,
|
| 1578 |
+
"askPrice": 0.05489,
|
| 1579 |
+
"fundingRate": 5e-05,
|
| 1580 |
+
"openInterest": 24452372,
|
| 1581 |
+
"scrapedAt": "2026-05-14T16:57:16.886Z"
|
| 1582 |
+
},
|
| 1583 |
+
{
|
| 1584 |
+
"symbol": "DOGSUSDT",
|
| 1585 |
+
"category": "usdt-futures",
|
| 1586 |
+
"lastPrice": 6.185e-05,
|
| 1587 |
+
"openPrice": 5.978e-05,
|
| 1588 |
+
"high24h": 6.843e-05,
|
| 1589 |
+
"low24h": 5.705e-05,
|
| 1590 |
+
"priceChangePercent24h": 7.303999999999999,
|
| 1591 |
+
"baseVolume": 80390531200,
|
| 1592 |
+
"quoteVolume": 5050479.633069,
|
| 1593 |
+
"usdtVolume": 5050479.633069,
|
| 1594 |
+
"bidPrice": 6.179e-05,
|
| 1595 |
+
"askPrice": 6.182e-05,
|
| 1596 |
+
"fundingRate": 5e-05,
|
| 1597 |
+
"openInterest": 35726603345,
|
| 1598 |
+
"scrapedAt": "2026-05-14T16:57:16.886Z"
|
| 1599 |
+
},
|
| 1600 |
+
{
|
| 1601 |
+
"symbol": "VIRTUALUSDT",
|
| 1602 |
+
"category": "usdt-futures",
|
| 1603 |
+
"lastPrice": 0.794,
|
| 1604 |
+
"openPrice": 0.778,
|
| 1605 |
+
"high24h": 0.8004,
|
| 1606 |
+
"low24h": 0.754,
|
| 1607 |
+
"priceChangePercent24h": 2.4250000000000003,
|
| 1608 |
+
"baseVolume": 6483357,
|
| 1609 |
+
"quoteVolume": 5022875.9471,
|
| 1610 |
+
"usdtVolume": 5022875.9471,
|
| 1611 |
+
"bidPrice": 0.7945,
|
| 1612 |
+
"askPrice": 0.7947,
|
| 1613 |
+
"fundingRate": 3.9e-05,
|
| 1614 |
+
"openInterest": 12006444,
|
| 1615 |
+
"scrapedAt": "2026-05-14T16:57:16.885Z"
|
| 1616 |
+
},
|
| 1617 |
+
{
|
| 1618 |
+
"symbol": "ESPORTSUSDT",
|
| 1619 |
+
"category": "usdt-futures",
|
| 1620 |
+
"lastPrice": 0.72746,
|
| 1621 |
+
"openPrice": 0.56715,
|
| 1622 |
+
"high24h": 0.73683,
|
| 1623 |
+
"low24h": 0.54061,
|
| 1624 |
+
"priceChangePercent24h": 31.479000000000003,
|
| 1625 |
+
"baseVolume": 7677505,
|
| 1626 |
+
"quoteVolume": 4938175.71606,
|
| 1627 |
+
"usdtVolume": 4938175.71606,
|
| 1628 |
+
"bidPrice": 0.72746,
|
| 1629 |
+
"askPrice": 0.72798,
|
| 1630 |
+
"fundingRate": 0.000196,
|
| 1631 |
+
"openInterest": 6789095,
|
| 1632 |
+
"scrapedAt": "2026-05-14T16:57:16.886Z"
|
| 1633 |
+
},
|
| 1634 |
+
{
|
| 1635 |
+
"symbol": "HUSDT",
|
| 1636 |
+
"category": "usdt-futures",
|
| 1637 |
+
"lastPrice": 0.24924,
|
| 1638 |
+
"openPrice": 0.2532,
|
| 1639 |
+
"high24h": 0.26631,
|
| 1640 |
+
"low24h": 0.23914,
|
| 1641 |
+
"priceChangePercent24h": 4.176,
|
| 1642 |
+
"baseVolume": 19436495,
|
| 1643 |
+
"quoteVolume": 4925538.77774,
|
| 1644 |
+
"usdtVolume": 4925538.77774,
|
| 1645 |
+
"bidPrice": 0.24922,
|
| 1646 |
+
"askPrice": 0.24934,
|
| 1647 |
+
"fundingRate": 5e-05,
|
| 1648 |
+
"openInterest": 65092998,
|
| 1649 |
+
"scrapedAt": "2026-05-14T16:57:16.886Z"
|
| 1650 |
+
},
|
| 1651 |
+
{
|
| 1652 |
+
"symbol": "FFUSDT",
|
| 1653 |
+
"category": "usdt-futures",
|
| 1654 |
+
"lastPrice": 0.07812,
|
| 1655 |
+
"openPrice": 0.0845,
|
| 1656 |
+
"high24h": 0.0897,
|
| 1657 |
+
"low24h": 0.07788,
|
| 1658 |
+
"priceChangePercent24h": -11.288,
|
| 1659 |
+
"baseVolume": 57124305,
|
| 1660 |
+
"quoteVolume": 4813577.2579,
|
| 1661 |
+
"usdtVolume": 4813577.2579,
|
| 1662 |
+
"bidPrice": 0.07805,
|
| 1663 |
+
"askPrice": 0.0781,
|
| 1664 |
+
"fundingRate": 5e-05,
|
| 1665 |
+
"openInterest": 49652300,
|
| 1666 |
+
"scrapedAt": "2026-05-14T16:57:16.886Z"
|
| 1667 |
+
},
|
| 1668 |
+
{
|
| 1669 |
+
"symbol": "ETHUSDC",
|
| 1670 |
+
"category": "spot",
|
| 1671 |
+
"lastPrice": 2300.26,
|
| 1672 |
+
"openPrice": 2251.29,
|
| 1673 |
+
"high24h": 2313.23,
|
| 1674 |
+
"low24h": 2238.08,
|
| 1675 |
+
"priceChangePercent24h": 2.175,
|
| 1676 |
+
"baseVolume": 2114.9903,
|
| 1677 |
+
"quoteVolume": 4794165.5108,
|
| 1678 |
+
"usdtVolume": 4794905.504139064,
|
| 1679 |
+
"bidPrice": 2300.59,
|
| 1680 |
+
"askPrice": 2300.6,
|
| 1681 |
+
"fundingRate": null,
|
| 1682 |
+
"openInterest": null,
|
| 1683 |
+
"scrapedAt": "2026-05-14T16:57:15.727Z"
|
| 1684 |
+
},
|
| 1685 |
+
{
|
| 1686 |
+
"symbol": "RTXUSDT",
|
| 1687 |
+
"category": "spot",
|
| 1688 |
+
"lastPrice": 1.3819,
|
| 1689 |
+
"openPrice": 1.3757,
|
| 1690 |
+
"high24h": 1.4034,
|
| 1691 |
+
"low24h": 1.3547,
|
| 1692 |
+
"priceChangePercent24h": 0.451,
|
| 1693 |
+
"baseVolume": 3454318.9,
|
| 1694 |
+
"quoteVolume": 4773473.4,
|
| 1695 |
+
"usdtVolume": 4773473.35494,
|
| 1696 |
+
"bidPrice": 1.3822,
|
| 1697 |
+
"askPrice": 1.3843,
|
| 1698 |
+
"fundingRate": null,
|
| 1699 |
+
"openInterest": null,
|
| 1700 |
+
"scrapedAt": "2026-05-14T16:57:15.728Z"
|
| 1701 |
+
}
|
| 1702 |
+
]
|
sample.parquet
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:0b265e47cdf026a01dedc0c6485a09d1c446d1a859dbee39d7afb206e7c1263f
|
| 3 |
+
size 19895
|