StockNews.AI
Stock news API

Stock news API for AI builders

Build trading agents, research assistants, and dashboards on top of structured stock news signals instead of raw headlines.

Builder example

REST API and MCP access

Agent-ready
REST request
GET https://stocknews.ai/api/news?symbol=LDOS&sentimentRating=verybullish&limit=10
MCP server URI
https://stocknews.ai/api/mcp?api_key=sn_live_your_api_key

What you get

Structured news signals for agents.

The API is designed for builders who want useful analysis first, not a pile of URLs to clean up.

Use REST when your app needs predictable stock news data by ticker, source, sentiment, event type, or market context.
Use MCP when your AI agent needs to call StockNews.AI tools directly inside ChatGPT or another MCP client.

AI-analyzed news signals

Get content summary, sentimentRating, importanceScore, relevanceScore, and stockImpactReasoning.

Source-linked results

Return original URLs, source names, source count, published time, first seen time, and grouped source context.

Event and market filters

Filter for catalysts such as earnings, M&A, share buybacks, mass contracts, lawsuits, FDA approvals, and market news.

Price tracking

Use startPrice with the signal timestamp so your bot or notebook can measure what happened after the news appeared.

How it works

From financial news to AI decisions.

Step 1

Collect

StockNews.AI monitors financial news, press releases, corporate events, filings, and economic signals.

Step 2

Analyze

The full article content is summarized, deduped, scored, linked to tickers, and labeled with event and sentiment fields.

Step 3

Build

Your app or AI agent can rank signals, trigger deeper research, backtest events, or route alerts to a trading workflow.

Sample signal fields

JSON
{
  "symbol": "LDOS",
  "sentimentRating": "verybullish",
  "eventName": "Mass Contract",
  "importanceScore": 90,
  "sentimentScore": 85,
  "relevanceScore": 95,
  "summary": "Leidos was awarded a $2.7 billion contract...",
  "startPrice": 128.33,
  "sourcesJson": [
    { "source": "PRNewswire", "sourceUrl": "..." },
    { "source": "Reuters", "sourceUrl": "..." }
  ]
}

FAQ

Common builder questions.

Is this only a raw stock news feed?

No. The response includes AI analysis fields such as sentimentRating, sentimentScore, importanceScore, relevanceScore, content summary, and reasoning.

Can I use it inside my own AI agent?

Yes. Use the REST API for your app backend or connect the MCP server URL inside a compatible AI client.

Does the API include original source URLs?

Yes. Signals can include original article URLs and sourcesJson[].sourceUrl so users and agents can verify the source.