# Analyze Cryptocurrency News Sentiment and Market Trends

**Use case:** 

Scrape recent news articles related to major cryptocurrencies to gauge market sentiment and identify potential price drivers. This is invaluable for crypto trad

## Input

```json
{
  "queries": [
    "Bitcoin price analysis",
    "Ethereum market forecast",
    "Solana news update"
  ],
  "maxResultsPerQuery": 40,
  "language": "en",
  "country": "US",
  "dateRange": "1h",
  "siteFilter": "coindesk.com OR cryptoslate.com OR theblockcrypto.com",
  "extractFullText": true,
  "includeImages": false,
  "maxConcurrency": 5
}
```

## Output

```json
{
  "query": {
    "label": "Query",
    "format": "text"
  },
  "title": {
    "label": "Title",
    "format": "text"
  },
  "source": {
    "label": "Source",
    "format": "text"
  },
  "domain": {
    "label": "Domain",
    "format": "text"
  },
  "publishedAt": {
    "label": "Published",
    "format": "text"
  },
  "url": {
    "label": "URL",
    "format": "link"
  },
  "snippet": {
    "label": "Snippet",
    "format": "text"
  },
  "scrapedAt": {
    "label": "Scraped At",
    "format": "text"
  }
}
```

## About this Actor

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