Open API
Every Market

Hyperliquid · Polymarket · Coinbase · Binance
and 20+ other venues — unified in a single schema.

Integrated with
BinanceBinance
BybitBybit
OKXOKX
HyperliquidHyperliquid
CoinbaseCoinbase
DeribitDeribit
BitfinexBitfinex
CMECME
BitMEXBitMEX
Gate.ioGate.io
PolymarketPolymarket
BinanceBinance
BybitBybit
OKXOKX
HyperliquidHyperliquid
CoinbaseCoinbase
DeribitDeribit
BitfinexBitfinex
CMECME
BitMEXBitMEX
Gate.ioGate.io
PolymarketPolymarket

Unified Interface

Stop juggling a dozen SDKs

Every exchange has its own API, auth, schema, and quirks.
We normalize all of it into one call.

One API keyOne unified schemaOne WebSocket connectionOne rate limiterShip in hours, not weeks
The Old Way~87 lines

Quick Examples

See what one API call can do

Real queries, real responses. Crypto and prediction market data from a single endpoint.

Crypto

Cross-exchange BTC candles in one call

Sum BTC volume across Binance, Bybit, and OKX — USD-normalized. No stitching 3 APIs together.

GET/v1/points
type=TRADE_SIDE_AGNOSTIC_AGG// OHLCV candles
exchange=BINANCE_FUTURES,BYBIT,OKEX_SWAP
coin=BTC
interval=HOUR
transform.groupBy.type=GROUP_BY_TYPE_SUM
Response — unified OHLCV
O 104,291H 104,830 · L 103,950 · C 104,612
$2.4B vol3 exchanges · 1 response
1 schemasame shape for every data type
K
Kiyotaka API
api.kiyotaka.ai
Polymarket

Find insider traders in one API call

3 parameters. Every wallet with a suspiciously perfect record in political markets.

GET/v1/polymarket/analytics/leaderboard
winRate=90// only 90%+ win rates
maxTotalTradeCount=20// fewer than 20 trades
primaryCategory=Politics// political markets only
sortBy=REALIZED_PNL
Response — 8 wallets flagged
0x78b9...ac44$8.7M PnL88% win rate · 8 trades
0xd235...9732$7.7M PnL88% win rate · 8 trades
0x8631...34d0$7.5M PnL100% win rate · 8 trades
K
Kiyotaka Analytics API
api.kiyotaka.ai
Crypto

4K orderbook heatmap

1,000 price levels of bid/ask depth, updated every minute. Feed it straight into a heatmap renderer.

GET/v1/points
type=BLOCK_BOOK_SNAPSHOT_AGG
exchange=BINANCE_FUTURES
rawSymbol=BTCUSDT
interval=MINUTE
maxDepth=1000// 1K price levels
Response — alternating [price, volume] pairs
104,200bid · 42.8 BTC depth
104,350ask · 38.1 BTC depth
103,800bid · 127.3 BTC depth (wall)
K
Kiyotaka API
api.kiyotaka.ai
Polymarket

Build a copy-trading bot in 10 lines

Filter for consistently profitable traders. Poll their positions. Mirror their moves.

GET/v1/polymarket/analytics/leaderboard
winRate=70// proven track record
minTotalTradeCount=50// enough history to trust
sortBy=ROI// best return on capital
sortDirection=SORT_DIRECTION_DESC
limit=10// top 10 candidates
Response — your copy-trade watchlist
0xa37d...541c4,200% ROI92% win rate · $2.1M volume
0x0ad7...f1a62,800% ROI85% win rate · $890K volume
0xe834...edad1,950% ROI78% win rate · $3.4M volume
K
Kiyotaka Analytics API
api.kiyotaka.ai
Crypto

Liquidation cascade detector

See where liquidations cluster by price level. Identify stop-hunt zones and cascade risk in real time.

GET/v1/points
type=HYPERLIQUID_LIQUIDATION_AGG
coin=BTC
interval=HOUR
transform.normalize.quote=USD
Response — liquidation volume by price
$18.4Mlongs liquidated @ 102,800
$7.2Mshorts liquidated @ 105,200
$3.1Mlongs liquidated @ 103,100
K
Kiyotaka API
api.kiyotaka.ai
Polymarket

Who made money from this market?

Every trader, their exact PnL, entry price, and whether they're still holding.

