Changelog

Everything we ship

New data, API changes, and fixes — newest first.

ImprovementAPI

API rate limits are now clear by plan

We added plan-based API rate limits to protect normal research traffic and made the limits visible on Pricing.

  • Free Beta — 30 free endpoint requests/min and 600 charged endpoint requests/min.
  • Beta Pass — more room for bursty agents: 180 free endpoint requests/min and 1,200 charged endpoint requests/min.
  • Clear 429s — API responses now include retry headers when you hit a limit, so your client knows when to try again.
FeatureAPIMCP

Your saved holdings and profile, now readable by agents

Agents can now read the holdings and financial profile you configured under Dashboard → Profile — so a connected MCP client can answer "how concentrated is my portfolio?" before reaching for the paid market-data tools.

  • personal_holdings — lists your saved positions (symbol, asset class, quantity, market value, optional cost basis, currency, as-of date). Optional asset_class filter and limit (default 30, max 50). Also available as GET /api/personal/holdings.
  • personal_profile — returns your saved risk preference, investment horizon, base currency, and notes. Also available as GET /api/personal/profile.
  • Read-only and scoped to you — both read only your own account and never see anyone else's data. There is no write path: agents cannot add, edit, or delete your holdings. Both cost 0 credits.

Existing keys can now read your saved data

These tools are read-only and only ever return your own account's data, but any API key or Remote MCP connector already linked to your account can now read the holdings and profile you saved in your Profile. If you don't want an agent to see this, clear those fields under Dashboard → Profile — removing the data is the off switch.

FeatureAPIMCPAgent

Intraday 1h bars for US equities

US equities now have an intraday companion to daily prices. Ask how a stock traded today or over the last few sessions — whether it gapped, reversed, or faded into the close — without pulling overly fine minute-level data.

  • New equity_intraday_prices tool and GET /api/equity/intraday endpoint return 1h regular-session OHLCV bars for a single US equity.
  • Pull the most recent bars with limit (default 35, ~5 trading days), or a short window with start_date + end_date (up to 14 calendar days).
  • Regular session only, closed bars only — the current, still-forming bar is never included. time is an ISO 8601 UTC timestamp.
  • Try it from the Dashboard Sandbox under Equity, and enable it in the Agent Playground's Equity tools when Data MCP is on.

Daily vs intraday

Daily history stays with equity_historical_prices (adjusted close, dividends, splits, long lookback). Reach for equity_intraday_prices when the question is about recent intraday movement.

HighlightFeatureAgent

Automations: schedule the LLMQuant agent to run on its own

Automations let you schedule LLMQuant's cloud agent to run a read-only financial workflow on its own — daily, weekly, or monthly — and save every run to your Agent history to read later. Each run is a one-shot report that finishes in the cloud, so nothing depends on your browser staying open.

  • Open Dashboard → Automations to create one. Start from a template — Daily Market Brief, Weekly Portfolio Review, or SEC Filing Watch — or write your own prompt with date variables like {{today}} and {{week_start}}.
  • Configure the schedule preset and timezone, the model, the Data MCP tools and LLMQuant Skills the run may use, and whether it can read your Personal context (off by default).
  • Manage a run from its detail page: Run now, Pause, Resume, Edit, or Delete. The latest 30 runs are listed, and each finished run opens as a read-only thread in the Agent Playground.
  • Glance at your automations without leaving the Agent Playground — the session rail now shows a quick preview with inline pause/resume.

Automations are a Beta Pass feature: Beta includes one active automation, and Free accounts can preview the page and draft a config. Memory is coming next.

FeatureAPIAgent

Prediction Markets are easier to try across LLMQuant Data

Prediction Markets are now easier to try from the places you already work in LLMQuant Data. You can start from a finance prediction event card, read its related markets, and then pull a probability history for the outcome you care about.

  • Use polymarket_event_search for natural-language questions such as Fed rate cut odds, Bitcoin ETF approval, or company earnings.
  • Use polymarket_event_browse when you want a list or exact filters such as q=ETF, tag=macro, status=active, or min_volume=10000.
  • Read the selected event with polymarket_event_read before choosing a child market. Then use polymarket_market_read and polymarket_price_history for market details and probability history.
  • Try the full flow from the Dashboard Sandbox. Endpoint search now helps you jump straight to the Prediction Markets group.
  • Ask the Agent Playground about finance prediction events and market-implied odds; the playground can now call these tools when Data MCP is enabled.
  • Track Prediction Markets credit usage as its own category in the Dashboard, instead of having it grouped under Other.

See the Prediction Markets Events docs for the full event workflow and parameter guide.

HighlightFeature

Beta is live: plans, pricing, and one-click checkout

LLMQuant Data is now in public Beta. Sign up, pick a plan, and start pulling agent-ready financial data in minutes — no sales call, no waitlist.

Plans & billing

  • Free Beta — start free with monthly credits.
  • Beta Pass — a one-time pass that adds a larger credit balance for 30 days.
  • Pricing — see exactly what credits and limits each plan includes.
  • One-click checkout — buy the Beta Pass through Stripe; credits land automatically.
  • Dashboard — manage your key, watch usage, and grab a Beta Pass.

What you can pull today

  • Market data — historical bars for equities and crypto, plus live crypto snapshots.
  • Macro indicators — curated FRED series, with as-revised values.
  • SEC filings — 10-K / 10-Q / 8-K sections and Form 13F holdings.
  • Research — semantic search and read over quant papers.

New here?

The fastest way in is the Data MCP server or the Agent Playground — point your agent at us and ask. One key from your dashboard connects everything.

FeatureSkills

LLMQuant Skills: reusable agent workflows, in the open

We published LLMQuant Skills as a public repo — reusable, agent-ready workflows that turn a single ask into a full research routine.

  • Browse and run them in the Agent Playground.
  • Public, with new skills showing up as we ship them.
FeatureAgent

Agent Playground: chat with your data in the browser

The Agent Playground is live. Ask in plain English and watch an agent pull market data, filings, macro, and research — right in the browser, no setup.

  • Runs on the same key as the Data MCP server and REST API.
  • See every tool call and result as the agent works.
FeatureMCP

Data MCP server: pull financial data straight into your agent

Our Data MCP server is live on npm as @llmquant/data-mcp. Point any MCP-compatible client (Claude, Cursor, …) at it and your agent calls our data tools natively — no glue code.

  • Works with your existing API key.
  • Market data, filings, macro, and research — all as agent-callable tools.
  • Setup in the docs.