CEX Spot Transfer Arbitrage
Find executable cross-venue spot-transfer spreads after common network matching, withdrawal/deposit status, withdrawal fees, live order-book depth, slippage, and spread lifetime. Raw spot-price spreads are not shipped.
List CEX spot-transfer rows
The main scanner grid shows Rank, Coin, Route, Network, Buy Ask, Sell Bid, Net Profit, Depth, Lifetime, and Updated. Row details include gross spread, withdrawal fee, deposit/withdraw status, transfer ETA, slippage, source timestamps, and the heatmap breakdown.
The scanner only emits positive net-profit rows with live order-book depth and a common transfer network where the buy venue can withdraw and the sell venue can deposit. Net profit uses order-book fills for the requested notional, the withdrawal fee, and a 10 bps taker-fee estimate per spot leg.
When coin is omitted, Sharpe discovers active USDT spot markets from supported venues and scans the top dynamically discovered coins listed on at least two supported transfer venues. Use coin to force-check a newly listed symbol before it enters the default scan set.
Supported transfer venues are currently KuCoin, Bitget, HTX, and CoinEx. Other exchanges are excluded until we have authenticated wallet metadata for transfer fees and deposit/withdraw status.
Query parameters
- Name
coin- Type
- string
- Description
- Optional base coin.
- Name
exchanges- Type
- string
- Description
- Comma-separated exchange filter.
- Name
minApr- Type
- number
- Description
- Minimum net profit percentage for this scanner.
- Name
minDepthUsd- Type
- number
- Description
- Minimum visible order-book depth in USD.
- Name
notional- Type
- number
- Description
- Position notional in USD. Defaults to 10000.
- Name
limit- Type
- number
- Description
- Rows per page. Defaults to 100.
- Name
cursor- Type
- string
- Description
- Opaque cursor from the previous page.
Request
curl -G https://www.sharpe.ai/api/v1/arbitrage/cex-spot-transfer \
-H "Authorization: Bearer sk_live_your_key_here" \
--data-urlencode "coin=BTC" \
--data-urlencode "notional=10000"
{
"data": {
"rows": [],
"scannerMeta": {
"kind": "cex-spot-transfer",
"status": "ok",
"source": "live",
"notionalUsd": 10000,
"warnings": [
"Live CEX transfer rows use public order books and public transfer metadata from KuCoin, Bitget, HTX, CoinEx."
]
},
"pagination": { "cursor": null, "has_more": false, "total": 0 }
}
}