# Latest Stock News by Ticker – Last 7 Days

**Use case:** 

Get recent stock news for any ticker from Finviz. Returns headlines, publication date, and full article text as clean markdown. MCP-ready for AI agents.

## Input

```json
{
  "tickers": "AAPL",
  "maxArticles": 50,
  "daysBack": 7,
  "scrapeFullText": true,
  "maxArticleLength": 15000
}
```

## Output

```json
{
  "ticker": {
    "label": "Ticker symbol",
    "format": "string"
  },
  "title": {
    "label": "Headline",
    "format": "string"
  },
  "source": {
    "label": "Source domain",
    "format": "string"
  },
  "publishedAt": {
    "label": "Published at",
    "format": "string"
  },
  "fullTextAvailable": {
    "label": "Full text available",
    "format": "boolean"
  },
  "wordCount": {
    "label": "Word count",
    "format": "integer"
  },
  "url": {
    "label": "Article URL",
    "format": "string"
  }
}
```

## About this Actor

This example demonstrates how to use [Stock News Scraper - Finviz](https://apify.com/michael_b/finviz-ticker-news) with a specific input configuration. Visit the [Actor detail page](https://apify.com/michael_b/finviz-ticker-news) to learn more, explore other use cases, and run it yourself.