TaifoonTAIFOON
Taifoon · Docs
API Reference

Markets

List the markets the matcher is currently making. The canonical registry will move on-chain in Phase C; today the venue ships a hard-coded list.
GET/book/v1/markets
PLANNED
Returns the full list of markets and their settlement metadata. Not yet wired — the matcher hard-codes the list at process start. Use /book/v1/depth/<market> against the known symbols (BTC-PERP, ETH-PERP, SOL-PERP) for now.
Response
FieldTypeRequiredDescription
marketsarraynoList of market objects.
markets[].symbolstringnoe.g. "BTC-PERP".
markets[].basestringnoBase asset symbol.
markets[].quotestringnoQuote asset symbol (always "USD" in Phase A).
markets[].tick_sizestringnoMinimum price increment as a decimal string.
markets[].step_sizestringnoMinimum qty increment.
markets[].statusstringno"trading" | "paused" | "delisted".
Code
curl -s https://api.taifoon.dev/book/v1/markets | jq

Today's hard-coded list

  • BTC-PERP — REAL, matcher mid ~$78,400
  • ETH-PERP — REAL, matcher mid ~$3,520
  • SOL-PERP — REAL, matcher mid ~$195
  • NQ, ES (Cat A1 targets) — PLANNED Phase B
Note
The on-chain ListedMarketsRegistry contract on chain 36927 will be the source of truth in Phase C. Until then the symbol list is a constant in the matcher binary.