Nasdaq Data API: Quotes, Financials, IPOs, and More

Updated:
Nasdaq Data API: Quotes, Financials, IPOs, and More

Anysite now exposes nine Nasdaq data endpoints via REST API, MCP server, and CLI โ€” giving developers structured access to real-time quotes, financial statements, IPO calendars, dividend histories, earnings estimates, historical OHLCV bars, stock screener, company news, and ticker search. No Nasdaq developer account or market data agreement required.

What is available

The Nasdaq endpoint family covers the full stack of US equities data that typically requires costly vendor agreements:

  • /api/nasdaq/quotes โ€” Real-time quote with price, bid/ask, volume, market cap, 52-week range, sector, Nasdaq-100 flag, and dividend yield.
  • /api/nasdaq/quotes/financials โ€” Full GAAP financials: income statement, balance sheet, cash flow statement, and financial ratios. Annual and quarterly frequency.
  • /api/nasdaq/quotes/earnings โ€” Quarterly EPS history and estimates: actual vs consensus EPS, upcoming flag for future periods.
  • /api/nasdaq/quotes/dividends โ€” Dividend payment history with ex-date, record date, payment date, amount, and currency.
  • /api/nasdaq/quotes/history โ€” Historical OHLCV bars with custom date ranges. Covers stocks and ETFs.
  • /api/nasdaq/quotes/screener โ€” Screen stocks by exchange, market cap, sector, region, and analyst recommendation.
  • /api/nasdaq/quotes/search โ€” Ticker and company name search with exchange, asset class, industry, and Nasdaq-100 membership.
  • /api/nasdaq/ipos โ€” Monthly IPO calendar with status (upcoming, priced, filed, withdrawn), offer price, shares offered, and offer amount.
  • /api/nasdaq/news โ€” Recent news articles per ticker from Nasdaq's news feed, with publisher, topics, and related symbols.

Who this is for

The endpoint family is designed for developers building equity research tools, portfolio apps, backtesting engines, IPO trackers, AI-powered stock analysis agents, and any application that needs structured US market data without the overhead of exchange agreements or Bloomberg API contracts.

All nine endpoints are available via the Anysite MCP server, so they can be called directly from Claude Desktop, Claude Code, Cursor, and ChatGPT on the MCP Unlimited plan.

Getting started

Authenticate with your Anysite API key and call any endpoint via POST with a JSON body. A real-time quote is one request:

curl https://api.anysite.io/api/nasdaq/quotes \
  -H "access-token: YOUR_KEY" \
  -d '{"symbol":"AAPL"}'

For full endpoint reference, parameter tables, code examples, and pricing, see the Nasdaq Data API endpoint page.