> api_reference

public REST API · real-time trading data · CLI tool available

> infrastructure

CLI Tool

signal-bot-cli

GitHub →

Package

PyPI

pip install →

Endpoints

4

REST

Data Sources

50+

exchanges & feeds

> endpoints

GET /api/forex-full

X-API-Key required

Real-time forex signals — 10 major & minor pairs, 7 timeframes, BB/MACD/Stoch/RSI indicators.

> 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/memecoin/signals

X-API-Key required

Real-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 required

Economic 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

public

Request 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: YOUR_KEY" https://api.signal-bot.ai/api/forex-full
curl -H "X-API-Key: YOUR_KEY" https://api.signal-bot.ai/api/memecoin/signals
curl -H "X-API-Key: YOUR_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.