Publish sample dataset for okx-market-scraper
Browse files- README.md +87 -0
- sample.json +452 -0
- sample.parquet +3 -0
README.md
ADDED
|
@@ -0,0 +1,87 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
---
|
| 2 |
+
license: cc-by-4.0
|
| 3 |
+
pretty_name: "OKX Market Scraper"
|
| 4 |
+
tags: [crypto, web-scraping, apify, automation, developer-tools, scraper]
|
| 5 |
+
size_categories:
|
| 6 |
+
- n<1K
|
| 7 |
+
---
|
| 8 |
+
|
| 9 |
+
# OKX Market Scraper
|
| 10 |
+
|
| 11 |
+
Scrape live market data for all OKX spot and futures (swap) instruments in one run — last price, 24h change, high/low, volume, bid/ask and more. Schedule it for a continuously fresh price feed.
|
| 12 |
+
|
| 13 |
+
## What the actor scrapes
|
| 14 |
+
|
| 15 |
+
# 🟢 OKX Market Scraper — Live OKX Spot & Futures Prices, Volume & Market Data Scrape **live market data from OKX** — one of the world's leading cryptocurrency exchanges — straight from its official public API. This **OKX scraper** delivers a clean, structured snapshot of every OKX spot and futures (swap) instrument: last price, 24h change, high/low, 24h volume and bid/ask spread. Export to JSON, CSV or Excel. Crypto prices move every second, so this Actor is built for **scheduled, recurring use*
|
| 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/okx-market-scraper](https://apify.com/logiover/okx-market-scraper)
|
| 24 |
+
|
| 25 |
+
## Fields
|
| 26 |
+
|
| 27 |
+
- **`instId`** — identifier
|
| 28 |
+
- **`instType`** — field captured by the actor
|
| 29 |
+
- **`lastPrice`** — field captured by the actor
|
| 30 |
+
- **`open24h`** — 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 |
+
- **`volume24h`** — field captured by the actor
|
| 35 |
+
- **`volumeCcy24h`** — field captured by the actor
|
| 36 |
+
- **`bidPrice`** — field captured by the actor
|
| 37 |
+
- **`askPrice`** — field captured by the actor
|
| 38 |
+
- **`timestamp`** — field captured by the actor
|
| 39 |
+
- **`scrapedAt`** — timestamp the row was scraped
|
| 40 |
+
|
| 41 |
+
## Sample preview
|
| 42 |
+
|
| 43 |
+
```json
|
| 44 |
+
[
|
| 45 |
+
{
|
| 46 |
+
"instId": "USDT-TRY",
|
| 47 |
+
"instType": "SPOT",
|
| 48 |
+
"lastPrice": 45.43,
|
| 49 |
+
"open24h": 45.42,
|
| 50 |
+
"high24h": 45.44,
|
| 51 |
+
"low24h": 45.4,
|
| 52 |
+
"priceChangePercent24h": 0.022016732716860436,
|
| 53 |
+
"volume24h": 26322302.3135,
|
| 54 |
+
"volumeCcy24h": 1195578872.049663,
|
| 55 |
+
"bidPrice": 45.43,
|
| 56 |
+
"askPrice": 45.44,
|
| 57 |
+
"timestamp": "2026-05-14T15:50:05.214Z",
|
| 58 |
+
"scrapedAt": "2026-05-14T15:50:07.106Z"
|
| 59 |
+
},
|
| 60 |
+
{
|
| 61 |
+
"instId": "BTC-USDT",
|
| 62 |
+
"instType": "SPOT",
|
| 63 |
+
"lastPrice": 81078.2,
|
| 64 |
+
"open24h": 79150,
|
| 65 |
+
"high24h": 81155,
|
| 66 |
+
"low24h": 78760.1,
|
| 67 |
+
"priceChangePercent24h": 2.43613392293114,
|
| 68 |
+
"volume24h": 6945.02742322,
|
| 69 |
+
"volumeCcy24h": 553690076.6528996,
|
| 70 |
+
"bidPrice": 81078.1,
|
| 71 |
+
"askPrice": 81078.2,
|
| 72 |
+
"timestamp": "2026-05-14T15:50:06.015Z",
|
| 73 |
+
"scrapedAt": "2026-05-14T15:50:07.104Z"
|
| 74 |
+
}
|
| 75 |
+
]
|
| 76 |
+
```
|
| 77 |
+
|
| 78 |
+
## Snapshot stats
|
| 79 |
+
|
| 80 |
+
- Row count in this sample: **30**
|
| 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/okx-market-scraper](https://apify.com/logiover/okx-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,452 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
[
|
| 2 |
+
{
|
| 3 |
+
"instId": "USDT-TRY",
|
| 4 |
+
"instType": "SPOT",
|
| 5 |
+
"lastPrice": 45.43,
|
| 6 |
+
"open24h": 45.42,
|
| 7 |
+
"high24h": 45.44,
|
| 8 |
+
"low24h": 45.4,
|
| 9 |
+
"priceChangePercent24h": 0.022016732716860436,
|
| 10 |
+
"volume24h": 26322302.3135,
|
| 11 |
+
"volumeCcy24h": 1195578872.049663,
|
| 12 |
+
"bidPrice": 45.43,
|
| 13 |
+
"askPrice": 45.44,
|
| 14 |
+
"timestamp": "2026-05-14T15:50:05.214Z",
|
| 15 |
+
"scrapedAt": "2026-05-14T15:50:07.106Z"
|
| 16 |
+
},
|
| 17 |
+
{
|
| 18 |
+
"instId": "BTC-USDT",
|
| 19 |
+
"instType": "SPOT",
|
| 20 |
+
"lastPrice": 81078.2,
|
| 21 |
+
"open24h": 79150,
|
| 22 |
+
"high24h": 81155,
|
| 23 |
+
"low24h": 78760.1,
|
| 24 |
+
"priceChangePercent24h": 2.43613392293114,
|
| 25 |
+
"volume24h": 6945.02742322,
|
| 26 |
+
"volumeCcy24h": 553690076.6528996,
|
| 27 |
+
"bidPrice": 81078.1,
|
| 28 |
+
"askPrice": 81078.2,
|
| 29 |
+
"timestamp": "2026-05-14T15:50:06.015Z",
|
| 30 |
+
"scrapedAt": "2026-05-14T15:50:07.104Z"
|
| 31 |
+
},
|
| 32 |
+
{
|
| 33 |
+
"instId": "TRX-TRY",
|
| 34 |
+
"instType": "SPOT",
|
| 35 |
+
"lastPrice": 16.104,
|
| 36 |
+
"open24h": 15.908,
|
| 37 |
+
"high24h": 16.163,
|
| 38 |
+
"low24h": 15.873,
|
| 39 |
+
"priceChangePercent24h": 1.23208448579331,
|
| 40 |
+
"volume24h": 19691663.6237,
|
| 41 |
+
"volumeCcy24h": 314334302.4666877,
|
| 42 |
+
"bidPrice": 16.102,
|
| 43 |
+
"askPrice": 16.103,
|
| 44 |
+
"timestamp": "2026-05-14T15:50:00.015Z",
|
| 45 |
+
"scrapedAt": "2026-05-14T15:50:07.108Z"
|
| 46 |
+
},
|
| 47 |
+
{
|
| 48 |
+
"instId": "ETH-USDT",
|
| 49 |
+
"instType": "SPOT",
|
| 50 |
+
"lastPrice": 2294.43,
|
| 51 |
+
"open24h": 2248.62,
|
| 52 |
+
"high24h": 2295.56,
|
| 53 |
+
"low24h": 2234.45,
|
| 54 |
+
"priceChangePercent24h": 2.037249513034659,
|
| 55 |
+
"volume24h": 108372.438954,
|
| 56 |
+
"volumeCcy24h": 245111311.18579844,
|
| 57 |
+
"bidPrice": 2294.43,
|
| 58 |
+
"askPrice": 2294.44,
|
| 59 |
+
"timestamp": "2026-05-14T15:50:05.911Z",
|
| 60 |
+
"scrapedAt": "2026-05-14T15:50:07.105Z"
|
| 61 |
+
},
|
| 62 |
+
{
|
| 63 |
+
"instId": "USDG-USDT",
|
| 64 |
+
"instType": "SPOT",
|
| 65 |
+
"lastPrice": 0.9998,
|
| 66 |
+
"open24h": 1.0001,
|
| 67 |
+
"high24h": 1.0002,
|
| 68 |
+
"low24h": 0.9997,
|
| 69 |
+
"priceChangePercent24h": -0.0299970002999667,
|
| 70 |
+
"volume24h": 157635283.977,
|
| 71 |
+
"volumeCcy24h": 157638671.961093,
|
| 72 |
+
"bidPrice": 0.9998,
|
| 73 |
+
"askPrice": 0.9999,
|
| 74 |
+
"timestamp": "2026-05-14T15:50:03.108Z",
|
| 75 |
+
"scrapedAt": "2026-05-14T15:50:07.109Z"
|
| 76 |
+
},
|
| 77 |
+
{
|
| 78 |
+
"instId": "BTC-TRY",
|
| 79 |
+
"instType": "SPOT",
|
| 80 |
+
"lastPrice": 3682766,
|
| 81 |
+
"open24h": 3595349,
|
| 82 |
+
"high24h": 3686214,
|
| 83 |
+
"low24h": 3577653,
|
| 84 |
+
"priceChangePercent24h": 2.4313912223820275,
|
| 85 |
+
"volume24h": 35.794597984,
|
| 86 |
+
"volumeCcy24h": 129350262.55105862,
|
| 87 |
+
"bidPrice": 3684999,
|
| 88 |
+
"askPrice": 3685000,
|
| 89 |
+
"timestamp": "2026-05-14T15:50:02.612Z",
|
| 90 |
+
"scrapedAt": "2026-05-14T15:50:07.107Z"
|
| 91 |
+
},
|
| 92 |
+
{
|
| 93 |
+
"instId": "ETH-TRY",
|
| 94 |
+
"instType": "SPOT",
|
| 95 |
+
"lastPrice": 104150,
|
| 96 |
+
"open24h": 102157,
|
| 97 |
+
"high24h": 104150,
|
| 98 |
+
"low24h": 101541,
|
| 99 |
+
"priceChangePercent24h": 1.950918683986413,
|
| 100 |
+
"volume24h": 1244.25500329,
|
| 101 |
+
"volumeCcy24h": 127749357.75503829,
|
| 102 |
+
"bidPrice": 104257,
|
| 103 |
+
"askPrice": 104258,
|
| 104 |
+
"timestamp": "2026-05-14T15:50:05.314Z",
|
| 105 |
+
"scrapedAt": "2026-05-14T15:50:07.108Z"
|
| 106 |
+
},
|
| 107 |
+
{
|
| 108 |
+
"instId": "EDGE-USD",
|
| 109 |
+
"instType": "SPOT",
|
| 110 |
+
"lastPrice": 1.3798,
|
| 111 |
+
"open24h": 1.3337,
|
| 112 |
+
"high24h": 1.3834,
|
| 113 |
+
"low24h": 1.3215,
|
| 114 |
+
"priceChangePercent24h": 3.456549448901537,
|
| 115 |
+
"volume24h": 65835678.754,
|
| 116 |
+
"volumeCcy24h": 88935500.0101945,
|
| 117 |
+
"bidPrice": 1.3784,
|
| 118 |
+
"askPrice": 1.3834,
|
| 119 |
+
"timestamp": "2026-05-14T15:50:05.811Z",
|
| 120 |
+
"scrapedAt": "2026-05-14T15:50:07.107Z"
|
| 121 |
+
},
|
| 122 |
+
{
|
| 123 |
+
"instId": "DOGE-USDT",
|
| 124 |
+
"instType": "SPOT",
|
| 125 |
+
"lastPrice": 0.11396,
|
| 126 |
+
"open24h": 0.11064,
|
| 127 |
+
"high24h": 0.11668,
|
| 128 |
+
"low24h": 0.10963,
|
| 129 |
+
"priceChangePercent24h": 3.000723065798991,
|
| 130 |
+
"volume24h": 651405022.545494,
|
| 131 |
+
"volumeCcy24h": 74249356.36308774,
|
| 132 |
+
"bidPrice": 0.11395,
|
| 133 |
+
"askPrice": 0.11396,
|
| 134 |
+
"timestamp": "2026-05-14T15:50:05.911Z",
|
| 135 |
+
"scrapedAt": "2026-05-14T15:50:07.104Z"
|
| 136 |
+
},
|
| 137 |
+
{
|
| 138 |
+
"instId": "USDC-USDT",
|
| 139 |
+
"instType": "SPOT",
|
| 140 |
+
"lastPrice": 1,
|
| 141 |
+
"open24h": 1.0002,
|
| 142 |
+
"high24h": 1.0004,
|
| 143 |
+
"low24h": 1,
|
| 144 |
+
"priceChangePercent24h": -0.01999600079983783,
|
| 145 |
+
"volume24h": 62388977.412843,
|
| 146 |
+
"volumeCcy24h": 62401745.78974207,
|
| 147 |
+
"bidPrice": 1,
|
| 148 |
+
"askPrice": 1.0001,
|
| 149 |
+
"timestamp": "2026-05-14T15:50:06.111Z",
|
| 150 |
+
"scrapedAt": "2026-05-14T15:50:07.104Z"
|
| 151 |
+
},
|
| 152 |
+
{
|
| 153 |
+
"instId": "SOL-USDT",
|
| 154 |
+
"instType": "SPOT",
|
| 155 |
+
"lastPrice": 92.6,
|
| 156 |
+
"open24h": 90.76,
|
| 157 |
+
"high24h": 92.7,
|
| 158 |
+
"low24h": 89.81,
|
| 159 |
+
"priceChangePercent24h": 2.0273248126928043,
|
| 160 |
+
"volume24h": 645908.317236,
|
| 161 |
+
"volumeCcy24h": 58852545.65441759,
|
| 162 |
+
"bidPrice": 92.6,
|
| 163 |
+
"askPrice": 92.61,
|
| 164 |
+
"timestamp": "2026-05-14T15:50:06.115Z",
|
| 165 |
+
"scrapedAt": "2026-05-14T15:50:07.107Z"
|
| 166 |
+
},
|
| 167 |
+
{
|
| 168 |
+
"instId": "EDGE-USDT",
|
| 169 |
+
"instType": "SPOT",
|
| 170 |
+
"lastPrice": 1.3801,
|
| 171 |
+
"open24h": 1.3287,
|
| 172 |
+
"high24h": 1.3932,
|
| 173 |
+
"low24h": 1.3206,
|
| 174 |
+
"priceChangePercent24h": 3.8684428388650645,
|
| 175 |
+
"volume24h": 40299519.359,
|
| 176 |
+
"volumeCcy24h": 54418058.6259875,
|
| 177 |
+
"bidPrice": 1.3805,
|
| 178 |
+
"askPrice": 1.3808,
|
| 179 |
+
"timestamp": "2026-05-14T15:50:05.907Z",
|
| 180 |
+
"scrapedAt": "2026-05-14T15:50:07.109Z"
|
| 181 |
+
},
|
| 182 |
+
{
|
| 183 |
+
"instId": "NIGHT-USDT",
|
| 184 |
+
"instType": "SPOT",
|
| 185 |
+
"lastPrice": 0.03314,
|
| 186 |
+
"open24h": 0.032312,
|
| 187 |
+
"high24h": 0.033475,
|
| 188 |
+
"low24h": 0.031866,
|
| 189 |
+
"priceChangePercent24h": 2.5625154741272667,
|
| 190 |
+
"volume24h": 1499386314,
|
| 191 |
+
"volumeCcy24h": 48591873.5447468,
|
| 192 |
+
"bidPrice": 0.03314,
|
| 193 |
+
"askPrice": 0.033144,
|
| 194 |
+
"timestamp": "2026-05-14T15:50:05.213Z",
|
| 195 |
+
"scrapedAt": "2026-05-14T15:50:07.107Z"
|
| 196 |
+
},
|
| 197 |
+
{
|
| 198 |
+
"instId": "XRP-USDT",
|
| 199 |
+
"instType": "SPOT",
|
| 200 |
+
"lastPrice": 1.4696,
|
| 201 |
+
"open24h": 1.4197,
|
| 202 |
+
"high24h": 1.4746,
|
| 203 |
+
"low24h": 1.4118,
|
| 204 |
+
"priceChangePercent24h": 3.5148270761428515,
|
| 205 |
+
"volume24h": 22861529.770321,
|
| 206 |
+
"volumeCcy24h": 32833189.87622908,
|
| 207 |
+
"bidPrice": 1.4696,
|
| 208 |
+
"askPrice": 1.4697,
|
| 209 |
+
"timestamp": "2026-05-14T15:50:05.312Z",
|
| 210 |
+
"scrapedAt": "2026-05-14T15:50:07.107Z"
|
| 211 |
+
},
|
| 212 |
+
{
|
| 213 |
+
"instId": "XRP-TRY",
|
| 214 |
+
"instType": "SPOT",
|
| 215 |
+
"lastPrice": 66.74,
|
| 216 |
+
"open24h": 64.5,
|
| 217 |
+
"high24h": 66.99,
|
| 218 |
+
"low24h": 64.2,
|
| 219 |
+
"priceChangePercent24h": 3.4728682170542555,
|
| 220 |
+
"volume24h": 444470.79932,
|
| 221 |
+
"volumeCcy24h": 28889086.6797862,
|
| 222 |
+
"bidPrice": 66.77,
|
| 223 |
+
"askPrice": 66.78,
|
| 224 |
+
"timestamp": "2026-05-14T15:50:04.314Z",
|
| 225 |
+
"scrapedAt": "2026-05-14T15:50:07.107Z"
|
| 226 |
+
},
|
| 227 |
+
{
|
| 228 |
+
"instId": "USDT-USD",
|
| 229 |
+
"instType": "SPOT",
|
| 230 |
+
"lastPrice": 0.9998,
|
| 231 |
+
"open24h": 0.9999,
|
| 232 |
+
"high24h": 0.9999,
|
| 233 |
+
"low24h": 0.9997,
|
| 234 |
+
"priceChangePercent24h": -0.0100010001000089,
|
| 235 |
+
"volume24h": 27615106.4969,
|
| 236 |
+
"volumeCcy24h": 27607721.11552917,
|
| 237 |
+
"bidPrice": 0.9997,
|
| 238 |
+
"askPrice": 0.9998,
|
| 239 |
+
"timestamp": "2026-05-14T15:50:03.111Z",
|
| 240 |
+
"scrapedAt": "2026-05-14T15:50:07.109Z"
|
| 241 |
+
},
|
| 242 |
+
{
|
| 243 |
+
"instId": "MON-USDT",
|
| 244 |
+
"instType": "SPOT",
|
| 245 |
+
"lastPrice": 0.03018,
|
| 246 |
+
"open24h": 0.02935,
|
| 247 |
+
"high24h": 0.03074,
|
| 248 |
+
"low24h": 0.02842,
|
| 249 |
+
"priceChangePercent24h": 2.827938671209531,
|
| 250 |
+
"volume24h": 846810294.3,
|
| 251 |
+
"volumeCcy24h": 24663302.824477,
|
| 252 |
+
"bidPrice": 0.03017,
|
| 253 |
+
"askPrice": 0.03018,
|
| 254 |
+
"timestamp": "2026-05-14T15:50:06.103Z",
|
| 255 |
+
"scrapedAt": "2026-05-14T15:50:07.107Z"
|
| 256 |
+
},
|
| 257 |
+
{
|
| 258 |
+
"instId": "USDT-BRL",
|
| 259 |
+
"instType": "SPOT",
|
| 260 |
+
"lastPrice": 4.9877,
|
| 261 |
+
"open24h": 4.913,
|
| 262 |
+
"high24h": 5.0322,
|
| 263 |
+
"low24h": 4.906,
|
| 264 |
+
"priceChangePercent24h": 1.520455933238347,
|
| 265 |
+
"volume24h": 4589404.54631,
|
| 266 |
+
"volumeCcy24h": 22885359.15156302,
|
| 267 |
+
"bidPrice": 4.9876,
|
| 268 |
+
"askPrice": 4.9877,
|
| 269 |
+
"timestamp": "2026-05-14T15:50:00.014Z",
|
| 270 |
+
"scrapedAt": "2026-05-14T15:50:07.108Z"
|
| 271 |
+
},
|
| 272 |
+
{
|
| 273 |
+
"instId": "SUI-USDT",
|
| 274 |
+
"instType": "SPOT",
|
| 275 |
+
"lastPrice": 1.2144,
|
| 276 |
+
"open24h": 1.2001,
|
| 277 |
+
"high24h": 1.2306,
|
| 278 |
+
"low24h": 1.1852,
|
| 279 |
+
"priceChangePercent24h": 1.1915673693858828,
|
| 280 |
+
"volume24h": 14642233.9123,
|
| 281 |
+
"volumeCcy24h": 17688643.4319967,
|
| 282 |
+
"bidPrice": 1.2145,
|
| 283 |
+
"askPrice": 1.2146,
|
| 284 |
+
"timestamp": "2026-05-14T15:50:05.811Z",
|
| 285 |
+
"scrapedAt": "2026-05-14T15:50:07.108Z"
|
| 286 |
+
},
|
| 287 |
+
{
|
| 288 |
+
"instId": "BTC-USD",
|
| 289 |
+
"instType": "SPOT",
|
| 290 |
+
"lastPrice": 81109.2,
|
| 291 |
+
"open24h": 79128,
|
| 292 |
+
"high24h": 81142.4,
|
| 293 |
+
"low24h": 78744.1,
|
| 294 |
+
"priceChangePercent24h": 2.5037913254473727,
|
| 295 |
+
"volume24h": 218.33612993,
|
| 296 |
+
"volumeCcy24h": 17397955.099330198,
|
| 297 |
+
"bidPrice": 81080.3,
|
| 298 |
+
"askPrice": 81080.4,
|
| 299 |
+
"timestamp": "2026-05-14T15:50:06.114Z",
|
| 300 |
+
"scrapedAt": "2026-05-14T15:50:07.105Z"
|
| 301 |
+
},
|
| 302 |
+
{
|
| 303 |
+
"instId": "BASED-TRY",
|
| 304 |
+
"instType": "SPOT",
|
| 305 |
+
"lastPrice": 4.055,
|
| 306 |
+
"open24h": 4.077,
|
| 307 |
+
"high24h": 4.312,
|
| 308 |
+
"low24h": 3.847,
|
| 309 |
+
"priceChangePercent24h": -0.5396124601422674,
|
| 310 |
+
"volume24h": 3968979.1466,
|
| 311 |
+
"volumeCcy24h": 16123942.4067761,
|
| 312 |
+
"bidPrice": 4.047,
|
| 313 |
+
"askPrice": 4.055,
|
| 314 |
+
"timestamp": "2026-05-14T15:50:05.907Z",
|
| 315 |
+
"scrapedAt": "2026-05-14T15:50:07.108Z"
|
| 316 |
+
},
|
| 317 |
+
{
|
| 318 |
+
"instId": "HYPE-USDT",
|
| 319 |
+
"instType": "SPOT",
|
| 320 |
+
"lastPrice": 42.527,
|
| 321 |
+
"open24h": 39.004,
|
| 322 |
+
"high24h": 42.724,
|
| 323 |
+
"low24h": 38.16,
|
| 324 |
+
"priceChangePercent24h": 9.032406932622305,
|
| 325 |
+
"volume24h": 399177.9379,
|
| 326 |
+
"volumeCcy24h": 15938734.7813254,
|
| 327 |
+
"bidPrice": 42.527,
|
| 328 |
+
"askPrice": 42.531,
|
| 329 |
+
"timestamp": "2026-05-14T15:50:06.111Z",
|
| 330 |
+
"scrapedAt": "2026-05-14T15:50:07.108Z"
|
| 331 |
+
},
|
| 332 |
+
{
|
| 333 |
+
"instId": "TON-USDT",
|
| 334 |
+
"instType": "SPOT",
|
| 335 |
+
"lastPrice": 2.126,
|
| 336 |
+
"open24h": 2.105,
|
| 337 |
+
"high24h": 2.175,
|
| 338 |
+
"low24h": 2.046,
|
| 339 |
+
"priceChangePercent24h": 0.9976247030878815,
|
| 340 |
+
"volume24h": 7073905.5604,
|
| 341 |
+
"volumeCcy24h": 14966202.5611562,
|
| 342 |
+
"bidPrice": 2.125,
|
| 343 |
+
"askPrice": 2.126,
|
| 344 |
+
"timestamp": "2026-05-14T15:50:06.112Z",
|
| 345 |
+
"scrapedAt": "2026-05-14T15:50:07.104Z"
|
| 346 |
+
},
|
| 347 |
+
{
|
| 348 |
+
"instId": "TRX-USDT",
|
| 349 |
+
"instType": "SPOT",
|
| 350 |
+
"lastPrice": 0.3544,
|
| 351 |
+
"open24h": 0.35015,
|
| 352 |
+
"high24h": 0.35557,
|
| 353 |
+
"low24h": 0.34931,
|
| 354 |
+
"priceChangePercent24h": 1.2137655290589677,
|
| 355 |
+
"volume24h": 42138203.034421,
|
| 356 |
+
"volumeCcy24h": 14823893.71842665,
|
| 357 |
+
"bidPrice": 0.35439,
|
| 358 |
+
"askPrice": 0.3544,
|
| 359 |
+
"timestamp": "2026-05-14T15:50:04.507Z",
|
| 360 |
+
"scrapedAt": "2026-05-14T15:50:07.104Z"
|
| 361 |
+
},
|
| 362 |
+
{
|
| 363 |
+
"instId": "ETH-USD",
|
| 364 |
+
"instType": "SPOT",
|
| 365 |
+
"lastPrice": 2294.22,
|
| 366 |
+
"open24h": 2248.07,
|
| 367 |
+
"high24h": 2296.37,
|
| 368 |
+
"low24h": 2233.82,
|
| 369 |
+
"priceChangePercent24h": 2.052872019109709,
|
| 370 |
+
"volume24h": 5778.080143,
|
| 371 |
+
"volumeCcy24h": 13058793.40584108,
|
| 372 |
+
"bidPrice": 2294.54,
|
| 373 |
+
"askPrice": 2294.55,
|
| 374 |
+
"timestamp": "2026-05-14T15:50:05.613Z",
|
| 375 |
+
"scrapedAt": "2026-05-14T15:50:07.105Z"
|
| 376 |
+
},
|
| 377 |
+
{
|
| 378 |
+
"instId": "ZEC-USDT",
|
| 379 |
+
"instType": "SPOT",
|
| 380 |
+
"lastPrice": 547,
|
| 381 |
+
"open24h": 534.87,
|
| 382 |
+
"high24h": 559.1,
|
| 383 |
+
"low24h": 514.4,
|
| 384 |
+
"priceChangePercent24h": 2.267840783741843,
|
| 385 |
+
"volume24h": 21626.95921,
|
| 386 |
+
"volumeCcy24h": 11486015.4997559,
|
| 387 |
+
"bidPrice": 546.69,
|
| 388 |
+
"askPrice": 546.74,
|
| 389 |
+
"timestamp": "2026-05-14T15:50:06.014Z",
|
| 390 |
+
"scrapedAt": "2026-05-14T15:50:07.105Z"
|
| 391 |
+
},
|
| 392 |
+
{
|
| 393 |
+
"instId": "XAUT-USDT",
|
| 394 |
+
"instType": "SPOT",
|
| 395 |
+
"lastPrice": 4678.6,
|
| 396 |
+
"open24h": 4691.3,
|
| 397 |
+
"high24h": 4707.8,
|
| 398 |
+
"low24h": 4663.1,
|
| 399 |
+
"priceChangePercent24h": -0.2707138746189717,
|
| 400 |
+
"volume24h": 2196.445106,
|
| 401 |
+
"volumeCcy24h": 10298690.0194423,
|
| 402 |
+
"bidPrice": 4678.8,
|
| 403 |
+
"askPrice": 4678.9,
|
| 404 |
+
"timestamp": "2026-05-14T15:50:05.312Z",
|
| 405 |
+
"scrapedAt": "2026-05-14T15:50:07.104Z"
|
| 406 |
+
},
|
| 407 |
+
{
|
| 408 |
+
"instId": "TRUMP-USDT",
|
| 409 |
+
"instType": "SPOT",
|
| 410 |
+
"lastPrice": 2.401,
|
| 411 |
+
"open24h": 2.341,
|
| 412 |
+
"high24h": 2.405,
|
| 413 |
+
"low24h": 2.327,
|
| 414 |
+
"priceChangePercent24h": 2.5630072618538917,
|
| 415 |
+
"volume24h": 3602127.119,
|
| 416 |
+
"volumeCcy24h": 8506476.1569004,
|
| 417 |
+
"bidPrice": 2.4,
|
| 418 |
+
"askPrice": 2.401,
|
| 419 |
+
"timestamp": "2026-05-14T15:50:06.011Z",
|
| 420 |
+
"scrapedAt": "2026-05-14T15:50:07.106Z"
|
| 421 |
+
},
|
| 422 |
+
{
|
| 423 |
+
"instId": "XAUT-TRY",
|
| 424 |
+
"instType": "SPOT",
|
| 425 |
+
"lastPrice": 212385.39,
|
| 426 |
+
"open24h": 212746.94,
|
| 427 |
+
"high24h": 214106.52,
|
| 428 |
+
"low24h": 212074.91,
|
| 429 |
+
"priceChangePercent24h": -0.1699436899068858,
|
| 430 |
+
"volume24h": 37.81652589,
|
| 431 |
+
"volumeCcy24h": 8047717.3732867325,
|
| 432 |
+
"bidPrice": 212536.63,
|
| 433 |
+
"askPrice": 212635.01,
|
| 434 |
+
"timestamp": "2026-05-14T15:50:03.812Z",
|
| 435 |
+
"scrapedAt": "2026-05-14T15:50:07.106Z"
|
| 436 |
+
},
|
| 437 |
+
{
|
| 438 |
+
"instId": "RLUSD-USDT",
|
| 439 |
+
"instType": "SPOT",
|
| 440 |
+
"lastPrice": 1.0002,
|
| 441 |
+
"open24h": 1.0004,
|
| 442 |
+
"high24h": 1.0005,
|
| 443 |
+
"low24h": 1.0001,
|
| 444 |
+
"priceChangePercent24h": -0.01999200319871831,
|
| 445 |
+
"volume24h": 7962618.008,
|
| 446 |
+
"volumeCcy24h": 7965267.6583884,
|
| 447 |
+
"bidPrice": 1.0002,
|
| 448 |
+
"askPrice": 1.0003,
|
| 449 |
+
"timestamp": "2026-05-14T15:50:03.211Z",
|
| 450 |
+
"scrapedAt": "2026-05-14T15:50:07.107Z"
|
| 451 |
+
}
|
| 452 |
+
]
|
sample.parquet
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:7bc30aca50bb8914c86207f8496bc3f7591265a7bc6c0184ae529e386f7a61c4
|
| 3 |
+
size 10841
|