# Scrape A Google News Topic URL

**Use case:** 

Paste any topic or section page from news.google.com - the whole address or just the id - for niches with no predefined topic. Some ids Google shows on its own front page answer 404 to the feed; the run report names those instead of returning silence.

## Input

```json
{
  "queries": [],
  "topics": [],
  "topicUrls": [
    "https://news.google.com/topics/CAAqIQgKIhtDQkFTRGdvSUwyMHZNR3QwTlRFU0FtVnVLQUFQAQ"
  ],
  "geoLocations": [],
  "includeTopStories": false,
  "edition": "US:en",
  "daysBack": 7,
  "breakFeedCap": true,
  "resolveArticleUrls": true,
  "fetchArticleMeta": false,
  "maxItems": 300,
  "onlyNew": false,
  "emitUnchanged": false,
  "titleContains": [],
  "excludeKeywords": [],
  "publishers": [],
  "excludePublishers": [],
  "publishedWithinHours": 0,
  "withUrlOnly": false,
  "minRelatedArticles": 0,
  "includeRelatedArticles": true,
  "compactOutput": false,
  "excludeEmptyFields": false
}
```

## Output

```json
{
  "title": {
    "label": "Headline",
    "format": "string"
  },
  "publisher": {
    "label": "Publisher",
    "format": "string"
  },
  "publisher_domain": {
    "label": "Domain",
    "format": "string"
  },
  "url": {
    "label": "Article URL",
    "format": "string"
  },
  "published_at": {
    "label": "Published",
    "format": "string"
  },
  "snippet": {
    "label": "Snippet",
    "format": "string"
  },
  "description": {
    "label": "Article description",
    "format": "string"
  },
  "image": {
    "label": "Image",
    "format": "string"
  },
  "related_count": {
    "label": "Other outlets",
    "format": "integer"
  },
  "source_type": {
    "label": "Found by",
    "format": "string"
  },
  "query": {
    "label": "Search term",
    "format": "string"
  },
  "topic": {
    "label": "Topic",
    "format": "string"
  },
  "geo": {
    "label": "City",
    "format": "string"
  },
  "geo_fallback": {
    "label": "City not recognised",
    "format": "boolean"
  },
  "edition": {
    "label": "Edition",
    "format": "string"
  },
  "country": {
    "label": "Country",
    "format": "string"
  },
  "language": {
    "label": "Language",
    "format": "string"
  },
  "change_type": {
    "label": "Change",
    "format": "string"
  },
  "url_resolved": {
    "label": "URL resolved",
    "format": "boolean"
  },
  "google_news_url": {
    "label": "Google News link",
    "format": "string"
  },
  "publisher_url": {
    "label": "Publisher home",
    "format": "string"
  },
  "published_timestamp": {
    "label": "Published (unix)",
    "format": "integer"
  },
  "title_raw": {
    "label": "Headline as published",
    "format": "string"
  },
  "related": {
    "label": "Related coverage",
    "format": "array"
  },
  "article_id": {
    "label": "Article id",
    "format": "string"
  },
  "scraped_at": {
    "label": "Collected at",
    "format": "string"
  }
}
```

## About this Actor

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


## How to integrate an Actor?

This Task's input is already configured above. Use it as-is rather than inventing a new one.

Do not guess an integration path. Every one of them is in the agent quickstart at https://apify.com/agents.md: the Apify MCP server, Agent Skills with the Apify CLI, the JavaScript and Python clients, the REST API, and the account-free path for an agent with no human to sign in. It also carries the rule on stating cost before the first paid run.

For full API examples (JavaScript, Python, CLI, MCP, OpenAPI), see this Task's Actor page: https://apify.com/snow_leo_data/google-news-scraper.md

Each client library has reference documentation the quickstart does not restate: [JavaScript/TypeScript](https://docs.apify.com/api/client/js/docs.md) (`npm install apify-client`) and [Python](https://docs.apify.com/api/client/python/docs.md) (`pip install apify-client`).