GET/v1/polymarket/analytics/positions
conditionId=0xe065...8fd// US Senate 2022 market
limit=50// all participants
Response — who was early, who was right
0xf130...6ab+$5.7MRepublican · avg entry 0.42 · closed
0x3d8a...5724+$1.2MRepublican · avg entry 0.38 · closed
0x9a21...bc01-$340KDemocrat · avg entry 0.61 · closed
K
Kiyotaka Analytics API
api.kiyotaka.ai
Polymarket

Track where whale money is flowing right now

Filter for active large-position traders. See exactly where conviction capital sits.

GET/v1/polymarket/analytics/leaderboard
openPositionCount=5// actively positioned
sortBy=TOTAL_SIZE// largest traders first
sortDirection=SORT_DIRECTION_DESC
Response — the biggest players right now
0x57ea...b3a2$7.8B volume226 open positions
0xd69b...e738$5.4B volume4,766 open positions
0x778f...b922$2.9B volume2,703 open positions
K
Kiyotaka Analytics API
api.kiyotaka.ai
Polymarket

X-ray any trader's full profile

One call. Total PnL, win rate, hold duration, largest win, category breakdown — everything.

GET/v1/polymarket/analytics/trader-profile
userWallet=0xf130...6ab// #1 all-time trader
Response — complete intelligence dossier
$94.9MTotal Realized PnL
80.7%Win Rate · 1,047 positions
$5.7MLargest single win
39 daysAverage hold duration
K
Kiyotaka Analytics API
api.kiyotaka.ai
Polymarket

Spot the algorithms

Thousands of trades. Consistent win rates. These aren't humans — and they're profitable.

GET/v1/polymarket/analytics/leaderboard
minTotalTradeCount=5000// high-frequency only
winRate=55// consistently profitable
sortBy=TOTAL_POSITION_COUNT
sortDirection=SORT_DIRECTION_DESC
Response — automated strategies at scale
0xd4aa...8e2f140,798 trades100% win rate · $12M PnL
0x7164...45fe111,200 trades57% win rate · $8.2M PnL
0x2005...6a8497,782 trades55% win rate · $31.8M PnL
K
Kiyotaka Analytics API
api.kiyotaka.ai
Crypto

Cross-exchange BTC candles in one call

Sum BTC volume across Binance, Bybit, and OKX — USD-normalized. No stitching 3 APIs together.

GET/v1/points
type=TRADE_SIDE_AGNOSTIC_AGG// OHLCV candles
exchange=BINANCE_FUTURES,BYBIT,OKEX_SWAP
coin=BTC
interval=HOUR
transform.groupBy.type=GROUP_BY_TYPE_SUM
Response — unified OHLCV
O 104,291H 104,830 · L 103,950 · C 104,612
$2.4B vol3 exchanges · 1 response
1 schemasame shape for every data type
K
Kiyotaka API
api.kiyotaka.ai
Polymarket

Find insider traders in one API call

3 parameters. Every wallet with a suspiciously perfect record in political markets.

GET/v1/polymarket/analytics/leaderboard
winRate=90// only 90%+ win rates
maxTotalTradeCount=20// fewer than 20 trades
primaryCategory=Politics// political markets only
sortBy=REALIZED_PNL
Response — 8 wallets flagged
0x78b9...ac44$8.7M PnL88% win rate · 8 trades
0xd235...9732$7.7M PnL88% win rate · 8 trades
0x8631...34d0$7.5M PnL100% win rate · 8 trades
K
Kiyotaka Analytics API
api.kiyotaka.ai
Crypto

4K orderbook heatmap

1,000 price levels of bid/ask depth, updated every minute. Feed it straight into a heatmap renderer.

GET/v1/points
type=BLOCK_BOOK_SNAPSHOT_AGG
exchange=BINANCE_FUTURES
rawSymbol=BTCUSDT
interval=MINUTE
maxDepth=1000// 1K price levels
Response — alternating [price, volume] pairs
104,200bid · 42.8 BTC depth
104,350ask · 38.1 BTC depth
103,800bid · 127.3 BTC depth (wall)
K
Kiyotaka API
api.kiyotaka.ai
Polymarket

Build a copy-trading bot in 10 lines

Filter for consistently profitable traders. Poll their positions. Mirror their moves.

