# Scrape Bitcoin & Crypto News — Google News

**Use case:** 

Scrape Bitcoin, Ethereum, crypto news from Google News. Extract sentiment, sources, full text.

## Input

```json
{
  "queries": [
    "bitcoin",
    "ethereum",
    "crypto market"
  ],
  "language": "en",
  "country": "US",
  "maxArticlesPerQuery": 25,
  "dateRange": "7d",
  "includeDuplicates": false,
  "includeFullText": false,
  "outputFormat": "articles",
  "sortBy": "date",
  "maxConcurrency": 5,
  "requestTimeoutSecs": 30,
  "retryCount": 3
}
```

## Output

```json
{
  "articleId": {
    "label": "Article id"
  },
  "title": {
    "label": "Title",
    "format": "text"
  },
  "source": {
    "label": "Source",
    "format": "object"
  },
  "publishedAt": {
    "label": "Published At",
    "format": "datetime"
  },
  "url": {
    "label": "Article URL",
    "format": "link"
  },
  "description": {
    "label": "Description"
  },
  "sentiment": {
    "label": "Sentiment",
    "format": "object"
  },
  "readingTimeMinutes": {
    "label": "Read Time (min)",
    "format": "number"
  },
  "query": {
    "label": "Query"
  },
  "topics": {
    "label": "Topics"
  }
}
```

## About this Actor

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