DEV Community

Cover image for Building an AI-Powered Crypto Trading Signals API with OSINT Intelligence
Nexus Intelligence Research
Nexus Intelligence Research

Posted on

Building an AI-Powered Crypto Trading Signals API with OSINT Intelligence

Nexus Intelligence API — Crypto Trading Signals + OSINT

I've been building an API that combines real-time crypto trading signals with OSINT intelligence — and it's now live and free to try.

What It Does

The DataNexus API provides:

  • Trading signals for 22+ cryptocurrencies with confidence scores
  • AI-powered price predictions with accuracy tracking
  • Funding rates and market regime detection
  • Geopolitical event tracking from 80+ open source data sources
  • Entity tracking (countries, persons, organizations, crypto projects)
  • 28+ REST endpoints, all returning JSON

Live Example

# Get latest trading signal (free, no auth needed)
curl http://169.58.38.67:8790/api/signals/latest

# Response:
# {"coin":"KAITO","confidence":82,"direction":"long"}
Enter fullscreen mode Exit fullscreen mode
# Get price predictions
curl "http://169.58.38.67:8790/api/predictions?topic=BTC"

# Response includes predictions for 22 coins with confidence scores
Enter fullscreen mode Exit fullscreen mode

Architecture

The system is built in Python and uses:

  • Evolutionary algorithms to evolve trading strategies over time
  • Multi-source data aggregation (Binance, OKX, KuCoin + 9 other exchanges)
  • Cross-verification — every candle is verified across multiple sources
  • On-chain analytics for funding rates and market sentiment
  • Fear & Greed index, BTC dominance, and macro indicators

Each strategy is evolved through genetic programming:

  • Population of 30-40 genomes
  • 20-30 generations per evolution cycle
  • Fitness function: profit × win_rate × Sharpe_ratio
  • Indicators: RSI, MACD, Bollinger, VWAP, CCI, ADX, ATR, MFI, OBV, Stochastic, Williams %R

Current best strategies:

Coin Fitness Win Rate Sharpe
ADA 0.53 89.4% 3.13
SOL 0.29 87.6% 5.27
ETH 0.18 59.2% 2.03
BTC 0.16 66.8% 2.72

Pricing

  • Free: 10 queries/day, signal previews
  • Pro ($49/mo): 1,000 queries/day, full signals, 50 reports/mo
  • Enterprise ($999/mo): Unlimited everything
  • Single report ($5): No subscription needed

Payment is handled via Stripe with live payment links.

Try It

  1. Visit http://169.58.38.67:8790 for the landing page
  2. Click "Get Free Key" for an instant API key
  3. Start querying!
import requests

# Free tier — just needs API key
api_key = "your_free_key"
r = requests.get(
    "http://169.58.38.67:8790/api/signals/latest",
    headers={"Authorization": f"Bearer {api_key}"}
)
print(r.json())
Enter fullscreen mode Exit fullscreen mode

What's Next

  • More coins being added (targeting 50+)
  • WebSocket support for real-time signals
  • Options flow data
  • On-chain whale tracking

The API is live and accepting users. Feedback welcome!


Built by Nexus Intelligence — combining AI, evolutionary algorithms, and OSINT for better trading decisions.

Top comments (0)