# Scrape financial markets news

**Use case:** 

Extract Google News headlines on stock markets, Federal Reserve, and inflation. Filter by past day or week, JSON output.

## Input

```json
{
  "queries": [
    "stock market",
    "Federal Reserve",
    "inflation"
  ],
  "topics": [],
  "maxResultsPerQuery": 50,
  "extractFullText": false,
  "dateRange": "past_day",
  "language": "en",
  "country": "US"
}
```

## Output

```json
{
  "title": {
    "label": "Title",
    "format": "text"
  },
  "source": {
    "label": "Source",
    "format": "text"
  },
  "sourceUrl": {
    "label": "Source URL",
    "format": "link"
  },
  "publishedAt": {
    "label": "Published",
    "format": "text"
  },
  "url": {
    "label": "Google News URL",
    "format": "link"
  },
  "articleUrl": {
    "label": "Article URL",
    "format": "link"
  },
  "snippet": {
    "label": "Snippet",
    "format": "text"
  },
  "query": {
    "label": "Query",
    "format": "text"
  },
  "text": {
    "label": "Full text",
    "format": "text"
  }
}
```

## About this Actor

This example demonstrates how to use [Google News Scraper + Article Extractor](https://apify.com/phantom_coder/google-news-scraper) with a specific input configuration. Visit the [Actor detail page](https://apify.com/phantom_coder/google-news-scraper) to learn more, explore other use cases, and run it yourself.