SBI VC Trade Data Parser & API
SBI VC Trade is a Japan FSA-licensed cryptocurrency exchange operated by the SBI Holdings financial group, and StockAPIS extracts its real-time market data — JPY spot prices, bid/ask spreads, 24h volume, order books, recent trades and OHLCV candles across 20+ trading pairs — through a single REST API. SBI VC Trade offers an official public API, and StockAPIS normalizes it to the same schema you use for every other exchange, so you query SBI VC Trade, Binance and Coinbase the same way without maintaining separate integrations.
| Type | Crypto exchange (spot) |
|---|---|
| HQ | Japan (Tokyo) |
| Owner | SBI VC Trade Co., Ltd. (SBI Holdings) |
| Asset classes | Crypto spot, JPY trading pairs, Crypto lending |
| Coverage | 20+ JPY trading pairs |
| Scale | Top-tier FSA-licensed Japanese exchange (SBI Group) |
| API access | Official API |
| Parse priority | ★★★☆☆ |
| Official site | www.sbivc.co.jp |
Platform Overview
Market Position
- A regulated Japanese crypto exchange registered with the Financial Services Agency (FSA)
- Backed by SBI Holdings, one of Japan’s largest online financial services groups
- Focused on JPY-denominated trading pairs for the domestic Japanese market
- Official public REST API, complemented by StockAPIS’s unified normalization
Data Coverage
StockAPIS exposes the full SBI VC Trade market surface:
- Spot market data — real-time JPY prices, 24h volume, bid/ask spreads, daily high/low
- Order book — live depth snapshots for bids and asks with configurable limits
- Trades — recent trades with timestamps, prices and sizes
- OHLCV / klines — candlestick data across intervals for historical and technical analysis
- Symbols — available JPY trading pairs and exchange metadata
Quick Start
import stockapis
client = stockapis.Client(api_key="your-api-key")
# Real-time ticker for an SBI VC Trade JPY pair
btc = client.sbi_vc_trade.get_market_data(symbol="BTC_JPY")
print(f"Bitcoin: ¥{btc['last']} · 24h vol {btc['volume']}")const { StockAPIS } = require("stockapis");
const client = new StockAPIS({ apiKey: "your-api-key" });
// Live order book for a JPY pair
const book = await client.sbi_vc_trade.getOrderBook({ symbol: "BTC_JPY", limit: 50 });
console.log(book.bids[0], book.asks[0]);Sample API Response
{
"success": true,
"data": {
"symbol": "BTC_JPY",
"last": 6750000,
"bid": 6749990,
"ask": 6750010,
"high": 6800000,
"low": 6700000,
"volume": "25000.5",
"timestamp": 1640995200000
},
"metadata": { "source": "sbi-vc-trade", "timestamp": "2024-01-15T10:30:00.000Z" }
}Use Cases
- Algorithmic trading — JPY-pair price and order-book feeds for automated strategies and market-making bots
- Cross-exchange arbitrage — compare SBI VC Trade JPY prices against global venues on one schema
- Japanese market research — track domestic crypto demand, liquidity and yen-denominated spreads
- Portfolio & risk — real-time marks for valuation, P&L and exposure monitoring in JPY
Frequently Asked Questions
Does SBI VC Trade have an official API? Yes — SBI VC Trade provides a public REST API for market data and trading. StockAPIS wraps it in a unified schema so SBI VC Trade data matches every other source you pull.
What data can I get from SBI VC Trade through StockAPIS? Real-time JPY spot prices, bid/ask spreads, 24h volume, daily high/low, order books, recent trades and OHLCV candles across 20+ trading pairs.
Is SBI VC Trade a regulated exchange? Yes — SBI VC Trade is registered with Japan’s Financial Services Agency (FSA) and operated by the SBI Holdings financial group, making it one of the country’s established licensed crypto venues.