A public, read-only JSON API for Quantustik's quantum-model forecasts and market-aware signals — no API key required to start. Every signal response includes verdict, conviction, an explicit entry/stop/take-profit plan, and the CI90 forecast band. OpenAPI 3.1 schema at https://quantustik.com/api/v1/openapi.json.
GET /api/v1/earnings/{ticker} — Earnings calendar for one ticker: the next and last reporting dates, and how many days away the next one is.GET /api/v1/filings/8-k/feed — A dated, page-through history of 8-K filings (the reports a company must file when something material happens).GET /api/v1/filings/digest — Site-wide feed: most recent 8-K filings across the S&P 500 (TOP-100) universe.GET /api/v1/filings/digest/10-k — Site-wide feed: most recent 10-K annual reports across the S&P 500 (TOP-100) universe.GET /api/v1/filings/digest/{ticker} — 8-K Event Digest — recent 8-K filings for one ticker, AI-summarized.GET /api/v1/filings/feed — One dated, page-through history covering every SEC filing form we store.GET /api/v1/filings/language-diff/{ticker} — What changed in the language of one company's latest SEC filing, versus the comparable filing a year (or a quarter) earlier.GET /api/v1/forecast/{ticker} — Full quantum forecast across horizons.GET /api/v1/insider/feed — Paginated, dated feed of persisted SEC Form 4 insider transactionsGET /api/v1/insider/screener — S&P 500 screener: which top-100 tickers have notable insider activity now.GET /api/v1/insider/{ticker} — Insider Pulse — recent SEC Form 4 insider transactions for one ticker.GET /api/v1/institutional/feed — A dated, page-through feed of institutional 13F holdings — who owns what, and how much.GET /api/v1/institutional/{ticker} — What the big institutional investors and activist shareholders are doing in one ticker.GET /api/v1/market — Current market state — verdict, score, signal breakdown, action planGET /api/v1/market/correlations — Cross-ticker entanglement matrix: which S&P 500 names the quantum model expects to move together.GET /api/v1/market/fear-greed — Fear & Greed index (latest cached value).GET /api/v1/market/indicators — Every market indicator we compute, in plain English, with its live contribution.GET /api/v1/signals — All tickers from the latest scan, with optional server-side filters and cursor pagination.GET /api/v1/signals/track-record — Realised outcome summary (win-rate + R-distribution) from stored events.GET /api/v1/signals/{ticker} — Quantum swing signal + forecast for one ticker.GET /api/v1/signals/{ticker}/history — Event history for a ticker: every signal opened, and how each one ended.GET /api/v1/ticker/{ticker}/indicators — Everything we compute about one stock, in plain English, with its contribution.GET /api/v1/ticker/{ticker}/too-late — "Am I too late to buy this?" — answered as an instruction with a price in it.GET /api/v1/archive/signals — Signal History Archive (JSON) — bulk stored signal + outcome events, including the misses. Pro plan required.GET /api/v1/archive/signals.csv — Signal History Archive (CSV download). Pro plan required.GET /api/v1/openapi.json — OpenAPI 3.1 schema (machine-readable).GET /.well-known/quantustik.json — Capability manifest for AI agents.WS /ws/v1/signals — Real-time signal change stream.Quantustik also runs a hosted MCP (Model Context Protocol) server at https://quantustik.com/mcp (streamable-HTTP, no API key required to start) so Claude and other MCP-compatible agents can call get_signal, get_forecast, get_market_indicators, scan_universe, get_correlation_map, and related tools directly — grounded, risk-first data with the uncertainty attached, so an agent can't over-claim on a user's behalf. The hosted endpoint is the only transport we operate: there is nothing to install and no local process to run. Every keyed response carries X-Quota-Remaining / X-Quota-Limit headers; anonymous callers get 1000 requests/hour, free API keys get 20,000/day. See API add-on plans for higher quota tiers.
No API key is required to start — anonymous access is rate-capped at 1000 requests/hour per IP; a free key raises that to 20,000/day. Every client below points at the same hosted endpoint, https://quantustik.com/mcp.
claude mcp add --transport http quantustik https://quantustik.com/mcpSettings → Connectors → Add custom connector, then paste https://quantustik.com/mcp.
Settings → Connectors → Advanced → Developer mode, then add an app with MCP server URL https://quantustik.com/mcp.
~/.cursor/mcp.json:
{
"mcpServers": {
"quantustik": {
"url": "https://quantustik.com/mcp"
}
}
}.vscode/mcp.json:
{
"servers": {
"quantustik": {
"type": "http",
"url": "https://quantustik.com/mcp"
}
}
}cline_mcp_settings.json:
{
"mcpServers": {
"quantustik": {
"type": "streamableHttp",
"url": "https://quantustik.com/mcp",
"disabled": false,
"autoApprove": []
}
}
}Add a custom MCP server with URL https://quantustik.com/mcp from the LobeHub MCP marketplace.
Educational research only — not investment advice.