GET/v1/polymarket/analytics/leaderboard
winRate=70// proven track record
minTotalTradeCount=50// enough history to trust
sortBy=ROI// best return on capital
sortDirection=SORT_DIRECTION_DESC
limit=10// top 10 candidates
Response — your copy-trade watchlist
0xa37d...541c4,200% ROI92% win rate · $2.1M volume
0x0ad7...f1a62,800% ROI85% win rate · $890K volume
0xe834...edad1,950% ROI78% win rate · $3.4M volume
K
Kiyotaka Analytics API
api.kiyotaka.ai
Crypto

Liquidation cascade detector

See where liquidations cluster by price level. Identify stop-hunt zones and cascade risk in real time.

GET/v1/points
type=HYPERLIQUID_LIQUIDATION_AGG
coin=BTC
interval=HOUR
transform.normalize.quote=USD
Response — liquidation volume by price
$18.4Mlongs liquidated @ 102,800
$7.2Mshorts liquidated @ 105,200
$3.1Mlongs liquidated @ 103,100
K
Kiyotaka API
api.kiyotaka.ai
Polymarket

Who made money from this market?

Every trader, their exact PnL, entry price, and whether they're still holding.

GET/v1/polymarket/analytics/positions
conditionId=0xe065...8fd// US Senate 2022 market
limit=50// all participants
Response — who was early, who was right
0xf130...6ab+$5.7MRepublican · avg entry 0.42 · closed
0x3d8a...5724+$1.2MRepublican · avg entry 0.38 · closed
0x9a21...bc01-$340KDemocrat · avg entry 0.61 · closed
K
Kiyotaka Analytics API
api.kiyotaka.ai
Polymarket

Track where whale money is flowing right now

Filter for active large-position traders. See exactly where conviction capital sits.

GET/v1/polymarket/analytics/leaderboard
openPositionCount=5// actively positioned
sortBy=TOTAL_SIZE// largest traders first
sortDirection=SORT_DIRECTION_DESC
Response — the biggest players right now
0x57ea...b3a2$7.8B volume226 open positions
0xd69b...e738$5.4B volume4,766 open positions
0x778f...b922$2.9B volume2,703 open positions
K
Kiyotaka Analytics API
api.kiyotaka.ai
Polymarket

X-ray any trader's full profile

One call. Total PnL, win rate, hold duration, largest win, category breakdown — everything.

GET/v1/polymarket/analytics/trader-profile
userWallet=0xf130...6ab// #1 all-time trader
Response — complete intelligence dossier
$94.9MTotal Realized PnL
80.7%Win Rate · 1,047 positions
$5.7MLargest single win
39 daysAverage hold duration
K
Kiyotaka Analytics API
api.kiyotaka.ai
Polymarket

Spot the algorithms

Thousands of trades. Consistent win rates. These aren't humans — and they're profitable.

GET/v1/polymarket/analytics/leaderboard
minTotalTradeCount=5000// high-frequency only
winRate=55// consistently profitable
sortBy=TOTAL_POSITION_COUNT
sortDirection=SORT_DIRECTION_DESC
Response — automated strategies at scale
0xd4aa...8e2f140,798 trades100% win rate · $12M PnL
0x7164...45fe111,200 trades57% win rate · $8.2M PnL
0x2005...6a8497,782 trades55% win rate · $31.8M PnL
K
Kiyotaka Analytics API
api.kiyotaka.ai

What You Can Build

Prices + odds unlock new categories

When you can query any asset's price and any event's probability in the same call, you build things nobody else can.

Multi-exchange

Cross-Exchange Aggregation

Combine candles, open interest, and funding rates across Binance, Bybit, OKX, and more in a single API call with USD normalization.

# Aggregated BTC candles across 3 exchanges GET /v1/points?type=TRADE_SIDE_AGNOSTIC_AGG &exchange=BINANCE_FUTURES &exchange=BYBIT&exchange=OKEX_SWAP &coin=BTC&transform.groupBy.type=GROUP_BY_TYPE_SUM
Exclusive

Market Profile / TPO Analysis

TPO data only available on Kiyotaka — Point of Control, Value Area, Initial Balance Range, poor highs/lows, and single prints.

