# Google News API for n8n workflows

**Use case:** 

Plug Google News into n8n: call this API from an HTTP node and get article titles, sources, links, snippets, and dates back as clean JSON.

## Input

```json
{
  "q": "artificial intelligence",
  "location": "Austin, TX, Texas, United States",
  "google_domain": "google.com",
  "lr": "lang_en",
  "safe": "off",
  "nfpr": "0",
  "filter": "0",
  "max_pages": 1
}
```

## Output

```json
{
  "page_number": {
    "label": "Current Page Number",
    "format": "integer"
  },
  "search_timestamp": {
    "label": "Search Timestamp",
    "format": "string"
  },
  "search_parameters": {
    "label": "Search Parameters",
    "format": "object"
  },
  "search_metadata": {
    "label": "Search Metadata",
    "format": "object"
  },
  "news_results": {
    "label": "News Results",
    "format": "array"
  }
}
```

## About this Actor

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