← ClaudeAtlas

strike-market-datalisted

Reading Strike Finance market data from the public REST Price Service - mark and index price, order book depth, spread, funding, open interest, 24h statistics, candles and per-market trading constraints. No key, no account. Use for market briefs, liquidity reads before execution, and candle history for backtests. Read-only.
Mendurim/strikegrok-trading-desk · ★ 0 · AI & Automation · score 75
Install: claude install-skill Mendurim/strikegrok-trading-desk
# Strike market data The desk reads markets from Strike's **public REST Price Service**. It needs no token and touches no account, which is why the desk can brief a market before it can trade one. Execution uses the signed API (`strike-orders`) with the same `-USD` symbols, so nothing needs translating. Every figure the desk quotes carries its source and a UTC time. ## 1. Base URLs | | | | --- | --- | | Mainnet | `https://api.strikefinance.org/price` | | Testnet | `https://api-v2-testnet.strikefinance.org/price` | | Public WebSocket | `wss://api.strikefinance.org/ws/price` | Base path `/v2`. All endpoints below are `GET`, unauthenticated, and Binance-shaped. Testnet quotes four markets and its books are routinely empty. That is a real state, not a failed read - see section 7. ## 2. Every read the desk uses ```bash BASE=https://api.strikefinance.org/price curl -sS "$BASE/v2/exchangeInfo" # every market + tick/lot/minNotional curl -sS "$BASE/v2/ticker/price?symbol=BTC-USD" # last price curl -sS "$BASE/v2/ticker/bookTicker?symbol=BTC-USD" # best bid / best ask curl -sS "$BASE/v2/ticker/24hr?symbol=BTC-USD" # change, high, low, volume curl -sS "$BASE/v2/premiumIndex?symbol=BTC-USD" # mark, index, funding, nextFundingTime curl -sS "$BASE/v2/markPrice?symbol=BTC-USD" # mark alone curl -sS "$BASE/v2/indexPrice?symbol=BTC-USD" # index alone curl -sS "$BASE/v2/openInterest?symbol=BTC-USD"