> api_reference
public REST API · real-time trading data · CLI tool available
> infrastructure
CLI Tool
signal-bot-cli
GitHub →
Package
PyPI
pip install →
Endpoints
6
REST
Data Sources
50+
exchanges & feeds
> endpoints
GET /api/forex-full
X-API-Key requiredReal-time trading signals — 36 major & minor forex pairs + 30 crypto + 17 stocks + 8 commodities + 12 indices. Entry, stop loss and take profit levels with confidence scoring.
> example response
{
"pair": "EUR/USD",
"last": 1.1429,
"change_pct": 0.34,
"signals": {
"forex": {
"direction": "BUY",
"confidence": 76,
"entry": 1.1429,
"stop_loss": 1.1384,
"take_profit": 1.1507
}
},
"indicators": { "15": {...}, "60": {...}, "240": {...} }
}GET /api/signals?market=X
X-API-Key requiredPre-resolved signals per market: forex, crypto, stocks, commodities, indices. Plug-and-play — direction, entry, stop loss and take profit.
> example response
{
"pair": "XAU/USD",
"market": "commodities",
"last": 4390.10,
"change_pct": -0.16,
"signal": {
"action": "SELL",
"direction": "SELL",
"confidence": 70,
"entry": 4390.10,
"stop_loss": 4611.83,
"take_profit": 4094.45
}
}GET /api/signals-v2/raw
X-API-Key requiredRaw technical indicators (RSI, Stoch, MACD, Bollinger) per timeframe — build your own scoring logic across all 6 markets.
> example response
{
"pair": "BTC/USD",
"ticker": { "last": 98765.0, "change_pct": 2.3 },
"indicators": {
"60": { "rsi": 48.2, "macd": -0.00012, "bb_position": 45.1 }
}
}GET /api/memecoin/signals
X-API-Key requiredReal-time memecoin scanner — 5 chains (SOL, BSC, BASE, ETH, Robinhood). Smart money tracking, conviction scoring, anti-rug signals.
> example response
{
"name": "BONK",
"chain": "SOL",
"mcap": 251000000,
"price": 0.0000274,
"score_candle": 25.0,
"score_smart_flow": 35.5,
"score_momentum": 27.0,
"score_dev_risk": 15.0,
"renowned": 42,
"chg_5m": 2.34,
"chg_1h": 12.87,
"liquidity": 1850000
}GET /api/calendar
X-API-Key requiredEconomic calendar — 111+ events across 8 currencies (USD, EUR, GBP, JPY, AUD, NZD, CAD, CHF). High/medium/low impact with actual vs forecast.
> example response
{
"title": "CPI (YoY)",
"currency": "USD",
"importance": 3,
"date": "2026-07-15T12:30:00Z",
"actual": "3.4%",
"forecast": "3.5%",
"previous": "3.6%",
"country": "US"
}GET /api/keys
publicRequest a free API key. Keys are approved manually — tell us about your use case.
> getting_started
> install CLI
pip install signal-bot-cli
> set API key
export SIGNALBOT_KEY=your_key_here
> get signals
signal-bot signals forex signal-bot --json signals crypto signal-bot scanner sol signal-bot calendar
> REST (direct API)
curl -H "X-API-Key: *** https://api.signal-bot.ai/api/forex-full curl -H "X-API-Key: *** https://api.signal-bot.ai/api/signals?market=commodities curl -H "X-API-Key: *** https://api.signal-bot.ai/api/signals-v2/raw?market=indices curl -H "X-API-Key: *** https://api.signal-bot.ai/api/memecoin/signals curl -H "X-API-Key: *** https://api.signal-bot.ai/api/calendar
> authentication
All endpoints (except /api/keys) require an X-API-Key header. Keys are free — request yours. Rate limit: 60 req/min per key.
> api support: api@signal-bot.ai
> open source
CLI source: github.com/hovingx/signal-bot-cli · MIT license. Data pipeline runs on proprietary infrastructure — 50+ exchanges, real-time WebSocket feeds, on-chain indexers.