API Documentation

MarketDNA provides a REST API for programmatic access to trading signals, strategy performance, and market analysis data.

Authentication

Include your API key in every request:

X-API-Key: dna_live_your_key_here

Generate API keys from the Settings page.

Base URL

https://dna-api.wizybit.com

Endpoints

Signals

MethodPathDescription
GET/scan/latest/filteredAll trading-ready signals
GET/scan/latest/filtered/longsLONG signals only
GET/scan/latest/filtered/shortsSHORT signals only
GET/scan/latestFull scan results (all signals incl. FLAT)

Performance

MethodPathDescription
GET/performance/summaryOverall hit rate, avg P&L
GET/performance/by-strategyPerformance by strategy
GET/performance/by-signalLONG vs SHORT breakdown
GET/performance/biasCurrent market bias

Strategies

MethodPathDescription
GET/strategiesList all strategies with DNA status
GET/calibrate/assignmentsSymbol-to-strategy assignments

Rate Limits

TierRequests/Day
Free10
Trader100
Pro1,000

Response Format

All responses are JSON. Signal endpoints return:

{
  "scan_run_id": "uuid",
  "status": "COMPLETED",
  "recommendations": [
    {
      "symbol": "AVGO",
      "signal": "LONG",
      "strategy_name": "SuperTrend",
      "confidence": 0.84,
      "sector": "Technology",
      "gap_status": "growing",
      "atr_14": 8.45,
      ...
    }
  ]
}