Bittrex Data Parser & API
Bittrex was a Seattle-based US cryptocurrency exchange known for its broad altcoin coverage and regulatory-first approach, and StockAPIS extracts its spot market data — last trade rate, bid/ask spreads, 24h volume, OHLCV candles, order books and trade history across 200+ trading pairs — through a single REST API. Bittrex operated an official public REST API (v3) before winding down its US operations in 2023; StockAPIS normalizes that data to the same schema you use for every other exchange, so historical Bittrex feeds line up with live venues like Binance and Coinbase without separate integrations.
| Type | Crypto exchange (spot) |
|---|---|
| HQ | United States (Seattle, WA) |
| Owner | Bittrex, Inc. |
| Asset classes | Crypto spot |
| Coverage | 200+ trading pairs |
| Scale | Former top-20 US exchange (ceased operations Dec 2023) |
| API access | Official API |
| Parse priority | ★★☆☆☆ |
| Official site | bittrex.com |
Platform Overview
Market Position
- A Seattle-based US spot exchange, historically known for early altcoin listings and a compliance-first stance
- 200+ trading pairs spanning major coins and a deep long tail of altcoins
- Built a reputation for regulatory transparency and institutional-grade operations in the US market
- Operated an official public REST API (v3); US and global operations wound down through 2023
Data Coverage
StockAPIS exposes the full Bittrex spot market surface:
- Spot market data — last trade rate, 24h volume, bid/ask spreads, daily high/low/open
- Order book — depth snapshots with configurable limits for liquidity analysis
- Trades — recent trade history with timestamps, rates and volumes
- OHLCV / candles — candlestick data across intervals for historical and technical analysis
- Markets — trading pairs, market status and exchange-level statistics
Quick Start
import stockapis
client = stockapis.Client(api_key="your-api-key")
# Real-time ticker for a Bittrex pair
btc = client.bittrex.get_market_data(symbol="BTC-USD")
print(f"Bitcoin: ${btc['lastTradeRate']} · 24h vol {btc['volume']}")const { StockAPIS } = require("stockapis");
const client = new StockAPIS({ apiKey: "your-api-key" });
// Order book depth (top 100 levels)
const book = await client.bittrex.getOrderBook({ symbol: "BTC-USD", depth: 100 });
console.log(book.bid[0], book.ask[0]);Sample API Response
{
"success": true,
"data": {
"symbol": "BTC-USD",
"lastTradeRate": "45000.00000000",
"bidRate": "44999.90000000",
"askRate": "45000.10000000",
"volume": "25000.50000000",
"high": "45500.00000000",
"low": "44500.00000000",
"open": "42625.00000000",
"updatedAt": "2024-01-15T10:30:00Z"
},
"metadata": { "source": "bittrex", "timestamp": "2024-01-15T10:30:00.000Z" }
}Use Cases
- Quant research — historical candles and trades for backtesting strategies on US-listed altcoins
- Cross-exchange analysis — compare Bittrex prices against other venues on one normalized schema
- Altcoin discovery — track long-tail trading pairs and liquidity that majors did not list early
- Portfolio & risk — reconcile historical marks for valuation, P&L and audit trails
Frequently Asked Questions
Did Bittrex have an official API? Yes — Bittrex offered a public REST API (v3) covering markets, tickers, order books, trades and candles. StockAPIS normalizes that data into a unified schema so it matches every other source you pull.
Is Bittrex still operating? Bittrex wound down its US operations in 2023 and globally ceased trading. StockAPIS focuses on historical Bittrex data and routes live requests for the same pairs to active venues on the same schema.
What data can I get from Bittrex through StockAPIS? Last trade rate, bid/ask spreads, 24h volume, daily high/low/open, order books, recent trades and OHLCV candles across 200+ trading pairs.