# Get latest US stock market headlines from the last 24 hours

**Use case:** 

Collect today's US equity news from Bloomberg, MarketWatch, and Yahoo Finance RSS feeds. Returns structured JSON with headlines, links, tickers, and summaries f

## Input

```json
{
  "feedPreset": "us_markets",
  "feeds": [],
  "tickers": [
    "AAPL",
    "NVDA"
  ],
  "companies": [],
  "tickerMatchMode": "any",
  "includeKeywords": [
    "stock",
    "stocks",
    "market",
    "markets",
    "equity",
    "equities",
    "shares",
    "S&P",
    "Dow",
    "Nasdaq",
    "earnings",
    "IPO",
    "Nifty",
    "Sensex"
  ],
  "excludeKeywords": [],
  "maxItems": 50,
  "hoursBack": 24,
  "deduplicate": true,
  "requestTimeoutMs": 15000,
  "feedRetries": 1
}
```

## Output

```json
{
  "headline": {
    "label": "Headline",
    "format": "string"
  },
  "source": {
    "label": "Source",
    "format": "string"
  },
  "publishedDate": {
    "label": "Published date",
    "format": "string"
  },
  "tickers": {
    "label": "Detected tickers",
    "format": "array"
  },
  "summary": {
    "label": "Summary",
    "format": "string"
  },
  "articleLink": {
    "label": "Article URL",
    "format": "string"
  }
}
```

## About this Actor

This example demonstrates how to use [US Stock Market News Scraper](https://apify.com/vamsi-krishna/stock-market-news-collector) with a specific input configuration. Visit the [Actor detail page](https://apify.com/vamsi-krishna/stock-market-news-collector) to learn more, explore other use cases, and run it yourself.