WhiteBIT Crypto Tickers Scraper
Pricing
from $25.13 / 1,000 results
WhiteBIT Crypto Tickers Scraper
Scrape live spot tickers from WhiteBIT public API including last price, 24h volume, change percent, and frozen status for all trading pairs. No API key required.
Pricing
from $25.13 / 1,000 results
Rating
0.0
(0)
Developer
ParseForge
Maintained by CommunityActor stats
0
Bookmarked
2
Total users
1
Monthly active users
2 days ago
Last modified
Categories
Share

โช WhiteBIT Crypto Tickers Scraper
๐ Export live spot and perpetual tickers from the WhiteBIT public API in seconds. Pull every trading pair with last price, base and quote volume, percent change, and frozen status. No API key, no rate-limit setup.
๐ Last updated: 2026-05-13 ยท ๐ 10 fields per record ยท โช 1,000+ markets ยท ๐ต USDT / USDC / USD / BTC quotes ยท ๐ช๐บ EU-headquartered exchange
The WhiteBIT Tickers Scraper queries the WhiteBIT public v4 ticker endpoint and returns 10 fields per record, including the trading symbol, base and quote assets, last price, base and quote volume, 24h percent change, frozen status, and a direct link to the trade page. WhiteBIT is one of the largest European cryptocurrency exchanges, headquartered in Estonia, with deep coverage of USDT pairs alongside USDC, USD, BTC, and several fiat quote currencies.
The feed is built around a single upstream call (/api/v4/public/ticker) that returns every active market as an object map, which this Actor flattens, parses, sorts, and writes to a clean dataset.
| ๐ฏ Target Audience | ๐ก Primary Use Cases |
|---|---|
| Quant teams, market-data engineers, arbitrage desks, exchange researchers, fintech and trading-product builders | Cross-exchange spreads, perpetual funding signals, USDT volume scans, dashboard feeds, alerting, market-cap snapshots |
๐ What the WhiteBIT Scraper does
Four built-in workflows in a single run:
- ๐ Full market export. All active WhiteBIT tickers (spot, perp, fiat) in one pull.
- ๐ต Quote-currency filter. Restrict to
USDT,USDC,USD, orBTCpairs. - ๐ Server-side sort. Order by 24h quote volume, percent change, last price, or symbol.
- ๐ง Frozen-status flag. Each record exposes the exchange's
isFrozenflag so you can detect halted pairs.
Each record includes the symbol (e.g. BTC_USDT), split base and quote assets, raw price and volume numbers, percent change for the 24h window, the frozen flag, and a deep link to the corresponding trade page on WhiteBIT.
๐ก Why it matters: WhiteBIT consistently ranks in the top global exchanges by reported spot volume and is a key venue for European crypto-asset trading. Clean tickers feed arbitrage bots, market-data dashboards, treasury exports, and any system that needs live USDT-denominated quotes alongside or instead of CEX majors.
๐ฌ Full Demo
๐ง Coming soon: a 3-minute walkthrough from signup to a downloaded WhiteBIT dataset.
โ๏ธ Input
| Input | Type | Default | Behavior |
|---|---|---|---|
maxItems | integer | 10 | Records to return. Free plan caps at 10, paid plan at 1,000,000. |
quoteCurrency | string | "" | One of USDT, USDC, USD, BTC, or empty for all pairs. |
sortBy | string | "volume" | One of volume, changePercent, price, symbol. |
Example: top 50 USDT markets by 24h quote volume.
{"maxItems": 50,"quoteCurrency": "USDT","sortBy": "volume"}
Example: biggest 24h movers across all quote currencies.
{"maxItems": 25,"quoteCurrency": "","sortBy": "changePercent"}
โ ๏ธ Good to Know: WhiteBIT's public ticker endpoint returns a single payload covering every active market, which makes this Actor very fast. The
changefield is already expressed as a percent. Pairs ending in_PERPare perpetual contracts, and they show up alongside spot markets in the feed.
๐ Output
Each ticker record contains 10 fields. Download the dataset as CSV, Excel, JSON, or XML.
๐งพ Schema
| Field | Type | Example |
|---|---|---|
๐ท๏ธ symbol | string | "BTC_PERP" |
๐ url | string | "https://whitebit.com/trade/BTC_PERP" |
๐ช base | string | "BTC" |
๐ต quote | string | "PERP" |
๐ฐ last_price | number | 79332.4 |
๐ฆ base_volume | number | 50878.331 |
๐ quote_volume | number | 4096202800.5908 |
๐ change | number | -1.58 |
๐ง isFrozen | boolean | false |
๐ scrapedAt | ISO 8601 | "2026-05-13T22:24:59.589Z" |
๐ฆ Sample records
โจ Why choose this Actor
| Capability | |
|---|---|
| ๐ช๐บ | European exchange. WhiteBIT is headquartered in Estonia and ranks among the largest crypto venues by spot volume. |
| ๐ต | Multi-quote coverage. USDT, USDC, USD, BTC pairs, plus regional fiat quotes (KZT, TRY) and PERP contracts. |
| ๐ | Compact 10-field schema. Easy to ingest into spreadsheets, BI tools, and downstream pipelines. |
| ๐ | Server-side sorting and filtering. Quote-currency filter and four sort modes, no post-processing required. |
| โก | Fast. Hundreds of markets returned in a single upstream call, typically under 5 seconds. |
| ๐ง | Halt detection. The isFrozen flag surfaces venue-side trading pauses. |
| ๐ซ | No authentication. Uses only public endpoints. No API key, no IP allowlist. |
๐ WhiteBIT ticker data is a strong complement to Binance, OKX, and Bybit feeds in any global crypto market-data stack.
๐ How it compares to alternatives
| Approach | Cost | Coverage | Refresh | Filters | Setup |
|---|---|---|---|---|---|
| โญ WhiteBIT Tickers Scraper (this Actor) | $5 free credit, then pay-per-use | All active WhiteBIT markets | Live per run | quote currency, sort, max items | โก 2 min |
| Aggregator APIs (CoinGecko, CMC) | Free tier + paid plans | Many exchanges, less granular | Minutes | API-specific | โณ Hours |
| Direct WhiteBIT SDKs | Free | Same upstream, but you maintain code | On-demand | Build your own | ๐ ๏ธ Days |
| Manual page scraping | Free | Fragile, captcha-prone | Variable | None | ๐ข Brittle |
Pick this Actor when you want a ready-to-use feed of WhiteBIT tickers with zero maintenance.
๐ How to use
- ๐ Sign up. Create a free account with $5 credit (takes 2 minutes).
- ๐ Open the Actor. Go to the WhiteBIT Crypto Tickers Scraper page on the Apify Store.
- ๐ฏ Set input. Pick a quote currency (or leave empty for all), choose a sort, and set
maxItems. - ๐ Run it. Click Start and let the Actor pull live tickers from WhiteBIT.
- ๐ฅ Download. Grab your results from the Dataset tab as CSV, Excel, JSON, or XML.
โฑ๏ธ Total time from signup to a downloaded ticker dataset: 3-5 minutes. No coding required.
๐ผ Business use cases
๐ Automating WhiteBIT Tickers Scraper
Control the scraper programmatically for scheduled runs and pipeline integrations:
- ๐ข Node.js. Install the
apify-clientNPM package. - ๐ Python. Use the
apify-clientPyPI package. - ๐ See the Apify API documentation for full details.
The Apify Schedules feature lets you trigger this Actor on any cron interval. Minute-level scrapes feed real-time dashboards, while hourly or daily pulls keep BI warehouses in sync.
๐ Beyond business use cases
Structured ticker data fuels more than commercial workflows. The same records support research, education, civic transparency, and personal projects.
๐ค Ask an AI assistant about this scraper
Open a ready-to-send prompt about this ParseForge actor in the AI of your choice:
- ๐ฌ ChatGPT
- ๐ง Claude
- ๐ Perplexity
- ๐ Copilot
โ Frequently Asked Questions
๐งฉ How does it work?
The Actor hits a single public WhiteBIT endpoint (/api/v4/public/ticker) that returns every active market as an object map. It flattens that map, splits each symbol into base and quote assets, applies your quote-currency and sort filters, caps to maxItems, and writes one clean record per market to the dataset.
๐ How often is the data refreshed?
Every run pulls the latest ticker payload directly from WhiteBIT. Tickers update on the exchange every few seconds, so a freshly triggered run is as live as the WhiteBIT API itself.
๐ What quote currencies are supported?
WhiteBIT lists pairs quoted in USDT, USDC, USD, BTC, and several regional fiat currencies. The quoteCurrency filter accepts the four most common values. Leave it empty to get every market in one pull.
๐ฅ What is _PERP?
Symbols ending in _PERP are perpetual swap contracts. They live alongside spot pairs in the same payload, and the schema treats PERP as the quote currency suffix so you can identify and filter them downstream.
๐ Do I need an API key?
No. The endpoints used here are entirely public. No login, no API key, no IP allowlist.
โฐ Can I schedule regular runs?
Yes. Use Apify Schedules to trigger this Actor on any cron cadence. Minute-level scrapes feed real-time dashboards, hourly or daily pulls keep warehouses in sync.
โ๏ธ Is this data legal to use?
WhiteBIT publishes ticker data through public endpoints. Review the venue terms of service for your specific commercial use, but raw market-data feeds are generally accepted for analytical and trading workflows.
๐ผ Can I use this data commercially?
Yes. Public exchange ticker data is broadly usable for commercial analytics. Confirm your downstream license obligations for any redistribution to third parties.
๐ณ Do I need a paid Apify plan to use this Actor?
No. The free Apify plan is enough for testing and small runs (10 records per run). A paid plan lifts that limit and unlocks scheduling, higher concurrency, and larger datasets.
๐ What happens if a run fails or gets interrupted?
Apify automatically retries transient errors. The Actor also retries 429 and 503 responses internally with exponential backoff. Partial datasets from failed runs are preserved, so you never lose progress.
๐ฌ What if I need order-book depth?
This Actor returns ticker-level data only. For full order-book depth, use the WhiteBIT depth or WebSocket endpoints directly, or reach out via the contact form for a companion order-book scraper.
๐ What if I need help?
Our support team is here to help. Contact us through the Apify platform or use the Tally form linked below.
๐ Integrate with any app
WhiteBIT Tickers Scraper connects to any cloud service via Apify integrations:
- Make - Automate multi-step workflows
- Zapier - Connect with 5,000+ apps
- Slack - Get run notifications in your channels
- Airbyte - Pipe ticker data into your warehouse
- GitHub - Trigger runs from commits and releases
- Google Drive - Export datasets straight to Sheets
You can also use webhooks to trigger downstream actions when a run finishes. Push fresh tickers into your product backend, or alert your team in Slack on big moves.
๐ Recommended Actors
- ๐ค Hugging Face Model Scraper - Open-source AI model directory and metadata
- ๐ Indexmundi Scraper - Global demographic and economic indicators
- ๐ข AWS Marketplace Scraper - Cloud software listings and pricing
- ๐ Stripe App Marketplace Scraper - Fintech app directory metadata
- โ๏ธ OurAirports Scraper - Global airport reference dataset
๐ก Pro Tip: browse the complete ParseForge collection for more reference-data scrapers.
๐ Need Help? Open our contact form to request a new scraper, propose a custom data project, or report an issue.
โ ๏ธ Disclaimer: this Actor is an independent tool and is not affiliated with, endorsed by, or sponsored by WhiteBIT or any of its partners. All trademarks mentioned are the property of their respective owners. Only publicly available ticker data is collected.