Skip to content
Eden Engine

Recent News Articles for a Stock

omnial/get-stock-news

Given a stock ticker symbol, returns recent news articles that mention it: each article's publisher, a short summary of its contents, when it was published, its topic category, and every other ticker symbol the same article also touches on. Supports pagination with `limit` and `offset`, and reports the total number of matching articles across all pages.

activeper callv1
Provider
Web & Business Data Network
Category
equities
Provider price
$0.01365 per call
Latency p50 / p95
— / —
Success rate
Verified

Provider list price; Omnial MCP charges provider cost plus a platform markup on top.

Contract

input_schema.json
{
  "type": "object",
  "required": [
    "symbol"
  ],
  "properties": {
    "limit": {
      "type": "integer",
      "description": "Max results to return."
    },
    "offset": {
      "type": "integer",
      "description": "Offset for pagination."
    },
    "symbol": {
      "type": "string",
      "description": "Stock symbol (e.g. AAPL)."
    },
    "asset_class": {
      "type": "string",
      "description": "Asset class: stocks, etf, mutualfunds, crypto."
    }
  },
  "additionalProperties": false
}
output_schema.json
{
  "type": "object",
  "properties": {
    "data": {
      "type": "object",
      "properties": {
        "news": {
          "type": "object",
          "properties": {
            "articles": {
              "type": "array",
              "items": {
                "type": "object",
                "properties": {
                  "id": {
                    "type": "integer",
                    "description": "The provider's internal article id -- useful for deduplicating across paginated calls, not a customer-meaningful value on its own."
                  },
                  "ago": {
                    "type": "string",
                    "description": "Human-readable relative time since publication, e.g. '12 hours ago'."
                  },
                  "url": {
                    "type": "string",
                    "description": "Relative path to the full article, e.g. '/articles/...' -- not a complete, clickable link on its own."
                  },
                  "image": {
                    "type": "string",
                    "description": "Relative path to an article thumbnail image; frequently an empty string when no image is set."
                  },
                  "title": {
                    "type": "string",
                    "description": "The article headline."
                  },
                  "created": {
                    "type": "string",
                    "description": "Publish date as a human-readable string, e.g. 'Sep 6, 2026' -- not an ISO date."
                  },
                  "publisher": {
                    "type": "string",
                    "description": "e.g. 'The Motley Fool', 'MarketBeat', 'Zacks'."
                  },
                  "description": {
                    "type": "string",
                    "description": "A short summary of the article's contents."
                  },
                  "primaryTopic": {
                    "type": "string",
                    "description": "Topic category plus an internal numeric id, e.g. 'Markets|4006'."
                  },
                  "primarySymbol": {
                    "type": "string",
                    "description": "The ticker symbol this article is primarily about, lowercase (e.g. 'aapl'). Observed as an empty string on articles that cover a broader topic rather than one specific company."
                  },
                  "relatedSymbols": {
                    "type": "array",
                    "items": {
                      "type": "string"
                    },
                    "description": "Every ticker symbol the article touches on, including `primarySymbol`, as 'symbol|assetClass' pairs, e.g. 'aapl|stocks', 'btc|crypto'."
                  },
                  "primaryTopicUrl": {
                    "type": "string",
                    "description": "Relative site path for the topic page, e.g. '/topic/markets' -- not a full URL."
                  }
                },
                "additionalProperties": true
              },
              "description": "One entry per matching article, most recent first."
            },
            "totalRecords": {
              "type": "integer",
              "description": "Total number of articles matching the query across all pages, not just this page. Observed as 500 (an apparent unbounded/capped count) on both fixtures."
            }
          },
          "additionalProperties": true
        }
      },
      "additionalProperties": true
    },
    "status": {
      "type": "string",
      "description": "'success' on both fixtures observed."
    }
  },
  "description": "The news record, as returned at routing.responseResultPath ($.output).",
  "additionalProperties": true
}

Pricing

Every real charge, itemised. A model that quietly omits one is a slow financial leak, so nothing here is rolled up, and a charge that only applies to some inputs says so rather than being added in.

Prices in this catalog are the provider's own list price, not your bill: Omnial MCP charges provider cost plus a platform markup on top, so what you are charged is higher than the figure shown. For the exact amount a specific call will cost, run omnial_execute with dry_run: true; that number includes the markup and is what we hold while the call runs. It is a quote, not a cap on the charge.

ChargeRate
Per call
Flat, regardless of what comes back
$0.01365
Cost basis
Not recorded

This tool's catalog entry does not record how its final bill is determined, so we will not tell you whether its cost is fixed before the call or reported by the provider afterwards. Either way what is held is a quote rather than a cap: you are charged what the call actually costs, bounded at 2x the quote.

Updated
Sep 8, 2026