QuantLogix Signal API

Real-time multi-factor stock signals for any US equity or ETF. One API call — composite intelligence from technical analysis, momentum, fundamentals, microstructure, and options flow.

Authentication

All API requests require an API key. Pass it via:

# Header (recommended)
curl -H "X-API-Key: ql_your_key_here" https://quantlogix.ai/api/v1/signal?ticker=NVDA

# Query parameter
curl https://quantlogix.ai/api/v1/signal?ticker=NVDA&apikey=ql_your_key_here

API Access

API access is available to Pro and Institutional subscribers. Generate keys from your profile page.

Pro

$149/mo
10,000 calls/month
Signal + News
Technical & momentum scores
Basic indicators (RSI, SMA, MACD)

Institutional

$299/mo
Unlimited
Full 5-factor signal engine
Microstructure (VPIN, OFI, smart money)
Options flow + fundamentals
Volume profile + institutional flow
Batch requests + webhooks

Endpoints

GET /api/v1/signal

Real-time composite signal for any US stock or ETF.

GEThttps://quantlogix.ai/api/v1/signal?ticker=NVDA
ParameterTypeDescription
tickerstringStock or ETF ticker symbol (required)

Response:

{
  "ticker": "NVDA",
  "signal": "Bullish",
  "composite_score": 72,
  "confidence": 55,
  "scores": {
    "technical": { "score": 78, "weight": 0.55, "details": { "rsi": 58.3, "sma_20": 132.45, "sma_50": 128.90, "sma_200": 115.20, "macd_histogram": 1.234 } },
    "momentum": { "score": 65, "weight": 0.45, "details": { "change_pct": 2.15, "volume_ratio": 1.42 } }
  },
  "price": { "current": 135.50, "prev_close": 132.75, "change": 2.75, "change_pct": 2.07, "vwap": 134.20, "volume": 45200000, "after_hours": 136.10 },
  "indicators": { "rsi": 58.3, "sma_20": 132.45, "sma_50": 128.90, "sma_200": 115.20, "macd_histogram": 1.234 },
  "microstructure": { "score": 68, "health": { "label": "Healthy" }, "bias": { "direction": "Bullish", "strength": 3 } },
  "timestamp": "2026-03-31T12:00:00.000Z"
}

GET /api/v1/microstructure

Market microstructure analysis — VPIN, Amihud illiquidity, Kyle's lambda, order flow, smart money, institutional flow. Requires Basic tier or higher.

GEThttps://quantlogix.ai/api/v1/microstructure?ticker=NVDA
ParameterTypeDescription
tickerstringStock or ETF ticker symbol (required)

Response includes: VPIN, Amihud Illiquidity, Kyle's Lambda, Roll Spread, Bid-Ask Spread, Order Flow Imbalance, RVOL, HV 30-Day, Intraday Volatility, Point of Control, Smart Money Index, Price Efficiency, Volatility Regime, Institutional Flow (buy/sell %), Volume Profile, Hourly Volume Distribution, Cumulative Volume Delta.

GET /api/v1/news

Multi-source aggregated news — Finnhub, Yahoo Finance, CNBC. Deduplicated and sorted by date. Requires Pro tier or higher.

GEThttps://quantlogix.ai/api/v1/news?ticker=NVDA&limit=10
ParameterTypeDescription
tickerstringStock or ETF ticker symbol (required)
limitintegerMax articles to return (default 10, max 50)

GET /api/v1/day-signal

QuantLogix Day-Trading Signal Score (QDTSS) — 4-layer intraday scoring with session classifier, VWAP/ORB engines, and trade plan (entry/stop/target with R:R). Institutional tier only.

GEThttps://quantlogix.ai/api/v1/day-signal?ticker=NVDA
ParameterTypeDescription
tickerstringStock or ETF ticker symbol (required)

Response includes: signal (Strong Buy / Buy / Lean Buy / Neutral / Lean Sell / Sell / Strong Sell), score, direction, layer breakdown (L1 Signal / L2 Context / L3 Risk / L4 Modifiers), session state, VWAP & ORB analysis, microstructure context, trade plan (entry/stop/target/R:R).

GET /api/v1/swing-signal

QuantLogix Swing-Trading Conviction Grade — A/B/C/D rating for 2-day to 4-week holds. Built on the same 5-factor engine as /v1/signal with swing-specific thresholds. Institutional tier only.

GEThttps://quantlogix.ai/api/v1/swing-signal?ticker=NVDA
ParameterTypeDescription
tickerstringStock or ETF ticker symbol (required)

