Publish sample dataset for bybit-market-scraper
Browse files- README.md +87 -0
- sample.json +1502 -0
- sample.parquet +3 -0
README.md
ADDED
|
@@ -0,0 +1,87 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
---
|
| 2 |
+
license: cc-by-4.0
|
| 3 |
+
pretty_name: "Bybit Market Scraper"
|
| 4 |
+
tags: [crypto, web-scraping, apify, automation, developer-tools, scraper]
|
| 5 |
+
size_categories:
|
| 6 |
+
- n<1K
|
| 7 |
+
---
|
| 8 |
+
|
| 9 |
+
# Bybit Market Scraper
|
| 10 |
+
|
| 11 |
+
Scrape live market data for all Bybit spot and futures (linear/inverse) pairs in one run — last price, 24h change, high/low, volume, turnover, bid/ask, funding rate and open interest. Schedule it for a continuously fresh price feed.
|
| 12 |
+
|
| 13 |
+
## What the actor scrapes
|
| 14 |
+
|
| 15 |
+
# 🟠 Bybit Market Scraper — Live Spot & Futures Prices, Volume, Funding Rate to JSON & CSV Scrape **live cryptocurrency market data from Bybit**, one of the world's largest crypto exchanges, straight from its official public API. This Bybit scraper returns a clean, structured snapshot of every Bybit **spot and futures** (linear/inverse) trading pair in a single run — last price, 24h change, high/low, volume, turnover, bid/ask, funding rate and open interest. **No login, no API key, no proxy, no b
|
| 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/bybit-market-scraper](https://apify.com/logiover/bybit-market-scraper)
|
| 24 |
+
|
| 25 |
+
## Fields
|
| 26 |
+
|
| 27 |
+
- **`symbol`** — asset ticker symbol
|
| 28 |
+
- **`category`** — category label
|
| 29 |
+
- **`lastPrice`** — field captured by the actor
|
| 30 |
+
- **`priceChangePercent24h`** — field captured by the actor
|
| 31 |
+
- **`highPrice24h`** — field captured by the actor
|
| 32 |
+
- **`lowPrice24h`** — field captured by the actor
|
| 33 |
+
- **`volume24h`** — field captured by the actor
|
| 34 |
+
- **`turnover24h`** — field captured by the actor
|
| 35 |
+
- **`bid1Price`** — field captured by the actor
|
| 36 |
+
- **`ask1Price`** — field captured by the actor
|
| 37 |
+
- **`fundingRate`** — field captured by the actor
|
| 38 |
+
- **`openInterest`** — field captured by the actor
|
| 39 |
+
- **`scrapedAt`** — timestamp the row was scraped
|
| 40 |
+
|
| 41 |
+
## Sample preview
|
| 42 |
+
|
| 43 |
+
```json
|
| 44 |
+
[
|
| 45 |
+
{
|
| 46 |
+
"symbol": "BTCUSDT",
|
| 47 |
+
"category": "linear",
|
| 48 |
+
"lastPrice": 81400.9,
|
| 49 |
+
"priceChangePercent24h": 2.6414,
|
| 50 |
+
"highPrice24h": 81999,
|
| 51 |
+
"lowPrice24h": 78863.2,
|
| 52 |
+
"volume24h": 68547.153,
|
| 53 |
+
"turnover24h": 5498462531.6035,
|
| 54 |
+
"bid1Price": 81400.8,
|
| 55 |
+
"ask1Price": 81400.9,
|
| 56 |
+
"fundingRate": -0.00015458,
|
| 57 |
+
"openInterest": 51571.259,
|
| 58 |
+
"scrapedAt": "2026-05-14T17:32:51.182Z"
|
| 59 |
+
},
|
| 60 |
+
{
|
| 61 |
+
"symbol": "ETHUSDT",
|
| 62 |
+
"category": "linear",
|
| 63 |
+
"lastPrice": 2300.13,
|
| 64 |
+
"priceChangePercent24h": 1.9787,
|
| 65 |
+
"highPrice24h": 2318.71,
|
| 66 |
+
"lowPrice24h": 2237.16,
|
| 67 |
+
"volume24h": 1098973.21,
|
| 68 |
+
"turnover24h": 2498096057.9866,
|
| 69 |
+
"bid1Price": 2300.14,
|
| 70 |
+
"ask1Price": 2300.15,
|
| 71 |
+
"fundingRate": 4.593e-05,
|
| 72 |
+
"openInterest": 778381.07,
|
| 73 |
+
"scrapedAt": "2026-05-14T17:32:51.185Z"
|
| 74 |
+
}
|
| 75 |
+
]
|
| 76 |
+
```
|
| 77 |
+
|
| 78 |
+
## Snapshot stats
|
| 79 |
+
|
| 80 |
+
- Row count in this sample: **100**
|
| 81 |
+
- Data quality flag at capture time: `EXISTING_USED`
|
| 82 |
+
|
| 83 |
+
## License & Attribution
|
| 84 |
+
|
| 85 |
+
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/bybit-market-scraper](https://apify.com/logiover/bybit-market-scraper).
|
| 86 |
+
|
| 87 |
+
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,1502 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
[
|
| 2 |
+
{
|
| 3 |
+
"symbol": "BTCUSDT",
|
| 4 |
+
"category": "linear",
|
| 5 |
+
"lastPrice": 81400.9,
|
| 6 |
+
"priceChangePercent24h": 2.6414,
|
| 7 |
+
"highPrice24h": 81999,
|
| 8 |
+
"lowPrice24h": 78863.2,
|
| 9 |
+
"volume24h": 68547.153,
|
| 10 |
+
"turnover24h": 5498462531.6035,
|
| 11 |
+
"bid1Price": 81400.8,
|
| 12 |
+
"ask1Price": 81400.9,
|
| 13 |
+
"fundingRate": -0.00015458,
|
| 14 |
+
"openInterest": 51571.259,
|
| 15 |
+
"scrapedAt": "2026-05-14T17:32:51.182Z"
|
| 16 |
+
},
|
| 17 |
+
{
|
| 18 |
+
"symbol": "ETHUSDT",
|
| 19 |
+
"category": "linear",
|
| 20 |
+
"lastPrice": 2300.13,
|
| 21 |
+
"priceChangePercent24h": 1.9787,
|
| 22 |
+
"highPrice24h": 2318.71,
|
| 23 |
+
"lowPrice24h": 2237.16,
|
| 24 |
+
"volume24h": 1098973.21,
|
| 25 |
+
"turnover24h": 2498096057.9866,
|
| 26 |
+
"bid1Price": 2300.14,
|
| 27 |
+
"ask1Price": 2300.15,
|
| 28 |
+
"fundingRate": 4.593e-05,
|
| 29 |
+
"openInterest": 778381.07,
|
| 30 |
+
"scrapedAt": "2026-05-14T17:32:51.185Z"
|
| 31 |
+
},
|
| 32 |
+
{
|
| 33 |
+
"symbol": "BTCUSDT",
|
| 34 |
+
"category": "spot",
|
| 35 |
+
"lastPrice": 81468.1,
|
| 36 |
+
"priceChangePercent24h": 2.68,
|
| 37 |
+
"highPrice24h": 82056.2,
|
| 38 |
+
"lowPrice24h": 78923,
|
| 39 |
+
"volume24h": 10095.141046,
|
| 40 |
+
"turnover24h": 809706269.8338815,
|
| 41 |
+
"bid1Price": 81468,
|
| 42 |
+
"ask1Price": 81468.1,
|
| 43 |
+
"fundingRate": null,
|
| 44 |
+
"openInterest": null,
|
| 45 |
+
"scrapedAt": "2026-05-14T17:32:47.482Z"
|
| 46 |
+
},
|
| 47 |
+
{
|
| 48 |
+
"symbol": "SOLUSDT",
|
| 49 |
+
"category": "linear",
|
| 50 |
+
"lastPrice": 92.36,
|
| 51 |
+
"priceChangePercent24h": 1.662,
|
| 52 |
+
"highPrice24h": 93.63,
|
| 53 |
+
"lowPrice24h": 89.75,
|
| 54 |
+
"volume24h": 8550196.9,
|
| 55 |
+
"turnover24h": 782136366.058,
|
| 56 |
+
"bid1Price": 92.35,
|
| 57 |
+
"ask1Price": 92.36,
|
| 58 |
+
"fundingRate": -0.00011025,
|
| 59 |
+
"openInterest": 6990440.9,
|
| 60 |
+
"scrapedAt": "2026-05-14T17:32:51.191Z"
|
| 61 |
+
},
|
| 62 |
+
{
|
| 63 |
+
"symbol": "BILLUSDT",
|
| 64 |
+
"category": "spot",
|
| 65 |
+
"lastPrice": 0.1996,
|
| 66 |
+
"priceChangePercent24h": 8.77,
|
| 67 |
+
"highPrice24h": 0.21521,
|
| 68 |
+
"lowPrice24h": 0.16023,
|
| 69 |
+
"volume24h": 3721892342.4,
|
| 70 |
+
"turnover24h": 690785243.7403989,
|
| 71 |
+
"bid1Price": 0.19959,
|
| 72 |
+
"ask1Price": 0.1996,
|
| 73 |
+
"fundingRate": null,
|
| 74 |
+
"openInterest": null,
|
| 75 |
+
"scrapedAt": "2026-05-14T17:32:47.480Z"
|
| 76 |
+
},
|
| 77 |
+
{
|
| 78 |
+
"symbol": "DOGEUSDT",
|
| 79 |
+
"category": "linear",
|
| 80 |
+
"lastPrice": 0.11522,
|
| 81 |
+
"priceChangePercent24h": 2.3813,
|
| 82 |
+
"highPrice24h": 0.11665,
|
| 83 |
+
"lowPrice24h": 0.11185,
|
| 84 |
+
"volume24h": 3778203507,
|
| 85 |
+
"turnover24h": 431756424.5811,
|
| 86 |
+
"bid1Price": 0.11521,
|
| 87 |
+
"ask1Price": 0.11522,
|
| 88 |
+
"fundingRate": 0.0001,
|
| 89 |
+
"openInterest": 1676761473,
|
| 90 |
+
"scrapedAt": "2026-05-14T17:32:51.185Z"
|
| 91 |
+
},
|
| 92 |
+
{
|
| 93 |
+
"symbol": "XRPUSDT",
|
| 94 |
+
"category": "linear",
|
| 95 |
+
"lastPrice": 1.4755,
|
| 96 |
+
"priceChangePercent24h": 3.3408,
|
| 97 |
+
"highPrice24h": 1.493,
|
| 98 |
+
"lowPrice24h": 1.4148,
|
| 99 |
+
"volume24h": 267839431.1,
|
| 100 |
+
"turnover24h": 387509643.1918,
|
| 101 |
+
"bid1Price": 1.4754,
|
| 102 |
+
"ask1Price": 1.4755,
|
| 103 |
+
"fundingRate": 0.0001,
|
| 104 |
+
"openInterest": 178400633.3,
|
| 105 |
+
"scrapedAt": "2026-05-14T17:32:51.191Z"
|
| 106 |
+
},
|
| 107 |
+
{
|
| 108 |
+
"symbol": "HYPEUSDT",
|
| 109 |
+
"category": "linear",
|
| 110 |
+
"lastPrice": 43.447,
|
| 111 |
+
"priceChangePercent24h": 10.953,
|
| 112 |
+
"highPrice24h": 43.9,
|
| 113 |
+
"lowPrice24h": 38.15,
|
| 114 |
+
"volume24h": 7043549.29,
|
| 115 |
+
"turnover24h": 286551960.4714,
|
| 116 |
+
"bid1Price": 43.455,
|
| 117 |
+
"ask1Price": 43.456,
|
| 118 |
+
"fundingRate": 7.235e-05,
|
| 119 |
+
"openInterest": 5248151.48,
|
| 120 |
+
"scrapedAt": "2026-05-14T17:32:51.185Z"
|
| 121 |
+
},
|
| 122 |
+
{
|
| 123 |
+
"symbol": "USDCUSDT",
|
| 124 |
+
"category": "spot",
|
| 125 |
+
"lastPrice": 0.9999,
|
| 126 |
+
"priceChangePercent24h": -0.04,
|
| 127 |
+
"highPrice24h": 1.0003,
|
| 128 |
+
"lowPrice24h": 0.9999,
|
| 129 |
+
"volume24h": 193103206.1,
|
| 130 |
+
"turnover24h": 193129072.236869,
|
| 131 |
+
"bid1Price": 0.9999,
|
| 132 |
+
"ask1Price": 1,
|
| 133 |
+
"fundingRate": null,
|
| 134 |
+
"openInterest": null,
|
| 135 |
+
"scrapedAt": "2026-05-14T17:32:47.482Z"
|
| 136 |
+
},
|
| 137 |
+
{
|
| 138 |
+
"symbol": "ETHUSDT",
|
| 139 |
+
"category": "spot",
|
| 140 |
+
"lastPrice": 2301.67,
|
| 141 |
+
"priceChangePercent24h": 1.9900000000000002,
|
| 142 |
+
"highPrice24h": 2319.5,
|
| 143 |
+
"lowPrice24h": 2238.64,
|
| 144 |
+
"volume24h": 82194.11283,
|
| 145 |
+
"turnover24h": 186988540.0694964,
|
| 146 |
+
"bid1Price": 2301.67,
|
| 147 |
+
"ask1Price": 2301.68,
|
| 148 |
+
"fundingRate": null,
|
| 149 |
+
"openInterest": null,
|
| 150 |
+
"scrapedAt": "2026-05-14T17:32:47.481Z"
|
| 151 |
+
},
|
| 152 |
+
{
|
| 153 |
+
"symbol": "ZECUSDT",
|
| 154 |
+
"category": "linear",
|
| 155 |
+
"lastPrice": 531.78,
|
| 156 |
+
"priceChangePercent24h": -0.8206,
|
| 157 |
+
"highPrice24h": 558.87,
|
| 158 |
+
"lowPrice24h": 514.2,
|
| 159 |
+
"volume24h": 289759.96,
|
| 160 |
+
"turnover24h": 154509213.5789,
|
| 161 |
+
"bid1Price": 531.78,
|
| 162 |
+
"ask1Price": 531.79,
|
| 163 |
+
"fundingRate": 0.0001,
|
| 164 |
+
"openInterest": 193675.28,
|
| 165 |
+
"scrapedAt": "2026-05-14T17:32:51.191Z"
|
| 166 |
+
},
|
| 167 |
+
{
|
| 168 |
+
"symbol": "LABUSDT",
|
| 169 |
+
"category": "linear",
|
| 170 |
+
"lastPrice": 5.7981,
|
| 171 |
+
"priceChangePercent24h": -4.8056,
|
| 172 |
+
"highPrice24h": 6.6483,
|
| 173 |
+
"lowPrice24h": 4.7606,
|
| 174 |
+
"volume24h": 24530254,
|
| 175 |
+
"turnover24h": 141190764.5389,
|
| 176 |
+
"bid1Price": 5.7994,
|
| 177 |
+
"ask1Price": 5.8014,
|
| 178 |
+
"fundingRate": -0.00046076,
|
| 179 |
+
"openInterest": 8083375,
|
| 180 |
+
"scrapedAt": "2026-05-14T17:32:51.185Z"
|
| 181 |
+
},
|
| 182 |
+
{
|
| 183 |
+
"symbol": "TONUSDT",
|
| 184 |
+
"category": "linear",
|
| 185 |
+
"lastPrice": 2.1249,
|
| 186 |
+
"priceChangePercent24h": -0.009399999999999999,
|
| 187 |
+
"highPrice24h": 2.17,
|
| 188 |
+
"lowPrice24h": 2.0432,
|
| 189 |
+
"volume24h": 56842225.4,
|
| 190 |
+
"turnover24h": 120083317.4464,
|
| 191 |
+
"bid1Price": 2.1249,
|
| 192 |
+
"ask1Price": 2.125,
|
| 193 |
+
"fundingRate": 5e-05,
|
| 194 |
+
"openInterest": 32798943.4,
|
| 195 |
+
"scrapedAt": "2026-05-14T17:32:51.191Z"
|
| 196 |
+
},
|
| 197 |
+
{
|
| 198 |
+
"symbol": "BTCPERP",
|
| 199 |
+
"category": "linear",
|
| 200 |
+
"lastPrice": 81409.9,
|
| 201 |
+
"priceChangePercent24h": 2.6768,
|
| 202 |
+
"highPrice24h": 81975.7,
|
| 203 |
+
"lowPrice24h": 78876.6,
|
| 204 |
+
"volume24h": 1298.891,
|
| 205 |
+
"turnover24h": 104413767.3682,
|
| 206 |
+
"bid1Price": 81391.3,
|
| 207 |
+
"ask1Price": 81391.4,
|
| 208 |
+
"fundingRate": -0.00023513,
|
| 209 |
+
"openInterest": 1225.414,
|
| 210 |
+
"scrapedAt": "2026-05-14T17:32:51.182Z"
|
| 211 |
+
},
|
| 212 |
+
{
|
| 213 |
+
"symbol": "SUIUSDT",
|
| 214 |
+
"category": "linear",
|
| 215 |
+
"lastPrice": 1.1986,
|
| 216 |
+
"priceChangePercent24h": -1.617,
|
| 217 |
+
"highPrice24h": 1.2299,
|
| 218 |
+
"lowPrice24h": 1.1849,
|
| 219 |
+
"volume24h": 82312740,
|
| 220 |
+
"turnover24h": 99387952.053,
|
| 221 |
+
"bid1Price": 1.1985,
|
| 222 |
+
"ask1Price": 1.1986,
|
| 223 |
+
"fundingRate": 1.161e-05,
|
| 224 |
+
"openInterest": 69627020,
|
| 225 |
+
"scrapedAt": "2026-05-14T17:32:51.191Z"
|
| 226 |
+
},
|
| 227 |
+
{
|
| 228 |
+
"symbol": "INJUSDT",
|
| 229 |
+
"category": "linear",
|
| 230 |
+
"lastPrice": 5.133,
|
| 231 |
+
"priceChangePercent24h": -3.2786000000000004,
|
| 232 |
+
"highPrice24h": 5.474,
|
| 233 |
+
"lowPrice24h": 4.906,
|
| 234 |
+
"volume24h": 18798366.8,
|
| 235 |
+
"turnover24h": 96624437.3059,
|
| 236 |
+
"bid1Price": 5.133,
|
| 237 |
+
"ask1Price": 5.134,
|
| 238 |
+
"fundingRate": -7.962e-05,
|
| 239 |
+
"openInterest": 3469432.8,
|
| 240 |
+
"scrapedAt": "2026-05-14T17:32:51.185Z"
|
| 241 |
+
},
|
| 242 |
+
{
|
| 243 |
+
"symbol": "BILLUSDT",
|
| 244 |
+
"category": "linear",
|
| 245 |
+
"lastPrice": 0.19972,
|
| 246 |
+
"priceChangePercent24h": 8.1613,
|
| 247 |
+
"highPrice24h": 0.21629,
|
| 248 |
+
"lowPrice24h": 0.16008,
|
| 249 |
+
"volume24h": 521746260,
|
| 250 |
+
"turnover24h": 95552753.2476,
|
| 251 |
+
"bid1Price": 0.19962,
|
| 252 |
+
"ask1Price": 0.19966,
|
| 253 |
+
"fundingRate": 0.00026188,
|
| 254 |
+
"openInterest": 72959420,
|
| 255 |
+
"scrapedAt": "2026-05-14T17:32:51.182Z"
|
| 256 |
+
},
|
| 257 |
+
{
|
| 258 |
+
"symbol": "AIGENSYNUSDT",
|
| 259 |
+
"category": "linear",
|
| 260 |
+
"lastPrice": 0.04666,
|
| 261 |
+
"priceChangePercent24h": 62.46509999999999,
|
| 262 |
+
"highPrice24h": 0.05288,
|
| 263 |
+
"lowPrice24h": 0.02829,
|
| 264 |
+
"volume24h": 1813889040,
|
| 265 |
+
"turnover24h": 81300531.3087,
|
| 266 |
+
"bid1Price": 0.04666,
|
| 267 |
+
"ask1Price": 0.04668,
|
| 268 |
+
"fundingRate": -0.00089552,
|
| 269 |
+
"openInterest": 122781810,
|
| 270 |
+
"scrapedAt": "2026-05-14T17:32:51.182Z"
|
| 271 |
+
},
|
| 272 |
+
{
|
| 273 |
+
"symbol": "SIRENUSDT",
|
| 274 |
+
"category": "linear",
|
| 275 |
+
"lastPrice": 0.52878,
|
| 276 |
+
"priceChangePercent24h": -56.9513,
|
| 277 |
+
"highPrice24h": 1.24046,
|
| 278 |
+
"lowPrice24h": 0.50172,
|
| 279 |
+
"volume24h": 102755119,
|
| 280 |
+
"turnover24h": 71376311.7068,
|
| 281 |
+
"bid1Price": 0.52877,
|
| 282 |
+
"ask1Price": 0.52878,
|
| 283 |
+
"fundingRate": 5e-05,
|
| 284 |
+
"openInterest": 8685136,
|
| 285 |
+
"scrapedAt": "2026-05-14T17:32:51.191Z"
|
| 286 |
+
},
|
| 287 |
+
{
|
| 288 |
+
"symbol": "1000PEPEUSDT",
|
| 289 |
+
"category": "linear",
|
| 290 |
+
"lastPrice": 0.004117,
|
| 291 |
+
"priceChangePercent24h": 1.4539,
|
| 292 |
+
"highPrice24h": 0.004163,
|
| 293 |
+
"lowPrice24h": 0.003994,
|
| 294 |
+
"volume24h": 17051718500,
|
| 295 |
+
"turnover24h": 69331099.7904,
|
| 296 |
+
"bid1Price": 0.004116,
|
| 297 |
+
"ask1Price": 0.004117,
|
| 298 |
+
"fundingRate": 0.0001,
|
| 299 |
+
"openInterest": 14073168800,
|
| 300 |
+
"scrapedAt": "2026-05-14T17:32:51.182Z"
|
| 301 |
+
},
|
| 302 |
+
{
|
| 303 |
+
"symbol": "XAUTUSDT",
|
| 304 |
+
"category": "linear",
|
| 305 |
+
"lastPrice": 4672,
|
| 306 |
+
"priceChangePercent24h": -0.337,
|
| 307 |
+
"highPrice24h": 4707.9,
|
| 308 |
+
"lowPrice24h": 4659.7,
|
| 309 |
+
"volume24h": 13832.093,
|
| 310 |
+
"turnover24h": 64773589.9764,
|
| 311 |
+
"bid1Price": 4671.8,
|
| 312 |
+
"ask1Price": 4671.9,
|
| 313 |
+
"fundingRate": 3.052e-05,
|
| 314 |
+
"openInterest": 31374.342,
|
| 315 |
+
"scrapedAt": "2026-05-14T17:32:51.191Z"
|
| 316 |
+
},
|
| 317 |
+
{
|
| 318 |
+
"symbol": "ONDOUSDT",
|
| 319 |
+
"category": "linear",
|
| 320 |
+
"lastPrice": 0.3976,
|
| 321 |
+
"priceChangePercent24h": 3.5147,
|
| 322 |
+
"highPrice24h": 0.4154,
|
| 323 |
+
"lowPrice24h": 0.3733,
|
| 324 |
+
"volume24h": 157080704,
|
| 325 |
+
"turnover24h": 61469509.4609,
|
| 326 |
+
"bid1Price": 0.3974,
|
| 327 |
+
"ask1Price": 0.3975,
|
| 328 |
+
"fundingRate": -0.00014197,
|
| 329 |
+
"openInterest": 96840696,
|
| 330 |
+
"scrapedAt": "2026-05-14T17:32:51.186Z"
|
| 331 |
+
},
|
| 332 |
+
{
|
| 333 |
+
"symbol": "QUSDT",
|
| 334 |
+
"category": "linear",
|
| 335 |
+
"lastPrice": 0.021551,
|
| 336 |
+
"priceChangePercent24h": -2.8271,
|
| 337 |
+
"highPrice24h": 0.02579,
|
| 338 |
+
"lowPrice24h": 0.020442,
|
| 339 |
+
"volume24h": 2689127260,
|
| 340 |
+
"turnover24h": 60851939.0826,
|
| 341 |
+
"bid1Price": 0.021564,
|
| 342 |
+
"ask1Price": 0.02158,
|
| 343 |
+
"fundingRate": 5e-05,
|
| 344 |
+
"openInterest": 179870750,
|
| 345 |
+
"scrapedAt": "2026-05-14T17:32:51.186Z"
|
| 346 |
+
},
|
| 347 |
+
{
|
| 348 |
+
"symbol": "NEARUSDT",
|
| 349 |
+
"category": "linear",
|
| 350 |
+
"lastPrice": 1.5883,
|
| 351 |
+
"priceChangePercent24h": -0.6815,
|
| 352 |
+
"highPrice24h": 1.6343,
|
| 353 |
+
"lowPrice24h": 1.5359,
|
| 354 |
+
"volume24h": 36273867.8,
|
| 355 |
+
"turnover24h": 57409505.977,
|
| 356 |
+
"bid1Price": 1.5882,
|
| 357 |
+
"ask1Price": 1.5883,
|
| 358 |
+
"fundingRate": 6.671e-05,
|
| 359 |
+
"openInterest": 39929257,
|
| 360 |
+
"scrapedAt": "2026-05-14T17:32:51.186Z"
|
| 361 |
+
},
|
| 362 |
+
{
|
| 363 |
+
"symbol": "ADAUSDT",
|
| 364 |
+
"category": "linear",
|
| 365 |
+
"lastPrice": 0.2706,
|
| 366 |
+
"priceChangePercent24h": 2.3449,
|
| 367 |
+
"highPrice24h": 0.2734,
|
| 368 |
+
"lowPrice24h": 0.2621,
|
| 369 |
+
"volume24h": 212840402,
|
| 370 |
+
"turnover24h": 56734718.2072,
|
| 371 |
+
"bid1Price": 0.2705,
|
| 372 |
+
"ask1Price": 0.2706,
|
| 373 |
+
"fundingRate": 0.0001,
|
| 374 |
+
"openInterest": 268424605,
|
| 375 |
+
"scrapedAt": "2026-05-14T17:32:51.182Z"
|
| 376 |
+
},
|
| 377 |
+
{
|
| 378 |
+
"symbol": "USDTTRY",
|
| 379 |
+
"category": "spot",
|
| 380 |
+
"lastPrice": 45.39,
|
| 381 |
+
"priceChangePercent24h": -0.02,
|
| 382 |
+
"highPrice24h": 45.46,
|
| 383 |
+
"lowPrice24h": 45.39,
|
| 384 |
+
"volume24h": 1247147.5,
|
| 385 |
+
"turnover24h": 56688695.335,
|
| 386 |
+
"bid1Price": 45.2,
|
| 387 |
+
"ask1Price": 45.47,
|
| 388 |
+
"fundingRate": null,
|
| 389 |
+
"openInterest": null,
|
| 390 |
+
"scrapedAt": "2026-05-14T17:32:47.481Z"
|
| 391 |
+
},
|
| 392 |
+
{
|
| 393 |
+
"symbol": "FARTCOINUSDT",
|
| 394 |
+
"category": "linear",
|
| 395 |
+
"lastPrice": 0.21993,
|
| 396 |
+
"priceChangePercent24h": 0.7743,
|
| 397 |
+
"highPrice24h": 0.22318,
|
| 398 |
+
"lowPrice24h": 0.20978,
|
| 399 |
+
"volume24h": 237486967,
|
| 400 |
+
"turnover24h": 51380108.8499,
|
| 401 |
+
"bid1Price": 0.21987,
|
| 402 |
+
"ask1Price": 0.2199,
|
| 403 |
+
"fundingRate": 5e-05,
|
| 404 |
+
"openInterest": 168665368,
|
| 405 |
+
"scrapedAt": "2026-05-14T17:32:51.185Z"
|
| 406 |
+
},
|
| 407 |
+
{
|
| 408 |
+
"symbol": "ETHPERP",
|
| 409 |
+
"category": "linear",
|
| 410 |
+
"lastPrice": 2299.49,
|
| 411 |
+
"priceChangePercent24h": 2.0153999999999996,
|
| 412 |
+
"highPrice24h": 2318,
|
| 413 |
+
"lowPrice24h": 2237.35,
|
| 414 |
+
"volume24h": 22528.9,
|
| 415 |
+
"turnover24h": 51248369.0181,
|
| 416 |
+
"bid1Price": 2300.22,
|
| 417 |
+
"ask1Price": 2300.43,
|
| 418 |
+
"fundingRate": -4.723e-05,
|
| 419 |
+
"openInterest": 15700.07,
|
| 420 |
+
"scrapedAt": "2026-05-14T17:32:51.185Z"
|
| 421 |
+
},
|
| 422 |
+
{
|
| 423 |
+
"symbol": "TRUTHUSDT",
|
| 424 |
+
"category": "linear",
|
| 425 |
+
"lastPrice": 0.019376,
|
| 426 |
+
"priceChangePercent24h": -20.0824,
|
| 427 |
+
"highPrice24h": 0.025799,
|
| 428 |
+
"lowPrice24h": 0.018709,
|
| 429 |
+
"volume24h": 2227364650,
|
| 430 |
+
"turnover24h": 50062201.5269,
|
| 431 |
+
"bid1Price": 0.01937,
|
| 432 |
+
"ask1Price": 0.019371,
|
| 433 |
+
"fundingRate": 5e-05,
|
| 434 |
+
"openInterest": 205054560,
|
| 435 |
+
"scrapedAt": "2026-05-14T17:32:51.191Z"
|
| 436 |
+
},
|
| 437 |
+
{
|
| 438 |
+
"symbol": "LINKUSDT",
|
| 439 |
+
"category": "linear",
|
| 440 |
+
"lastPrice": 10.592,
|
| 441 |
+
"priceChangePercent24h": 4.1187000000000005,
|
| 442 |
+
"highPrice24h": 10.773,
|
| 443 |
+
"lowPrice24h": 10.086,
|
| 444 |
+
"volume24h": 4786740.7,
|
| 445 |
+
"turnover24h": 49653574.3771,
|
| 446 |
+
"bid1Price": 10.591,
|
| 447 |
+
"ask1Price": 10.592,
|
| 448 |
+
"fundingRate": 0.0001,
|
| 449 |
+
"openInterest": 6569840,
|
| 450 |
+
"scrapedAt": "2026-05-14T17:32:51.185Z"
|
| 451 |
+
},
|
| 452 |
+
{
|
| 453 |
+
"symbol": "HYPEUSDT",
|
| 454 |
+
"category": "spot",
|
| 455 |
+
"lastPrice": 43.54,
|
| 456 |
+
"priceChangePercent24h": 11.16,
|
| 457 |
+
"highPrice24h": 43.93,
|
| 458 |
+
"lowPrice24h": 38.18,
|
| 459 |
+
"volume24h": 1197578.248,
|
| 460 |
+
"turnover24h": 48621120.1977,
|
| 461 |
+
"bid1Price": 43.52,
|
| 462 |
+
"ask1Price": 43.53,
|
| 463 |
+
"fundingRate": null,
|
| 464 |
+
"openInterest": null,
|
| 465 |
+
"scrapedAt": "2026-05-14T17:32:47.482Z"
|
| 466 |
+
},
|
| 467 |
+
{
|
| 468 |
+
"symbol": "UBUSDT",
|
| 469 |
+
"category": "linear",
|
| 470 |
+
"lastPrice": 0.20771,
|
| 471 |
+
"priceChangePercent24h": 2.0086,
|
| 472 |
+
"highPrice24h": 0.23724,
|
| 473 |
+
"lowPrice24h": 0.19027,
|
| 474 |
+
"volume24h": 218024010,
|
| 475 |
+
"turnover24h": 46215385.7131,
|
| 476 |
+
"bid1Price": 0.20775,
|
| 477 |
+
"ask1Price": 0.20776,
|
| 478 |
+
"fundingRate": 5e-05,
|
| 479 |
+
"openInterest": 37818430,
|
| 480 |
+
"scrapedAt": "2026-05-14T17:32:51.191Z"
|
| 481 |
+
},
|
| 482 |
+
{
|
| 483 |
+
"symbol": "BUSDT",
|
| 484 |
+
"category": "linear",
|
| 485 |
+
"lastPrice": 0.4893,
|
| 486 |
+
"priceChangePercent24h": -26.894800000000004,
|
| 487 |
+
"highPrice24h": 0.77743,
|
| 488 |
+
"lowPrice24h": 0.41221,
|
| 489 |
+
"volume24h": 82803979,
|
| 490 |
+
"turnover24h": 44971633.4706,
|
| 491 |
+
"bid1Price": 0.48929,
|
| 492 |
+
"ask1Price": 0.4894,
|
| 493 |
+
"fundingRate": 0.00018074,
|
| 494 |
+
"openInterest": 14925506,
|
| 495 |
+
"scrapedAt": "2026-05-14T17:32:51.182Z"
|
| 496 |
+
},
|
| 497 |
+
{
|
| 498 |
+
"symbol": "BNBUSDT",
|
| 499 |
+
"category": "linear",
|
| 500 |
+
"lastPrice": 681.9,
|
| 501 |
+
"priceChangePercent24h": 1.8369,
|
| 502 |
+
"highPrice24h": 688.1,
|
| 503 |
+
"lowPrice24h": 664.8,
|
| 504 |
+
"volume24h": 65062.59,
|
| 505 |
+
"turnover24h": 43963091.408,
|
| 506 |
+
"bid1Price": 681.9,
|
| 507 |
+
"ask1Price": 682,
|
| 508 |
+
"fundingRate": 0.0001,
|
| 509 |
+
"openInterest": 149880.11,
|
| 510 |
+
"scrapedAt": "2026-05-14T17:32:51.182Z"
|
| 511 |
+
},
|
| 512 |
+
{
|
| 513 |
+
"symbol": "TAOUSDT",
|
| 514 |
+
"category": "linear",
|
| 515 |
+
"lastPrice": 304.88,
|
| 516 |
+
"priceChangePercent24h": 4.0865,
|
| 517 |
+
"highPrice24h": 308.67,
|
| 518 |
+
"lowPrice24h": 292.18,
|
| 519 |
+
"volume24h": 143417.824,
|
| 520 |
+
"turnover24h": 42990296.5517,
|
| 521 |
+
"bid1Price": 304.88,
|
| 522 |
+
"ask1Price": 304.89,
|
| 523 |
+
"fundingRate": -0.00010546,
|
| 524 |
+
"openInterest": 152796.305,
|
| 525 |
+
"scrapedAt": "2026-05-14T17:32:51.191Z"
|
| 526 |
+
},
|
| 527 |
+
{
|
| 528 |
+
"symbol": "VVVUSDT",
|
| 529 |
+
"category": "linear",
|
| 530 |
+
"lastPrice": 14.379,
|
| 531 |
+
"priceChangePercent24h": -1.6820000000000002,
|
| 532 |
+
"highPrice24h": 15.626,
|
| 533 |
+
"lowPrice24h": 13.001,
|
| 534 |
+
"volume24h": 2938446.63,
|
| 535 |
+
"turnover24h": 41515101.5217,
|
| 536 |
+
"bid1Price": 14.375,
|
| 537 |
+
"ask1Price": 14.376,
|
| 538 |
+
"fundingRate": -0.00092675,
|
| 539 |
+
"openInterest": 1288524.57,
|
| 540 |
+
"scrapedAt": "2026-05-14T17:32:51.191Z"
|
| 541 |
+
},
|
| 542 |
+
{
|
| 543 |
+
"symbol": "SOLUSDT",
|
| 544 |
+
"category": "spot",
|
| 545 |
+
"lastPrice": 92.43,
|
| 546 |
+
"priceChangePercent24h": 1.6400000000000001,
|
| 547 |
+
"highPrice24h": 93.66,
|
| 548 |
+
"lowPrice24h": 89.81,
|
| 549 |
+
"volume24h": 453353.0495,
|
| 550 |
+
"turnover24h": 41460177.147515,
|
| 551 |
+
"bid1Price": 92.43,
|
| 552 |
+
"ask1Price": 92.44,
|
| 553 |
+
"fundingRate": null,
|
| 554 |
+
"openInterest": null,
|
| 555 |
+
"scrapedAt": "2026-05-14T17:32:47.482Z"
|
| 556 |
+
},
|
| 557 |
+
{
|
| 558 |
+
"symbol": "XRPUSDT",
|
| 559 |
+
"category": "spot",
|
| 560 |
+
"lastPrice": 1.4762,
|
| 561 |
+
"priceChangePercent24h": 3.32,
|
| 562 |
+
"highPrice24h": 1.4933,
|
| 563 |
+
"lowPrice24h": 1.4157,
|
| 564 |
+
"volume24h": 27735865.88,
|
| 565 |
+
"turnover24h": 40163893.236109,
|
| 566 |
+
"bid1Price": 1.4763,
|
| 567 |
+
"ask1Price": 1.4764,
|
| 568 |
+
"fundingRate": null,
|
| 569 |
+
"openInterest": null,
|
| 570 |
+
"scrapedAt": "2026-05-14T17:32:47.482Z"
|
| 571 |
+
},
|
| 572 |
+
{
|
| 573 |
+
"symbol": "ENAUSDT",
|
| 574 |
+
"category": "linear",
|
| 575 |
+
"lastPrice": 0.12261,
|
| 576 |
+
"priceChangePercent24h": 5.3169,
|
| 577 |
+
"highPrice24h": 0.12568,
|
| 578 |
+
"lowPrice24h": 0.1149,
|
| 579 |
+
"volume24h": 321298821,
|
| 580 |
+
"turnover24h": 38040630.5624,
|
| 581 |
+
"bid1Price": 0.1226,
|
| 582 |
+
"ask1Price": 0.12261,
|
| 583 |
+
"fundingRate": 5e-05,
|
| 584 |
+
"openInterest": 330393483,
|
| 585 |
+
"scrapedAt": "2026-05-14T17:32:51.185Z"
|
| 586 |
+
},
|
| 587 |
+
{
|
| 588 |
+
"symbol": "XAGUSDT",
|
| 589 |
+
"category": "linear",
|
| 590 |
+
"lastPrice": 84.71,
|
| 591 |
+
"priceChangePercent24h": -4.2392,
|
| 592 |
+
"highPrice24h": 88.46,
|
| 593 |
+
"lowPrice24h": 83.85,
|
| 594 |
+
"volume24h": 413120.286,
|
| 595 |
+
"turnover24h": 35677631.5485,
|
| 596 |
+
"bid1Price": 84.71,
|
| 597 |
+
"ask1Price": 84.72,
|
| 598 |
+
"fundingRate": 0,
|
| 599 |
+
"openInterest": 206668.788,
|
| 600 |
+
"scrapedAt": "2026-05-14T17:32:51.191Z"
|
| 601 |
+
},
|
| 602 |
+
{
|
| 603 |
+
"symbol": "AVAXUSDT",
|
| 604 |
+
"category": "linear",
|
| 605 |
+
"lastPrice": 9.953,
|
| 606 |
+
"priceChangePercent24h": 2.1029,
|
| 607 |
+
"highPrice24h": 10.101,
|
| 608 |
+
"lowPrice24h": 9.621,
|
| 609 |
+
"volume24h": 3602605.1,
|
| 610 |
+
"turnover24h": 35415182.0901,
|
| 611 |
+
"bid1Price": 9.952,
|
| 612 |
+
"ask1Price": 9.953,
|
| 613 |
+
"fundingRate": 0.0001,
|
| 614 |
+
"openInterest": 6391943.1,
|
| 615 |
+
"scrapedAt": "2026-05-14T17:32:51.182Z"
|
| 616 |
+
},
|
| 617 |
+
{
|
| 618 |
+
"symbol": "SAGAUSDT",
|
| 619 |
+
"category": "linear",
|
| 620 |
+
"lastPrice": 0.02782,
|
| 621 |
+
"priceChangePercent24h": -4.1681,
|
| 622 |
+
"highPrice24h": 0.03746,
|
| 623 |
+
"lowPrice24h": 0.02679,
|
| 624 |
+
"volume24h": 1064918495,
|
| 625 |
+
"turnover24h": 32603369.1817,
|
| 626 |
+
"bid1Price": 0.02782,
|
| 627 |
+
"ask1Price": 0.02784,
|
| 628 |
+
"fundingRate": 5e-05,
|
| 629 |
+
"openInterest": 113276367.3,
|
| 630 |
+
"scrapedAt": "2026-05-14T17:32:51.186Z"
|
| 631 |
+
},
|
| 632 |
+
{
|
| 633 |
+
"symbol": "PIEVERSEUSDT",
|
| 634 |
+
"category": "linear",
|
| 635 |
+
"lastPrice": 1.0188,
|
| 636 |
+
"priceChangePercent24h": 14.4076,
|
| 637 |
+
"highPrice24h": 1.0791,
|
| 638 |
+
"lowPrice24h": 0.8905,
|
| 639 |
+
"volume24h": 30643357,
|
| 640 |
+
"turnover24h": 31133242.0104,
|
| 641 |
+
"bid1Price": 1.0183,
|
| 642 |
+
"ask1Price": 1.0185,
|
| 643 |
+
"fundingRate": 0.00016144,
|
| 644 |
+
"openInterest": 11033333,
|
| 645 |
+
"scrapedAt": "2026-05-14T17:32:51.186Z"
|
| 646 |
+
},
|
| 647 |
+
{
|
| 648 |
+
"symbol": "MLNUSDT",
|
| 649 |
+
"category": "linear",
|
| 650 |
+
"lastPrice": 3.143,
|
| 651 |
+
"priceChangePercent24h": 42.7338,
|
| 652 |
+
"highPrice24h": 3.764,
|
| 653 |
+
"lowPrice24h": 2.132,
|
| 654 |
+
"volume24h": 9941581.9,
|
| 655 |
+
"turnover24h": 31055791.5174,
|
| 656 |
+
"bid1Price": 3.143,
|
| 657 |
+
"ask1Price": 3.145,
|
| 658 |
+
"fundingRate": 5e-05,
|
| 659 |
+
"openInterest": 516334.6,
|
| 660 |
+
"scrapedAt": "2026-05-14T17:32:51.185Z"
|
| 661 |
+
},
|
| 662 |
+
{
|
| 663 |
+
"symbol": "CLUSDT",
|
| 664 |
+
"category": "linear",
|
| 665 |
+
"lastPrice": 97.29,
|
| 666 |
+
"priceChangePercent24h": -0.40940000000000004,
|
| 667 |
+
"highPrice24h": 98.09,
|
| 668 |
+
"lowPrice24h": 95.15,
|
| 669 |
+
"volume24h": 318957.47,
|
| 670 |
+
"turnover24h": 30893417.8207,
|
| 671 |
+
"bid1Price": 97.28,
|
| 672 |
+
"ask1Price": 97.29,
|
| 673 |
+
"fundingRate": 0,
|
| 674 |
+
"openInterest": 87902.45,
|
| 675 |
+
"scrapedAt": "2026-05-14T17:32:51.183Z"
|
| 676 |
+
},
|
| 677 |
+
{
|
| 678 |
+
"symbol": "XAUUSDT",
|
| 679 |
+
"category": "linear",
|
| 680 |
+
"lastPrice": 4681.43,
|
| 681 |
+
"priceChangePercent24h": -0.3866,
|
| 682 |
+
"highPrice24h": 4721,
|
| 683 |
+
"lowPrice24h": 4671.11,
|
| 684 |
+
"volume24h": 6525.804,
|
| 685 |
+
"turnover24h": 30642760.3567,
|
| 686 |
+
"bid1Price": 4681.42,
|
| 687 |
+
"ask1Price": 4681.43,
|
| 688 |
+
"fundingRate": 0.00017208,
|
| 689 |
+
"openInterest": 5181.688,
|
| 690 |
+
"scrapedAt": "2026-05-14T17:32:51.191Z"
|
| 691 |
+
},
|
| 692 |
+
{
|
| 693 |
+
"symbol": "DOGEUSDT",
|
| 694 |
+
"category": "spot",
|
| 695 |
+
"lastPrice": 0.11529,
|
| 696 |
+
"priceChangePercent24h": 2.19,
|
| 697 |
+
"highPrice24h": 0.11666,
|
| 698 |
+
"lowPrice24h": 0.112,
|
| 699 |
+
"volume24h": 261201668.9,
|
| 700 |
+
"turnover24h": 29877886.803909,
|
| 701 |
+
"bid1Price": 0.11528,
|
| 702 |
+
"ask1Price": 0.11529,
|
| 703 |
+
"fundingRate": null,
|
| 704 |
+
"openInterest": null,
|
| 705 |
+
"scrapedAt": "2026-05-14T17:32:47.480Z"
|
| 706 |
+
},
|
| 707 |
+
{
|
| 708 |
+
"symbol": "RIVERUSDT",
|
| 709 |
+
"category": "linear",
|
| 710 |
+
"lastPrice": 7.419,
|
| 711 |
+
"priceChangePercent24h": 9.6511,
|
| 712 |
+
"highPrice24h": 7.873,
|
| 713 |
+
"lowPrice24h": 6.605,
|
| 714 |
+
"volume24h": 3760758.5,
|
| 715 |
+
"turnover24h": 27369993.8981,
|
| 716 |
+
"bid1Price": 7.419,
|
| 717 |
+
"ask1Price": 7.42,
|
| 718 |
+
"fundingRate": 5e-05,
|
| 719 |
+
"openInterest": 1841302.8,
|
| 720 |
+
"scrapedAt": "2026-05-14T17:32:51.186Z"
|
| 721 |
+
},
|
| 722 |
+
{
|
| 723 |
+
"symbol": "AAVEUSDT",
|
| 724 |
+
"category": "linear",
|
| 725 |
+
"lastPrice": 98.95,
|
| 726 |
+
"priceChangePercent24h": 3.4175999999999997,
|
| 727 |
+
"highPrice24h": 100.35,
|
| 728 |
+
"lowPrice24h": 94.91,
|
| 729 |
+
"volume24h": 264809.94,
|
| 730 |
+
"turnover24h": 25758277.6831,
|
| 731 |
+
"bid1Price": 98.94,
|
| 732 |
+
"ask1Price": 98.95,
|
| 733 |
+
"fundingRate": 0.0001,
|
| 734 |
+
"openInterest": 527600.42,
|
| 735 |
+
"scrapedAt": "2026-05-14T17:32:51.182Z"
|
| 736 |
+
},
|
| 737 |
+
{
|
| 738 |
+
"symbol": "MONUSDT",
|
| 739 |
+
"category": "linear",
|
| 740 |
+
"lastPrice": 0.029996,
|
| 741 |
+
"priceChangePercent24h": 3.5058,
|
| 742 |
+
"highPrice24h": 0.030712,
|
| 743 |
+
"lowPrice24h": 0.028373,
|
| 744 |
+
"volume24h": 777641886,
|
| 745 |
+
"turnover24h": 23029026.6569,
|
| 746 |
+
"bid1Price": 0.029989,
|
| 747 |
+
"ask1Price": 0.029998,
|
| 748 |
+
"fundingRate": -0.00044314,
|
| 749 |
+
"openInterest": 494941110,
|
| 750 |
+
"scrapedAt": "2026-05-14T17:32:51.185Z"
|
| 751 |
+
},
|
| 752 |
+
{
|
| 753 |
+
"symbol": "TRUMPUSDT",
|
| 754 |
+
"category": "linear",
|
| 755 |
+
"lastPrice": 2.405,
|
| 756 |
+
"priceChangePercent24h": 2.1665,
|
| 757 |
+
"highPrice24h": 2.423,
|
| 758 |
+
"lowPrice24h": 2.33,
|
| 759 |
+
"volume24h": 9526070,
|
| 760 |
+
"turnover24h": 22570705.885,
|
| 761 |
+
"bid1Price": 2.404,
|
| 762 |
+
"ask1Price": 2.405,
|
| 763 |
+
"fundingRate": 5e-05,
|
| 764 |
+
"openInterest": 10770350.7,
|
| 765 |
+
"scrapedAt": "2026-05-14T17:32:51.191Z"
|
| 766 |
+
},
|
| 767 |
+
{
|
| 768 |
+
"symbol": "MNTUSDT",
|
| 769 |
+
"category": "spot",
|
| 770 |
+
"lastPrice": 0.6838,
|
| 771 |
+
"priceChangePercent24h": 4.8,
|
| 772 |
+
"highPrice24h": 0.6875,
|
| 773 |
+
"lowPrice24h": 0.6508,
|
| 774 |
+
"volume24h": 33108943.11,
|
| 775 |
+
"turnover24h": 22302396.886171,
|
| 776 |
+
"bid1Price": 0.6837,
|
| 777 |
+
"ask1Price": 0.6838,
|
| 778 |
+
"fundingRate": null,
|
| 779 |
+
"openInterest": null,
|
| 780 |
+
"scrapedAt": "2026-05-14T17:32:47.480Z"
|
| 781 |
+
},
|
| 782 |
+
{
|
| 783 |
+
"symbol": "WLDUSDT",
|
| 784 |
+
"category": "linear",
|
| 785 |
+
"lastPrice": 0.263,
|
| 786 |
+
"priceChangePercent24h": 1.4269,
|
| 787 |
+
"highPrice24h": 0.2665,
|
| 788 |
+
"lowPrice24h": 0.2533,
|
| 789 |
+
"volume24h": 85845317.4,
|
| 790 |
+
"turnover24h": 22214569.5523,
|
| 791 |
+
"bid1Price": 0.2629,
|
| 792 |
+
"ask1Price": 0.263,
|
| 793 |
+
"fundingRate": 0.0001,
|
| 794 |
+
"openInterest": 107152426.2,
|
| 795 |
+
"scrapedAt": "2026-05-14T17:32:51.191Z"
|
| 796 |
+
},
|
| 797 |
+
{
|
| 798 |
+
"symbol": "WIFUSDT",
|
| 799 |
+
"category": "linear",
|
| 800 |
+
"lastPrice": 0.22242,
|
| 801 |
+
"priceChangePercent24h": 2.1071,
|
| 802 |
+
"highPrice24h": 0.2266,
|
| 803 |
+
"lowPrice24h": 0.21216,
|
| 804 |
+
"volume24h": 94243556,
|
| 805 |
+
"turnover24h": 20535931.0422,
|
| 806 |
+
"bid1Price": 0.22243,
|
| 807 |
+
"ask1Price": 0.22244,
|
| 808 |
+
"fundingRate": -5.491e-05,
|
| 809 |
+
"openInterest": 63990090,
|
| 810 |
+
"scrapedAt": "2026-05-14T17:32:51.191Z"
|
| 811 |
+
},
|
| 812 |
+
{
|
| 813 |
+
"symbol": "MNTUSDT",
|
| 814 |
+
"category": "linear",
|
| 815 |
+
"lastPrice": 0.6836,
|
| 816 |
+
"priceChangePercent24h": 4.9431,
|
| 817 |
+
"highPrice24h": 0.6871,
|
| 818 |
+
"lowPrice24h": 0.6161,
|
| 819 |
+
"volume24h": 30299569.1,
|
| 820 |
+
"turnover24h": 20203447.3513,
|
| 821 |
+
"bid1Price": 0.6835,
|
| 822 |
+
"ask1Price": 0.6836,
|
| 823 |
+
"fundingRate": -5.744e-05,
|
| 824 |
+
"openInterest": 55080568.4,
|
| 825 |
+
"scrapedAt": "2026-05-14T17:32:51.185Z"
|
| 826 |
+
},
|
| 827 |
+
{
|
| 828 |
+
"symbol": "TIAUSDT",
|
| 829 |
+
"category": "linear",
|
| 830 |
+
"lastPrice": 0.4723,
|
| 831 |
+
"priceChangePercent24h": 0.19090000000000001,
|
| 832 |
+
"highPrice24h": 0.4834,
|
| 833 |
+
"lowPrice24h": 0.444,
|
| 834 |
+
"volume24h": 43495882,
|
| 835 |
+
"turnover24h": 20061470.3146,
|
| 836 |
+
"bid1Price": 0.4723,
|
| 837 |
+
"ask1Price": 0.4724,
|
| 838 |
+
"fundingRate": -0.0001343,
|
| 839 |
+
"openInterest": 23559300.4,
|
| 840 |
+
"scrapedAt": "2026-05-14T17:32:51.191Z"
|
| 841 |
+
},
|
| 842 |
+
{
|
| 843 |
+
"symbol": "DOTUSDT",
|
| 844 |
+
"category": "linear",
|
| 845 |
+
"lastPrice": 1.3854,
|
| 846 |
+
"priceChangePercent24h": 3.7518999999999996,
|
| 847 |
+
"highPrice24h": 1.4048,
|
| 848 |
+
"lowPrice24h": 1.3124,
|
| 849 |
+
"volume24h": 14832220.3,
|
| 850 |
+
"turnover24h": 19896770.0503,
|
| 851 |
+
"bid1Price": 1.3853,
|
| 852 |
+
"ask1Price": 1.3854,
|
| 853 |
+
"fundingRate": 0.0001,
|
| 854 |
+
"openInterest": 15296185.9,
|
| 855 |
+
"scrapedAt": "2026-05-14T17:32:51.185Z"
|
| 856 |
+
},
|
| 857 |
+
{
|
| 858 |
+
"symbol": "BTCUSDC",
|
| 859 |
+
"category": "spot",
|
| 860 |
+
"lastPrice": 81473.5,
|
| 861 |
+
"priceChangePercent24h": 2.7,
|
| 862 |
+
"highPrice24h": 82051.5,
|
| 863 |
+
"lowPrice24h": 78912.2,
|
| 864 |
+
"volume24h": 236.759363,
|
| 865 |
+
"turnover24h": 18999345.14871369,
|
| 866 |
+
"bid1Price": 81473.1,
|
| 867 |
+
"ask1Price": 81473.2,
|
| 868 |
+
"fundingRate": null,
|
| 869 |
+
"openInterest": null,
|
| 870 |
+
"scrapedAt": "2026-05-14T17:32:47.480Z"
|
| 871 |
+
},
|
| 872 |
+
{
|
| 873 |
+
"symbol": "NAORISUSDT",
|
| 874 |
+
"category": "linear",
|
| 875 |
+
"lastPrice": 0.07997,
|
| 876 |
+
"priceChangePercent24h": -35.0207,
|
| 877 |
+
"highPrice24h": 0.12885,
|
| 878 |
+
"lowPrice24h": 0.0766,
|
| 879 |
+
"volume24h": 188142460,
|
| 880 |
+
"turnover24h": 18724328.1197,
|
| 881 |
+
"bid1Price": 0.07992,
|
| 882 |
+
"ask1Price": 0.08,
|
| 883 |
+
"fundingRate": 5e-05,
|
| 884 |
+
"openInterest": 34302180,
|
| 885 |
+
"scrapedAt": "2026-05-14T17:32:51.186Z"
|
| 886 |
+
},
|
| 887 |
+
{
|
| 888 |
+
"symbol": "SAHARAUSDT",
|
| 889 |
+
"category": "linear",
|
| 890 |
+
"lastPrice": 0.039824,
|
| 891 |
+
"priceChangePercent24h": -11.7141,
|
| 892 |
+
"highPrice24h": 0.046102,
|
| 893 |
+
"lowPrice24h": 0.039272,
|
| 894 |
+
"volume24h": 437533981,
|
| 895 |
+
"turnover24h": 18719311.8446,
|
| 896 |
+
"bid1Price": 0.039826,
|
| 897 |
+
"ask1Price": 0.039827,
|
| 898 |
+
"fundingRate": 5e-05,
|
| 899 |
+
"openInterest": 380882724,
|
| 900 |
+
"scrapedAt": "2026-05-14T17:32:51.191Z"
|
| 901 |
+
},
|
| 902 |
+
{
|
| 903 |
+
"symbol": "LTCUSDT",
|
| 904 |
+
"category": "linear",
|
| 905 |
+
"lastPrice": 58.11,
|
| 906 |
+
"priceChangePercent24h": 2.0906000000000002,
|
| 907 |
+
"highPrice24h": 58.48,
|
| 908 |
+
"lowPrice24h": 56.51,
|
| 909 |
+
"volume24h": 317114.1,
|
| 910 |
+
"turnover24h": 18178760.831,
|
| 911 |
+
"bid1Price": 58.11,
|
| 912 |
+
"ask1Price": 58.12,
|
| 913 |
+
"fundingRate": 0.0001,
|
| 914 |
+
"openInterest": 977739.1,
|
| 915 |
+
"scrapedAt": "2026-05-14T17:32:51.185Z"
|
| 916 |
+
},
|
| 917 |
+
{
|
| 918 |
+
"symbol": "ARBUSDT",
|
| 919 |
+
"category": "linear",
|
| 920 |
+
"lastPrice": 0.13309,
|
| 921 |
+
"priceChangePercent24h": 0.6275000000000001,
|
| 922 |
+
"highPrice24h": 0.13576,
|
| 923 |
+
"lowPrice24h": 0.12819,
|
| 924 |
+
"volume24h": 134574569.2,
|
| 925 |
+
"turnover24h": 17690502.0287,
|
| 926 |
+
"bid1Price": 0.13308,
|
| 927 |
+
"ask1Price": 0.13309,
|
| 928 |
+
"fundingRate": 7.196e-05,
|
| 929 |
+
"openInterest": 256602562.8,
|
| 930 |
+
"scrapedAt": "2026-05-14T17:32:51.182Z"
|
| 931 |
+
},
|
| 932 |
+
{
|
| 933 |
+
"symbol": "VIRTUALUSDT",
|
| 934 |
+
"category": "linear",
|
| 935 |
+
"lastPrice": 0.7904,
|
| 936 |
+
"priceChangePercent24h": 1.7638,
|
| 937 |
+
"highPrice24h": 0.8018,
|
| 938 |
+
"lowPrice24h": 0.7533,
|
| 939 |
+
"volume24h": 22709504,
|
| 940 |
+
"turnover24h": 17632006.2657,
|
| 941 |
+
"bid1Price": 0.7903,
|
| 942 |
+
"ask1Price": 0.7904,
|
| 943 |
+
"fundingRate": -5.855e-05,
|
| 944 |
+
"openInterest": 21116987,
|
| 945 |
+
"scrapedAt": "2026-05-14T17:32:51.191Z"
|
| 946 |
+
},
|
| 947 |
+
{
|
| 948 |
+
"symbol": "AAVEUSDT",
|
| 949 |
+
"category": "spot",
|
| 950 |
+
"lastPrice": 98.93,
|
| 951 |
+
"priceChangePercent24h": 3.18,
|
| 952 |
+
"highPrice24h": 100.4,
|
| 953 |
+
"lowPrice24h": 95,
|
| 954 |
+
"volume24h": 181847.4177,
|
| 955 |
+
"turnover24h": 17583059.054419,
|
| 956 |
+
"bid1Price": 99.04,
|
| 957 |
+
"ask1Price": 99.05,
|
| 958 |
+
"fundingRate": null,
|
| 959 |
+
"openInterest": null,
|
| 960 |
+
"scrapedAt": "2026-05-14T17:32:47.482Z"
|
| 961 |
+
},
|
| 962 |
+
{
|
| 963 |
+
"symbol": "ICPUSDT",
|
| 964 |
+
"category": "linear",
|
| 965 |
+
"lastPrice": 2.874,
|
| 966 |
+
"priceChangePercent24h": -6.3233,
|
| 967 |
+
"highPrice24h": 3.107,
|
| 968 |
+
"lowPrice24h": 2.856,
|
| 969 |
+
"volume24h": 5930972.6,
|
| 970 |
+
"turnover24h": 17538317.6199,
|
| 971 |
+
"bid1Price": 2.874,
|
| 972 |
+
"ask1Price": 2.875,
|
| 973 |
+
"fundingRate": 7.598e-05,
|
| 974 |
+
"openInterest": 6018234.4,
|
| 975 |
+
"scrapedAt": "2026-05-14T17:32:51.185Z"
|
| 976 |
+
},
|
| 977 |
+
{
|
| 978 |
+
"symbol": "PENGUUSDT",
|
| 979 |
+
"category": "linear",
|
| 980 |
+
"lastPrice": 0.009149,
|
| 981 |
+
"priceChangePercent24h": 1.1609,
|
| 982 |
+
"highPrice24h": 0.009289,
|
| 983 |
+
"lowPrice24h": 0.008837,
|
| 984 |
+
"volume24h": 1916010470,
|
| 985 |
+
"turnover24h": 17312247.9786,
|
| 986 |
+
"bid1Price": 0.009149,
|
| 987 |
+
"ask1Price": 0.00915,
|
| 988 |
+
"fundingRate": -0.00021915,
|
| 989 |
+
"openInterest": 1802119610,
|
| 990 |
+
"scrapedAt": "2026-05-14T17:32:51.186Z"
|
| 991 |
+
},
|
| 992 |
+
{
|
| 993 |
+
"symbol": "XMRUSDT",
|
| 994 |
+
"category": "linear",
|
| 995 |
+
"lastPrice": 399.37,
|
| 996 |
+
"priceChangePercent24h": -2.0407,
|
| 997 |
+
"highPrice24h": 407.96,
|
| 998 |
+
"lowPrice24h": 389.64,
|
| 999 |
+
"volume24h": 42983.32,
|
| 1000 |
+
"turnover24h": 17097213.4168,
|
| 1001 |
+
"bid1Price": 399.36,
|
| 1002 |
+
"ask1Price": 399.41,
|
| 1003 |
+
"fundingRate": 0.0001,
|
| 1004 |
+
"openInterest": 58133.96,
|
| 1005 |
+
"scrapedAt": "2026-05-14T17:32:51.191Z"
|
| 1006 |
+
},
|
| 1007 |
+
{
|
| 1008 |
+
"symbol": "MONUSDT",
|
| 1009 |
+
"category": "spot",
|
| 1010 |
+
"lastPrice": 0.03006,
|
| 1011 |
+
"priceChangePercent24h": 3.55,
|
| 1012 |
+
"highPrice24h": 0.03076,
|
| 1013 |
+
"lowPrice24h": 0.02844,
|
| 1014 |
+
"volume24h": 568866468.1,
|
| 1015 |
+
"turnover24h": 16877753.65491,
|
| 1016 |
+
"bid1Price": 0.03006,
|
| 1017 |
+
"ask1Price": 0.03007,
|
| 1018 |
+
"fundingRate": null,
|
| 1019 |
+
"openInterest": null,
|
| 1020 |
+
"scrapedAt": "2026-05-14T17:32:47.480Z"
|
| 1021 |
+
},
|
| 1022 |
+
{
|
| 1023 |
+
"symbol": "HBARUSDT",
|
| 1024 |
+
"category": "linear",
|
| 1025 |
+
"lastPrice": 0.09573,
|
| 1026 |
+
"priceChangePercent24h": 3.7497999999999996,
|
| 1027 |
+
"highPrice24h": 0.09689,
|
| 1028 |
+
"lowPrice24h": 0.09218,
|
| 1029 |
+
"volume24h": 178973029,
|
| 1030 |
+
"turnover24h": 16857409.4264,
|
| 1031 |
+
"bid1Price": 0.09573,
|
| 1032 |
+
"ask1Price": 0.09574,
|
| 1033 |
+
"fundingRate": 0.0001,
|
| 1034 |
+
"openInterest": 237415234,
|
| 1035 |
+
"scrapedAt": "2026-05-14T17:32:51.185Z"
|
| 1036 |
+
},
|
| 1037 |
+
{
|
| 1038 |
+
"symbol": "JTOUSDT",
|
| 1039 |
+
"category": "linear",
|
| 1040 |
+
"lastPrice": 0.5249,
|
| 1041 |
+
"priceChangePercent24h": 8.3832,
|
| 1042 |
+
"highPrice24h": 0.5449,
|
| 1043 |
+
"lowPrice24h": 0.4812,
|
| 1044 |
+
"volume24h": 32675634.9,
|
| 1045 |
+
"turnover24h": 16664134.9704,
|
| 1046 |
+
"bid1Price": 0.5249,
|
| 1047 |
+
"ask1Price": 0.525,
|
| 1048 |
+
"fundingRate": -1.98e-05,
|
| 1049 |
+
"openInterest": 13129981.6,
|
| 1050 |
+
"scrapedAt": "2026-05-14T17:32:51.185Z"
|
| 1051 |
+
},
|
| 1052 |
+
{
|
| 1053 |
+
"symbol": "USDTBRL",
|
| 1054 |
+
"category": "spot",
|
| 1055 |
+
"lastPrice": 4.9885,
|
| 1056 |
+
"priceChangePercent24h": 1.59,
|
| 1057 |
+
"highPrice24h": 5.0305,
|
| 1058 |
+
"lowPrice24h": 4.9099,
|
| 1059 |
+
"volume24h": 3274550,
|
| 1060 |
+
"turnover24h": 16313096.59133,
|
| 1061 |
+
"bid1Price": 4.9881,
|
| 1062 |
+
"ask1Price": 4.9891,
|
| 1063 |
+
"fundingRate": null,
|
| 1064 |
+
"openInterest": null,
|
| 1065 |
+
"scrapedAt": "2026-05-14T17:32:47.479Z"
|
| 1066 |
+
},
|
| 1067 |
+
{
|
| 1068 |
+
"symbol": "KITEUSDT",
|
| 1069 |
+
"category": "linear",
|
| 1070 |
+
"lastPrice": 0.21928,
|
| 1071 |
+
"priceChangePercent24h": 4.6183000000000005,
|
| 1072 |
+
"highPrice24h": 0.2317,
|
| 1073 |
+
"lowPrice24h": 0.2029,
|
| 1074 |
+
"volume24h": 70702301,
|
| 1075 |
+
"turnover24h": 15461769.2106,
|
| 1076 |
+
"bid1Price": 0.21926,
|
| 1077 |
+
"ask1Price": 0.21927,
|
| 1078 |
+
"fundingRate": 5.021e-05,
|
| 1079 |
+
"openInterest": 38046050,
|
| 1080 |
+
"scrapedAt": "2026-05-14T17:32:51.185Z"
|
| 1081 |
+
},
|
| 1082 |
+
{
|
| 1083 |
+
"symbol": "BIOUSDT",
|
| 1084 |
+
"category": "linear",
|
| 1085 |
+
"lastPrice": 0.04509,
|
| 1086 |
+
"priceChangePercent24h": 0,
|
| 1087 |
+
"highPrice24h": 0.04659,
|
| 1088 |
+
"lowPrice24h": 0.04346,
|
| 1089 |
+
"volume24h": 342296079,
|
| 1090 |
+
"turnover24h": 15413781.275,
|
| 1091 |
+
"bid1Price": 0.04509,
|
| 1092 |
+
"ask1Price": 0.0451,
|
| 1093 |
+
"fundingRate": -0.0007159,
|
| 1094 |
+
"openInterest": 192792844,
|
| 1095 |
+
"scrapedAt": "2026-05-14T17:32:51.182Z"
|
| 1096 |
+
},
|
| 1097 |
+
{
|
| 1098 |
+
"symbol": "XPLUSDT",
|
| 1099 |
+
"category": "linear",
|
| 1100 |
+
"lastPrice": 0.09657,
|
| 1101 |
+
"priceChangePercent24h": 2.2229,
|
| 1102 |
+
"highPrice24h": 0.0987,
|
| 1103 |
+
"lowPrice24h": 0.09183,
|
| 1104 |
+
"volume24h": 159728758,
|
| 1105 |
+
"turnover24h": 15196311.9659,
|
| 1106 |
+
"bid1Price": 0.09657,
|
| 1107 |
+
"ask1Price": 0.09658,
|
| 1108 |
+
"fundingRate": 5e-05,
|
| 1109 |
+
"openInterest": 246972430,
|
| 1110 |
+
"scrapedAt": "2026-05-14T17:32:51.191Z"
|
| 1111 |
+
},
|
| 1112 |
+
{
|
| 1113 |
+
"symbol": "IRYSUSDT",
|
| 1114 |
+
"category": "linear",
|
| 1115 |
+
"lastPrice": 0.055121,
|
| 1116 |
+
"priceChangePercent24h": 5.257,
|
| 1117 |
+
"highPrice24h": 0.0656,
|
| 1118 |
+
"lowPrice24h": 0.051307,
|
| 1119 |
+
"volume24h": 239594410,
|
| 1120 |
+
"turnover24h": 13960880.9499,
|
| 1121 |
+
"bid1Price": 0.055125,
|
| 1122 |
+
"ask1Price": 0.055166,
|
| 1123 |
+
"fundingRate": 5e-05,
|
| 1124 |
+
"openInterest": 36197980,
|
| 1125 |
+
"scrapedAt": "2026-05-14T17:32:51.185Z"
|
| 1126 |
+
},
|
| 1127 |
+
{
|
| 1128 |
+
"symbol": "TRXUSDT",
|
| 1129 |
+
"category": "linear",
|
| 1130 |
+
"lastPrice": 0.35416,
|
| 1131 |
+
"priceChangePercent24h": 0.9952000000000001,
|
| 1132 |
+
"highPrice24h": 0.35547,
|
| 1133 |
+
"lowPrice24h": 0.34884,
|
| 1134 |
+
"volume24h": 38496753,
|
| 1135 |
+
"turnover24h": 13580270.9463,
|
| 1136 |
+
"bid1Price": 0.35415,
|
| 1137 |
+
"ask1Price": 0.35416,
|
| 1138 |
+
"fundingRate": 8.176e-05,
|
| 1139 |
+
"openInterest": 113616338,
|
| 1140 |
+
"scrapedAt": "2026-05-14T17:32:51.191Z"
|
| 1141 |
+
},
|
| 1142 |
+
{
|
| 1143 |
+
"symbol": "XLMUSDT",
|
| 1144 |
+
"category": "linear",
|
| 1145 |
+
"lastPrice": 0.16312,
|
| 1146 |
+
"priceChangePercent24h": 2.4172,
|
| 1147 |
+
"highPrice24h": 0.16467,
|
| 1148 |
+
"lowPrice24h": 0.15785,
|
| 1149 |
+
"volume24h": 83868995,
|
| 1150 |
+
"turnover24h": 13480073.2368,
|
| 1151 |
+
"bid1Price": 0.1631,
|
| 1152 |
+
"ask1Price": 0.16311,
|
| 1153 |
+
"fundingRate": 0.0001,
|
| 1154 |
+
"openInterest": 120653515,
|
| 1155 |
+
"scrapedAt": "2026-05-14T17:32:51.191Z"
|
| 1156 |
+
},
|
| 1157 |
+
{
|
| 1158 |
+
"symbol": "USDEUSDT",
|
| 1159 |
+
"category": "spot",
|
| 1160 |
+
"lastPrice": 1.0004,
|
| 1161 |
+
"priceChangePercent24h": 0.01,
|
| 1162 |
+
"highPrice24h": 1.0008,
|
| 1163 |
+
"lowPrice24h": 1.0002,
|
| 1164 |
+
"volume24h": 12990793.51,
|
| 1165 |
+
"turnover24h": 12998163.164891,
|
| 1166 |
+
"bid1Price": 1.0004,
|
| 1167 |
+
"ask1Price": 1.0005,
|
| 1168 |
+
"fundingRate": null,
|
| 1169 |
+
"openInterest": null,
|
| 1170 |
+
"scrapedAt": "2026-05-14T17:32:47.480Z"
|
| 1171 |
+
},
|
| 1172 |
+
{
|
| 1173 |
+
"symbol": "TONUSDT",
|
| 1174 |
+
"category": "spot",
|
| 1175 |
+
"lastPrice": 2.126,
|
| 1176 |
+
"priceChangePercent24h": -0.47000000000000003,
|
| 1177 |
+
"highPrice24h": 2.172,
|
| 1178 |
+
"lowPrice24h": 2.049,
|
| 1179 |
+
"volume24h": 5964021.27,
|
| 1180 |
+
"turnover24h": 12620671.24238,
|
| 1181 |
+
"bid1Price": 2.126,
|
| 1182 |
+
"ask1Price": 2.127,
|
| 1183 |
+
"fundingRate": null,
|
| 1184 |
+
"openInterest": null,
|
| 1185 |
+
"scrapedAt": "2026-05-14T17:32:47.482Z"
|
| 1186 |
+
},
|
| 1187 |
+
{
|
| 1188 |
+
"symbol": "1000BONKUSDT",
|
| 1189 |
+
"category": "linear",
|
| 1190 |
+
"lastPrice": 0.006959,
|
| 1191 |
+
"priceChangePercent24h": 2.3983999999999996,
|
| 1192 |
+
"highPrice24h": 0.007049,
|
| 1193 |
+
"lowPrice24h": 0.006704,
|
| 1194 |
+
"volume24h": 1838686500,
|
| 1195 |
+
"turnover24h": 12619078.9885,
|
| 1196 |
+
"bid1Price": 0.006958,
|
| 1197 |
+
"ask1Price": 0.00696,
|
| 1198 |
+
"fundingRate": -5.407e-05,
|
| 1199 |
+
"openInterest": 1981621800,
|
| 1200 |
+
"scrapedAt": "2026-05-14T17:32:51.182Z"
|
| 1201 |
+
},
|
| 1202 |
+
{
|
| 1203 |
+
"symbol": "HUSDT",
|
| 1204 |
+
"category": "linear",
|
| 1205 |
+
"lastPrice": 0.25186,
|
| 1206 |
+
"priceChangePercent24h": 2.6742,
|
| 1207 |
+
"highPrice24h": 0.26643,
|
| 1208 |
+
"lowPrice24h": 0.24041,
|
| 1209 |
+
"volume24h": 48485360,
|
| 1210 |
+
"turnover24h": 12303660.3155,
|
| 1211 |
+
"bid1Price": 0.25188,
|
| 1212 |
+
"ask1Price": 0.25189,
|
| 1213 |
+
"fundingRate": 5e-05,
|
| 1214 |
+
"openInterest": 128033580,
|
| 1215 |
+
"scrapedAt": "2026-05-14T17:32:51.185Z"
|
| 1216 |
+
},
|
| 1217 |
+
{
|
| 1218 |
+
"symbol": "APTUSDT",
|
| 1219 |
+
"category": "linear",
|
| 1220 |
+
"lastPrice": 1.0527,
|
| 1221 |
+
"priceChangePercent24h": 0.9202999999999999,
|
| 1222 |
+
"highPrice24h": 1.0679,
|
| 1223 |
+
"lowPrice24h": 1.0206,
|
| 1224 |
+
"volume24h": 11578508.37,
|
| 1225 |
+
"turnover24h": 12050003.9945,
|
| 1226 |
+
"bid1Price": 1.0526,
|
| 1227 |
+
"ask1Price": 1.0527,
|
| 1228 |
+
"fundingRate": -1.408e-05,
|
| 1229 |
+
"openInterest": 17633294.53,
|
| 1230 |
+
"scrapedAt": "2026-05-14T17:32:51.182Z"
|
| 1231 |
+
},
|
| 1232 |
+
{
|
| 1233 |
+
"symbol": "OPUSDT",
|
| 1234 |
+
"category": "linear",
|
| 1235 |
+
"lastPrice": 0.14512,
|
| 1236 |
+
"priceChangePercent24h": -0.6163,
|
| 1237 |
+
"highPrice24h": 0.14834,
|
| 1238 |
+
"lowPrice24h": 0.14312,
|
| 1239 |
+
"volume24h": 82422693.9,
|
| 1240 |
+
"turnover24h": 12002360.5545,
|
| 1241 |
+
"bid1Price": 0.14512,
|
| 1242 |
+
"ask1Price": 0.14513,
|
| 1243 |
+
"fundingRate": 0.0001,
|
| 1244 |
+
"openInterest": 121811934,
|
| 1245 |
+
"scrapedAt": "2026-05-14T17:32:51.186Z"
|
| 1246 |
+
},
|
| 1247 |
+
{
|
| 1248 |
+
"symbol": "CRVUSDT",
|
| 1249 |
+
"category": "linear",
|
| 1250 |
+
"lastPrice": 0.2745,
|
| 1251 |
+
"priceChangePercent24h": 2.1965,
|
| 1252 |
+
"highPrice24h": 0.279,
|
| 1253 |
+
"lowPrice24h": 0.2621,
|
| 1254 |
+
"volume24h": 43931958,
|
| 1255 |
+
"turnover24h": 11841987.8797,
|
| 1256 |
+
"bid1Price": 0.2745,
|
| 1257 |
+
"ask1Price": 0.2746,
|
| 1258 |
+
"fundingRate": 6.567e-05,
|
| 1259 |
+
"openInterest": 79845347.4,
|
| 1260 |
+
"scrapedAt": "2026-05-14T17:32:51.185Z"
|
| 1261 |
+
},
|
| 1262 |
+
{
|
| 1263 |
+
"symbol": "XAUTUSDT",
|
| 1264 |
+
"category": "spot",
|
| 1265 |
+
"lastPrice": 4674.2,
|
| 1266 |
+
"priceChangePercent24h": -0.36,
|
| 1267 |
+
"highPrice24h": 4708.3,
|
| 1268 |
+
"lowPrice24h": 4662.5,
|
| 1269 |
+
"volume24h": 2446.68529,
|
| 1270 |
+
"turnover24h": 11459351.69879,
|
| 1271 |
+
"bid1Price": 4674.1,
|
| 1272 |
+
"ask1Price": 4674.2,
|
| 1273 |
+
"fundingRate": null,
|
| 1274 |
+
"openInterest": null,
|
| 1275 |
+
"scrapedAt": "2026-05-14T17:32:47.482Z"
|
| 1276 |
+
},
|
| 1277 |
+
{
|
| 1278 |
+
"symbol": "WLFIUSDT",
|
| 1279 |
+
"category": "linear",
|
| 1280 |
+
"lastPrice": 0.06833,
|
| 1281 |
+
"priceChangePercent24h": 2.613,
|
| 1282 |
+
"highPrice24h": 0.07072,
|
| 1283 |
+
"lowPrice24h": 0.06652,
|
| 1284 |
+
"volume24h": 166293299,
|
| 1285 |
+
"turnover24h": 11366601.1015,
|
| 1286 |
+
"bid1Price": 0.06832,
|
| 1287 |
+
"ask1Price": 0.06833,
|
| 1288 |
+
"fundingRate": -0.00026463,
|
| 1289 |
+
"openInterest": 305580102,
|
| 1290 |
+
"scrapedAt": "2026-05-14T17:32:51.191Z"
|
| 1291 |
+
},
|
| 1292 |
+
{
|
| 1293 |
+
"symbol": "FFUSDT",
|
| 1294 |
+
"category": "linear",
|
| 1295 |
+
"lastPrice": 0.07566,
|
| 1296 |
+
"priceChangePercent24h": -13.373,
|
| 1297 |
+
"highPrice24h": 0.08948,
|
| 1298 |
+
"lowPrice24h": 0.0755,
|
| 1299 |
+
"volume24h": 133658393,
|
| 1300 |
+
"turnover24h": 11138584.4663,
|
| 1301 |
+
"bid1Price": 0.07569,
|
| 1302 |
+
"ask1Price": 0.0757,
|
| 1303 |
+
"fundingRate": 5e-05,
|
| 1304 |
+
"openInterest": 116284443,
|
| 1305 |
+
"scrapedAt": "2026-05-14T17:32:51.185Z"
|
| 1306 |
+
},
|
| 1307 |
+
{
|
| 1308 |
+
"symbol": "CHIPUSDT",
|
| 1309 |
+
"category": "linear",
|
| 1310 |
+
"lastPrice": 0.06031,
|
| 1311 |
+
"priceChangePercent24h": -0.29750000000000004,
|
| 1312 |
+
"highPrice24h": 0.06147,
|
| 1313 |
+
"lowPrice24h": 0.05656,
|
| 1314 |
+
"volume24h": 186734850,
|
| 1315 |
+
"turnover24h": 11015441.9968,
|
| 1316 |
+
"bid1Price": 0.06031,
|
| 1317 |
+
"ask1Price": 0.06032,
|
| 1318 |
+
"fundingRate": -0.00136579,
|
| 1319 |
+
"openInterest": 146479470,
|
| 1320 |
+
"scrapedAt": "2026-05-14T17:32:51.183Z"
|
| 1321 |
+
},
|
| 1322 |
+
{
|
| 1323 |
+
"symbol": "VVVUSDT",
|
| 1324 |
+
"category": "spot",
|
| 1325 |
+
"lastPrice": 14.388,
|
| 1326 |
+
"priceChangePercent24h": -1.8399999999999999,
|
| 1327 |
+
"highPrice24h": 15.615,
|
| 1328 |
+
"lowPrice24h": 13,
|
| 1329 |
+
"volume24h": 775939.46,
|
| 1330 |
+
"turnover24h": 10996313.63789,
|
| 1331 |
+
"bid1Price": 14.383,
|
| 1332 |
+
"ask1Price": 14.392,
|
| 1333 |
+
"fundingRate": null,
|
| 1334 |
+
"openInterest": null,
|
| 1335 |
+
"scrapedAt": "2026-05-14T17:32:47.482Z"
|
| 1336 |
+
},
|
| 1337 |
+
{
|
| 1338 |
+
"symbol": "ESPORTSUSDT",
|
| 1339 |
+
"category": "linear",
|
| 1340 |
+
"lastPrice": 0.72287,
|
| 1341 |
+
"priceChangePercent24h": 25.7471,
|
| 1342 |
+
"highPrice24h": 0.73605,
|
| 1343 |
+
"lowPrice24h": 0.5555,
|
| 1344 |
+
"volume24h": 16398847,
|
| 1345 |
+
"turnover24h": 10776499.8634,
|
| 1346 |
+
"bid1Price": 0.72311,
|
| 1347 |
+
"ask1Price": 0.72343,
|
| 1348 |
+
"fundingRate": 5e-05,
|
| 1349 |
+
"openInterest": 7669545,
|
| 1350 |
+
"scrapedAt": "2026-05-14T17:32:51.185Z"
|
| 1351 |
+
},
|
| 1352 |
+
{
|
| 1353 |
+
"symbol": "ATOMUSDT",
|
| 1354 |
+
"category": "linear",
|
| 1355 |
+
"lastPrice": 2.0403,
|
| 1356 |
+
"priceChangePercent24h": -0.9563,
|
| 1357 |
+
"highPrice24h": 2.0931,
|
| 1358 |
+
"lowPrice24h": 1.9928,
|
| 1359 |
+
"volume24h": 5223257.7,
|
| 1360 |
+
"turnover24h": 10623962.171,
|
| 1361 |
+
"bid1Price": 2.0403,
|
| 1362 |
+
"ask1Price": 2.0404,
|
| 1363 |
+
"fundingRate": 0.0001,
|
| 1364 |
+
"openInterest": 9687790.4,
|
| 1365 |
+
"scrapedAt": "2026-05-14T17:32:51.182Z"
|
| 1366 |
+
},
|
| 1367 |
+
{
|
| 1368 |
+
"symbol": "ATHUSDT",
|
| 1369 |
+
"category": "spot",
|
| 1370 |
+
"lastPrice": 0.006672,
|
| 1371 |
+
"priceChangePercent24h": -0.5700000000000001,
|
| 1372 |
+
"highPrice24h": 0.006754,
|
| 1373 |
+
"lowPrice24h": 0.006317,
|
| 1374 |
+
"volume24h": 1592076820.89,
|
| 1375 |
+
"turnover24h": 10482128.87975788,
|
| 1376 |
+
"bid1Price": 0.00667,
|
| 1377 |
+
"ask1Price": 0.006672,
|
| 1378 |
+
"fundingRate": null,
|
| 1379 |
+
"openInterest": null,
|
| 1380 |
+
"scrapedAt": "2026-05-14T17:32:47.481Z"
|
| 1381 |
+
},
|
| 1382 |
+
{
|
| 1383 |
+
"symbol": "RENDERUSDT",
|
| 1384 |
+
"category": "spot",
|
| 1385 |
+
"lastPrice": 1.918,
|
| 1386 |
+
"priceChangePercent24h": 3.2800000000000002,
|
| 1387 |
+
"highPrice24h": 1.948,
|
| 1388 |
+
"lowPrice24h": 1.834,
|
| 1389 |
+
"volume24h": 5582091.16,
|
| 1390 |
+
"turnover24h": 10431321.59126,
|
| 1391 |
+
"bid1Price": 1.918,
|
| 1392 |
+
"ask1Price": 1.919,
|
| 1393 |
+
"fundingRate": null,
|
| 1394 |
+
"openInterest": null,
|
| 1395 |
+
"scrapedAt": "2026-05-14T17:32:47.480Z"
|
| 1396 |
+
},
|
| 1397 |
+
{
|
| 1398 |
+
"symbol": "CCUSDT",
|
| 1399 |
+
"category": "spot",
|
| 1400 |
+
"lastPrice": 0.16511,
|
| 1401 |
+
"priceChangePercent24h": 8.36,
|
| 1402 |
+
"highPrice24h": 0.17092,
|
| 1403 |
+
"lowPrice24h": 0.15211,
|
| 1404 |
+
"volume24h": 62134062.3,
|
| 1405 |
+
"turnover24h": 10163788.666041,
|
| 1406 |
+
"bid1Price": 0.16516,
|
| 1407 |
+
"ask1Price": 0.16517,
|
| 1408 |
+
"fundingRate": null,
|
| 1409 |
+
"openInterest": null,
|
| 1410 |
+
"scrapedAt": "2026-05-14T17:32:47.480Z"
|
| 1411 |
+
},
|
| 1412 |
+
{
|
| 1413 |
+
"symbol": "SHIB1000USDT",
|
| 1414 |
+
"category": "linear",
|
| 1415 |
+
"lastPrice": 0.006369,
|
| 1416 |
+
"priceChangePercent24h": 1.5465,
|
| 1417 |
+
"highPrice24h": 0.006423,
|
| 1418 |
+
"lowPrice24h": 0.006211,
|
| 1419 |
+
"volume24h": 1582757830,
|
| 1420 |
+
"turnover24h": 9966633.752,
|
| 1421 |
+
"bid1Price": 0.00637,
|
| 1422 |
+
"ask1Price": 0.006371,
|
| 1423 |
+
"fundingRate": 0.0001,
|
| 1424 |
+
"openInterest": 1474679000,
|
| 1425 |
+
"scrapedAt": "2026-05-14T17:32:51.191Z"
|
| 1426 |
+
},
|
| 1427 |
+
{
|
| 1428 |
+
"symbol": "PUMPFUNUSDT",
|
| 1429 |
+
"category": "linear",
|
| 1430 |
+
"lastPrice": 0.0019094,
|
| 1431 |
+
"priceChangePercent24h": 1.8346,
|
| 1432 |
+
"highPrice24h": 0.0019367,
|
| 1433 |
+
"lowPrice24h": 0.0018271,
|
| 1434 |
+
"volume24h": 5303263200,
|
| 1435 |
+
"turnover24h": 9936402.29,
|
| 1436 |
+
"bid1Price": 0.0019098,
|
| 1437 |
+
"ask1Price": 0.0019099,
|
| 1438 |
+
"fundingRate": 5e-05,
|
| 1439 |
+
"openInterest": 10961917700,
|
| 1440 |
+
"scrapedAt": "2026-05-14T17:32:51.186Z"
|
| 1441 |
+
},
|
| 1442 |
+
{
|
| 1443 |
+
"symbol": "JCTUSDT",
|
| 1444 |
+
"category": "linear",
|
| 1445 |
+
"lastPrice": 0.0043488,
|
| 1446 |
+
"priceChangePercent24h": 6.5803,
|
| 1447 |
+
"highPrice24h": 0.0045995,
|
| 1448 |
+
"lowPrice24h": 0.0037482,
|
| 1449 |
+
"volume24h": 2297962300,
|
| 1450 |
+
"turnover24h": 9726798.1591,
|
| 1451 |
+
"bid1Price": 0.0043487,
|
| 1452 |
+
"ask1Price": 0.0043488,
|
| 1453 |
+
"fundingRate": 5e-05,
|
| 1454 |
+
"openInterest": 573041300,
|
| 1455 |
+
"scrapedAt": "2026-05-14T17:32:51.185Z"
|
| 1456 |
+
},
|
| 1457 |
+
{
|
| 1458 |
+
"symbol": "STRKUSDT",
|
| 1459 |
+
"category": "linear",
|
| 1460 |
+
"lastPrice": 0.04688,
|
| 1461 |
+
"priceChangePercent24h": -0.699,
|
| 1462 |
+
"highPrice24h": 0.04774,
|
| 1463 |
+
"lowPrice24h": 0.04548,
|
| 1464 |
+
"volume24h": 203696891,
|
| 1465 |
+
"turnover24h": 9450348.5409,
|
| 1466 |
+
"bid1Price": 0.04687,
|
| 1467 |
+
"ask1Price": 0.04688,
|
| 1468 |
+
"fundingRate": 5e-05,
|
| 1469 |
+
"openInterest": 305928762.5,
|
| 1470 |
+
"scrapedAt": "2026-05-14T17:32:51.191Z"
|
| 1471 |
+
},
|
| 1472 |
+
{
|
| 1473 |
+
"symbol": "PENDLEUSDT",
|
| 1474 |
+
"category": "linear",
|
| 1475 |
+
"lastPrice": 2.0455,
|
| 1476 |
+
"priceChangePercent24h": 1.2573,
|
| 1477 |
+
"highPrice24h": 2.0516,
|
| 1478 |
+
"lowPrice24h": 1.9332,
|
| 1479 |
+
"volume24h": 4761297,
|
| 1480 |
+
"turnover24h": 9442139.1631,
|
| 1481 |
+
"bid1Price": 2.0455,
|
| 1482 |
+
"ask1Price": 2.0456,
|
| 1483 |
+
"fundingRate": 0.0001,
|
| 1484 |
+
"openInterest": 5314235,
|
| 1485 |
+
"scrapedAt": "2026-05-14T17:32:51.186Z"
|
| 1486 |
+
},
|
| 1487 |
+
{
|
| 1488 |
+
"symbol": "PIEVERSEUSDT",
|
| 1489 |
+
"category": "spot",
|
| 1490 |
+
"lastPrice": 1.0165,
|
| 1491 |
+
"priceChangePercent24h": 14.09,
|
| 1492 |
+
"highPrice24h": 1.0767,
|
| 1493 |
+
"lowPrice24h": 0.887,
|
| 1494 |
+
"volume24h": 9362361.2,
|
| 1495 |
+
"turnover24h": 9435503.131458,
|
| 1496 |
+
"bid1Price": 1.0155,
|
| 1497 |
+
"ask1Price": 1.0165,
|
| 1498 |
+
"fundingRate": null,
|
| 1499 |
+
"openInterest": null,
|
| 1500 |
+
"scrapedAt": "2026-05-14T17:32:47.480Z"
|
| 1501 |
+
}
|
| 1502 |
+
]
|
sample.parquet
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:819895096e48a40a583468b6e65e9e2b3f8587309b075a01f7c71e9fe95ca874
|
| 3 |
+
size 17188
|