Skip to content

Commit cdf4de0

Browse files
committed
Drop 'public — no auth required' README claims (same bug surface)
The Exchange and Marketplace sections claimed those endpoints accepted anonymous calls. The auth-header fix in this PR establishes that EVERY endpoint on api.cryptohopper.com/v1/* requires a real token (the AWS API Gateway has no anonymous routes), so the README labels were misleading. Replaces them with comments that match reality.
1 parent e3136cd commit cdf4de0

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -71,7 +71,7 @@ ch.hoppers.config_get(42)
7171
ch.hoppers.config_update(42, {"strategy_id": 99})
7272
ch.hoppers.panic(42)
7373

74-
# Exchange (public — no auth required)
74+
# Exchange — market data (still requires a real token; the gateway has no anonymous routes)
7575
ch.exchange.ticker(exchange="binance", market="BTC/USDT")
7676
ch.exchange.candles(exchange="binance", market="BTC/USDT", timeframe="1h")
7777
ch.exchange.orderbook(exchange="binance", market="BTC/USDT")
@@ -92,7 +92,7 @@ ch.backtest.list()
9292
ch.backtest.cancel(1)
9393
ch.backtest.limits()
9494

95-
# Marketplace (public — no auth required)
95+
# Marketplace — same auth requirement as everything else
9696
ch.market.signals(type="buy")
9797
ch.market.signal(99)
9898
ch.market.items(type="strategy")

0 commit comments

Comments
 (0)