Conviction grades: A Strong Conviction (score ≥ 75, full position, 2-4wk hold) · B Medium (60-74, half position, 1-2wk) · C Watchlist (40-59, quarter position, 2-5d) · D No Trade (0-39).

Response includes: signal, score, conviction { grade, label, position_size, hold_period }, direction, 3-pillar breakdown (Technical 40% / Flow 30% / Sentiment 30%), indicators, price, market_cap, sector.

GET /api/v1/private-companies/list

Curated database of ~30 hot private/late-stage companies (Anthropic, OpenAI, Stripe, Databricks, SpaceX, etc.) with valuations, funding rounds, investors, and IPO status. Requires Pro tier or higher.

GEThttps://quantlogix.ai/api/v1/private-companies/list?sector=AI&limit=20
ParameterTypeDescription
sectorstringFilter by sector (e.g. AI, Fintech, Defense). Optional.
qstringFree-text search across name, slug, tagline, tags. Optional.
limitintegerMax results (default 50, max 200).

GET /api/v1/private-companies/{slug}

Full profile for one private company. Requires Pro tier or higher.

GEThttps://quantlogix.ai/api/v1/private-companies/anthropic

Response includes: name, tagline, sector, founded, HQ, employees, CEO, founders, current_valuation_usd, valuation_as_of, last_round, total_raised_usd, investors, products, competitors, ipo_status, rumored_ipo_year, estimated_revenue_usd, growth_descriptor, news_topics.

GET /api/v1/private-companies/news

Recent news mentioning a private company, aggregated across 14 sources (Market Wire, Finnhub, Yahoo, CNBC, Seeking Alpha, AV, NewsAPI, MarketWatch, WSJ, Bloomberg, NYT, Reuters, AP) plus Google News. Pass slug for relevance scoring against the company's curated boost terms. Requires Pro tier or higher.

GEThttps://quantlogix.ai/api/v1/private-companies/news?q=Anthropic&slug=anthropic
ParameterTypeDescription
qstringSearch query — typically the company name (required, max 80 chars).
slugstringOptional — when set, articles are scored using the company's curated boost terms (products, CEO, news topics) for higher relevance.

Signal Values

SignalScore RangeMeaning
Bullish58-100Positive technical + momentum alignment, favorable microstructure
Neutral42-57Mixed signals, no clear directional bias
Bearish0-41Negative technicals, bearish momentum, sell pressure

Rate Limits

TierPer MinuteMonthlyEndpoints
Pro6010,000Signal (long-term), News, Private Companies
Institutional300UnlimitedAll Pro endpoints + Day Signal, Swing Signal, Microstructure, Options, Batch, Webhooks

Pro vs Institutional Response

DataProInstitutional
Signal (Bullish/Neutral/Bearish)YesYes
Composite score + confidenceYesYes
Technical + Momentum scoresScores onlyFull details
RSI, SMA 20/50/200, MACDYesYes
Fundamental score + detailsYes
Options flow + detailsYes
Microstructure (VPIN, OFI, smart money)Yes (15 metrics)
Institutional flow (buy/sell %)Yes
Volume profile + hourly distributionYes
Cumulative volume deltaYes
Market cap + sectorYes

Rate limit headers are included in every response:

X-RateLimit-Limit: 60
X-RateLimit-Monthly: 10000
X-API-Tier: pro

Error Codes

StatusMeaning
400Bad request — missing or invalid ticker
401Unauthorized — missing or invalid API key
403Forbidden — endpoint requires higher tier
404Ticker not found
429Rate limit exceeded
500Server error

Code Examples

Python

import requests

response = requests.get(
    "https://quantlogix.ai/api/v1/signal",
    params={"ticker": "NVDA"},
    headers={"X-API-Key": "ql_your_key_here"}
)
signal = response.json()
print(f"{signal['ticker']}: {signal['signal']} ({signal['composite_score']}/100)")

JavaScript

const res = await fetch("https://quantlogix.ai/api/v1/signal?ticker=NVDA", {
  headers: { "X-API-Key": "ql_your_key_here" }
});
const signal = await res.json();
console.log(`${signal.ticker}: ${signal.signal} (${signal.composite_score}/100)`);

cURL

curl -H "X-API-Key: ql_your_key_here" \
  "https://quantlogix.ai/api/v1/signal?ticker=AAPL"

Ready to get started?

Get your API key and start receiving real-time signals in minutes.

Get API Key
◆ QUANTLOGIX · Signal API v1