# Daily TPO with 30-minute blocks GET /v1/points?type=TPO_AGG &exchange=BINANCE_FUTURES&rawSymbol=BTCUSDT &tpoSession=TPO_SESSION_DAILY &tpoBlockSizeMinutes=30
Visualization

Orderbook Heatmap Renderer

HD and 4K orderbook heatmaps with configurable block sizes and depth. Multi-exchange aggregated views in a single request.

# 4K heatmap — finest resolution GET /v1/points?type=BLOCK_BOOK_SNAPSHOT_AGG &exchange=BINANCE_FUTURES&rawSymbol=BTCUSDT &blockSize=5&maxDepth=1000&sortDirection=SORT_DIRECTION_DESC
Prediction Markets

Polymarket Data Integration

Query prediction market events, trades, and orderbook depth through the same unified API you use for crypto exchanges.

# Discover Polymarket events GET /v1/markets?exchange=POLYMARKET&pageSize=20 # OHLCV candles for a specific event GET /v1/points?type=TRADE_SIDE_AGNOSTIC_AGG &exchange=POLYMARKET&rawSymbol={conditionId}

Prediction Markets

Every event. Every outcome.
Every trader.

Full Polymarket coverage — from market discovery to per-trader analytics. Unrealized PnL, wallet tracking, and leaderboards by category.

Live
Real-time WebSocket
Depth
Orderbook snapshots
Events
Market discovery & search
OHLCV
Per-market candles
polymarket analytics
# Discover Polymarket events
GET /v1/markets?exchange=POLYMARKET
    &pageSize=20

# Candles for a specific market
GET /v1/points?type=TRADE_SIDE_AGNOSTIC_AGG
    &exchange=POLYMARKET
    &rawSymbol={conditionId}

# Orderbook depth for a Polymarket event
GET /v1/points?type=BLOCK_BOOK_SNAPSHOT_AGG
    &exchange=POLYMARKET
    &rawSymbol={conditionId}

Data Coverage

Everything a serious builder needs

Tick-level trades to 4K orderbook heatmaps.
Crypto and prediction markets, same schema.

Crypto

Real-time and historical. One schema across every exchange.

20+Exchanges
9Data types
4KOrderbook heatmap resolution

Candles, open interest, funding rates, liquidations, volume profiles, TPO, orderbook heatmaps — all of it, every exchange, one call.

Prediction Markets

Polymarket events, candles, and orderbook depth.
Same unified API, same schema.

DepthOrderbook snapshots
EventsMarket discovery & search
LiveReal-time WebSocket streams

Market discovery, OHLCV candles, orderbook depth snapshots, and real-time streams for every Polymarket event — same endpoints as crypto.

Pricing

Start building in minutes

Weight-based rate limiting.
Pay for throughput, not per-endpoint.

Most Popular
Free
Evaluate the API
/mo
 
Get Started
Rate Limit 10 w/min
Crypto Market Data
Prediction Market Data
Heatmaps & profiles
Live Streams
Historical Data 7 days
Cross-exchange
PM analytics
Volume Analysis
Liquidation Tracking
Infrastructure
Support Community
Most Popular
Basic
Build and test
/mo
billed $990/yr 
Get Started
Rate Limit 150 w/min
Crypto Market Data
Prediction Market Data
Heatmaps & profiles
Live Streams 5
Historical Data 30 days
Cross-exchange
PM analytics
Volume Analysis
Liquidation Tracking
Infrastructure
Support Standard
Most Popular
Standard
Production ready
/mo
billed $1990/yr 
Get Started
Rate Limit 350 w/min
Crypto Market Data
Prediction Market Data
Heatmaps & profiles
Live Streams 10
Historical Data 90 days
Cross-exchange
PM analytics
Volume Analysis
Liquidation Tracking
Infrastructure
Support Priority
Most Popular
Advanced
Full platform access
/mo
billed $5990/yr 
Get Started
Rate Limit 1500 w/min
Crypto Market Data
Prediction Market Data
Heatmaps & profiles
Live Streams 15
Historical Data 1 year
Cross-exchange
PM analytics
Volume Analysis
Liquidation Tracking
Infrastructure Dedicated
Support Priority + SLA

Need more? Let's talk.

Custom rate limits, dedicated infrastructure, SLA, and everything in Advanced — built for institutional scale.

Contact Sales →

Every price. Every probability.
One call away.

Get Started →