# Google News RSS - Residential IPs (`exotic_integrity/google-news-rss-residential-ips`) Actor

Pull Google News RSS for any query through 23 real US residential IPs (Verizon AS701). BYOK against the MoneyMaker Residential Scraping API.

- **URL**: https://apify.com/exotic\_integrity/google-news-rss-residential-ips.md
- **Developed by:** [Kevin Yen](https://apify.com/exotic_integrity) (community)
- **Categories:** Developer tools, Automation, News
- **Stats:** 1 total users, 0 monthly users, 0.0% runs succeeded, NaN bookmarks
- **User rating**: No ratings yet

## Pricing

Pay per usage

This Actor is paid per platform usage. The Actor is free to use, and you only pay for the Apify platform usage, which gets cheaper the higher subscription plan you have.

Learn more: https://docs.apify.com/platform/actors/running/actors-in-store#pay-per-usage

## What's an Apify Actor?

Actors are a software tools running on the Apify platform, for all kinds of web data extraction and automation use cases.
In Batch mode, an Actor accepts a well-defined JSON input, performs an action which can take anything from a few seconds to a few hours,
and optionally produces a well-defined JSON output, datasets with results, or files in key-value store.
In Standby mode, an Actor provides a web server which can be used as a website, API, or an MCP server.
Actors are written with capital "A".

## How to integrate an Actor?

If asked about integration, you help developers integrate Actors into their projects.
You adapt to their stack and deliver integrations that are safe, well-documented, and production-ready.
The best way to integrate Actors is as follows.

In JavaScript/TypeScript projects, use official [JavaScript/TypeScript client](https://docs.apify.com/api/client/js.md):

```bash
npm install apify-client
```

In Python projects, use official [Python client library](https://docs.apify.com/api/client/python.md):

```bash
pip install apify-client
```

In shell scripts, use [Apify CLI](https://docs.apify.com/cli/docs.md):

````bash
# MacOS / Linux
curl -fsSL https://apify.com/install-cli.sh | bash
# Windows
irm https://apify.com/install-cli.ps1 | iex
```bash

In AI frameworks, you might use the [Apify MCP server](https://docs.apify.com/platform/integrations/mcp.md).

If your project is in a different language, use the [REST API](https://docs.apify.com/api/v2.md).

For usage examples, see the [API](#api) section below.

For more details, see Apify documentation as [Markdown index](https://docs.apify.com/llms.txt) and [Markdown full-text](https://docs.apify.com/llms-full.txt).


# README

## Google News RSS - Residential IPs

Pull Google News RSS for any query through a real US residential IP
(Verizon AS701) and get back parsed news items plus the raw RSS XML. Each
request rotates LRU through a 23-IP residential pool. Every dataset item
includes the literal egress IP so you can verify it yourself with
`ipapi.com` or WHOIS.

This Actor is a thin wrapper around the **MoneyMaker Residential Scraping
API**'s `/v1/scrape/google-news/rss` endpoint. Apify hosts and runs the
Actor; the residential proxy fleet runs on Hetzner with Verizon AS701 ISP
proxies. Apify does **not** charge for this Actor — you bring your own API
key from the MoneyMaker listing on RapidAPI (or directly from the
publisher).

---

### Why residential matters for Google News

Google News applies the same kind of ASN-level filtering that Search does:
high-volume datacenter ranges (AWS, GCP, DO, Azure) get throttled, get
served degraded interstitials, or hit a CAPTCHA the moment they cross a
volume threshold across the /24. Residential ASNs are treated as ordinary
home users.

For the RSS endpoint specifically:
- Datacenter IPs that hammer `news.google.com/rss?q=...` start hitting a
  CAPTCHA HTML response in place of XML, often within 50-200 requests.
- A Verizon AS701 IP holds steady for thousands of requests per day at a
  polite cadence. The 23-IP pool absorbs bursts.

---

### Use cases

- **News monitoring** — daily polling of `q="<your brand>"` plus
  `q="<your competitors>"`, push deltas to Slack / Linear / a database.
- **Brand-mention tracking** — geographic + language coverage by varying
  `gl` / `ceid` (e.g. US:en, GB:en, DE:de, JP:ja).
- **AI training pipelines** — fresh news headline corpus by topic or
  domain, Google's de-dup + clustering already applied via the RSS feed.
- **Content aggregation** — feed a topic newsletter / Discord / RSS reader
  with curated, source-attributed items.
- **Trend analysis** — count headline volume by topic-by-day to model
  attention cycles.

---

### Inputs

| Field        | Type            | Required | Description                                                |
| ------------ | --------------- | -------- | ---------------------------------------------------------- |
| `q`          | string          | yes      | Google News query string (`OpenAI`, `site:reuters.com AI`) |
| `hl`         | string          | no       | UI language tag, default `en-US`                           |
| `gl`         | string          | no       | Two-letter country code, default `US`                      |
| `ceid`       | string          | no       | Country-edition pair, default `US:en`                      |
| `apiKey`     | string (secret) | yes      | Your MoneyMaker API key (`mm_sk_...`)                      |
| `apiBaseUrl` | string          | no       | Default: the public MM origin                              |
| `verifyTls`  | boolean         | no       | Default true                                               |

---

### Output

Two kinds of dataset items per run.

#### 1. The raw response (one per run)

```json
{
  "kind": "raw_response",
  "ok": true,
  "request_id": "req_w-v8wa1qZ79YcihQ",
  "status_code": 200,
  "ip_used": "65.195.39.208",
  "proxy_node": "Hetzner-12",
  "headers": { "content-type": "application/xml; charset=UTF-8" },
  "body": "<?xml version=\"1.0\" encoding=\"UTF-8\"?><rss>...",
  "body_truncated": false,
  "upstream_latency_ms": 1380,
  "actor_latency_ms": 1450,
  "search": { "q": "OpenAI", "hl": "en-US", "gl": "US", "ceid": "US:en" }
}
````

#### 2. One parsed news item per dataset item

```json
{
  "kind": "news_item",
  "ok": true,
  "title": "OpenAI announces new pricing tier for enterprise customers",
  "link": "https://news.google.com/rss/articles/CBMi...",
  "pub_date": "Tue, 06 May 2026 14:30:00 GMT",
  "guid": "CBMi...",
  "source_name": "Reuters",
  "source_url": "https://www.reuters.com",
  "description_html": "<ol><li><a href=\"...\">...</a>...</li></ol>",
  "description_text": "...",
  "ip_used": "65.195.39.208",
  "search": { "q": "OpenAI", "hl": "en-US", "gl": "US", "ceid": "US:en" }
}
```

The Actor's key-value store also gets a `SUMMARY` record with the search
inputs, parsed-item count, the residential IP used, and timing.

***

### How it works

```
Apify run
    │
    ▼
Actor (this code)
    │   GET /v1/scrape/google-news/rss?q=...&hl=...&gl=...&ceid=...
    │   Authorization: Bearer <your MM key>
    ▼
MoneyMaker Scraping API
    │   Picks an LRU residential proxy from the 23-IP pool
    ▼
Verizon AS701 home-broadband IP
    │   GET https://news.google.com/rss/search?...
    ▼
Google returns RSS XML → JSON wrapper to Actor → push_data
```

You only pay MoneyMaker for the underlying calls — Apify is free. Costs
follow the MoneyMaker pricing tiers on RapidAPI.

***

### Pacing guidance

- One run is one upstream call. To monitor multiple queries, schedule
  multiple runs (Apify's scheduler supports cron-like cadence).
- Google News RSS is generally cache-friendly — items don't churn faster
  than Google's editorial ranking re-ranks (every 5-15 minutes per query).
  Hourly polling is plenty for most monitoring use cases.
- Cache the `guid` of items already seen to dedupe across runs.

***

### Limitations

- **RSS only.** No full article body. The `link` redirects through Google
  News's URL wrapper to the original publisher; if you need full article
  text, follow the link with the `residential-web-scraper` Actor.
- **No JS rendering.** Static XML only.
- **US residential only.** All egress is Verizon AS701 / United States.
  You can still ask Google for any country edition via `gl` / `ceid`, but
  the request itself originates from a US IP.
- **No CAPTCHA solving.** If Google returns a challenge instead of XML,
  you'll see the challenge HTML — it's not auto-solved.
- **Body cap of 2 MB** per response.

***

### Source & support

The Actor source lives at
[`sksyen/moneymaker-dashboard/scripts/apify_actor_google_news_rss`](https://github.com/sksyen/moneymaker-dashboard).
Issues and feature requests go on the GitHub repo. Underlying API contract
is published as OpenAPI 3.0 at the `/openapi.yaml` path on the origin.

# Actor input Schema

## `q` (type: `string`):

Google News query string. Supports the same syntax as the news.google.com search box, including 'site:', 'when:7d', 'AND/OR', etc.

## `hl` (type: `string`):

BCP-47 language tag for the result UI, e.g. en-US, en-GB, es-ES, ja, fr.

## `gl` (type: `string`):

Two-letter country code that scopes the news edition, e.g. US, GB, JP, DE.

## `ceid` (type: `string`):

Country-edition pair as 'COUNTRY:LANG', e.g. US:en, GB:en, JP:ja. Should match `hl` and `gl`.

## `apiKey` (type: `string`):

Your API key from the MoneyMaker Residential Scraping API (sign up via the listing on RapidAPI or contact for a direct key). Format: mm\_sk\_... — paste the bare token, not the Bearer header.

## `apiBaseUrl` (type: `string`):

Public endpoint of the Residential Scraping API. Provided by your API key issuer.

## `verifyTls` (type: `boolean`):

Disable only if pointing at a bare-IP origin without a valid cert. Default true.

## Actor input object example

```json
{
  "q": "OpenAI",
  "hl": "en-US",
  "gl": "US",
  "ceid": "US:en",
  "apiBaseUrl": "https://api.example.com:8443",
  "verifyTls": true
}
```

# API

You can run this Actor programmatically using our API. Below are code examples in JavaScript, Python, and CLI, as well as the OpenAPI specification and MCP server setup.

## JavaScript example

```javascript
import { ApifyClient } from 'apify-client';

// Initialize the ApifyClient with your Apify API token
// Replace the '<YOUR_API_TOKEN>' with your token
const client = new ApifyClient({
    token: '<YOUR_API_TOKEN>',
});

// Prepare Actor input
const input = {
    "q": "OpenAI"
};

// Run the Actor and wait for it to finish
const run = await client.actor("exotic_integrity/google-news-rss-residential-ips").call(input);

// Fetch and print Actor results from the run's dataset (if any)
console.log('Results from dataset');
console.log(`💾 Check your data here: https://console.apify.com/storage/datasets/${run.defaultDatasetId}`);
const { items } = await client.dataset(run.defaultDatasetId).listItems();
items.forEach((item) => {
    console.dir(item);
});

// 📚 Want to learn more 📖? Go to → https://docs.apify.com/api/client/js/docs

```

## Python example

```python
from apify_client import ApifyClient

# Initialize the ApifyClient with your Apify API token
# Replace '<YOUR_API_TOKEN>' with your token.
client = ApifyClient("<YOUR_API_TOKEN>")

# Prepare the Actor input
run_input = { "q": "OpenAI" }

# Run the Actor and wait for it to finish
run = client.actor("exotic_integrity/google-news-rss-residential-ips").call(run_input=run_input)

# Fetch and print Actor results from the run's dataset (if there are any)
print("💾 Check your data here: https://console.apify.com/storage/datasets/" + run["defaultDatasetId"])
for item in client.dataset(run["defaultDatasetId"]).iterate_items():
    print(item)

# 📚 Want to learn more 📖? Go to → https://docs.apify.com/api/client/python/docs/quick-start

```

## CLI example

```bash
echo '{
  "q": "OpenAI"
}' |
apify call exotic_integrity/google-news-rss-residential-ips --silent --output-dataset

```

## MCP server setup

```json
{
    "mcpServers": {
        "apify": {
            "command": "npx",
            "args": [
                "mcp-remote",
                "https://mcp.apify.com/?tools=exotic_integrity/google-news-rss-residential-ips",
                "--header",
                "Authorization: Bearer <YOUR_API_TOKEN>"
            ]
        }
    }
}

```

## OpenAPI specification

```json
{
    "openapi": "3.0.1",
    "info": {
        "title": "Google News RSS - Residential IPs",
        "description": "Pull Google News RSS for any query through 23 real US residential IPs (Verizon AS701). BYOK against the MoneyMaker Residential Scraping API.",
        "version": "0.1",
        "x-build-id": "SntoLGWScJwZfW4t6"
    },
    "servers": [
        {
            "url": "https://api.apify.com/v2"
        }
    ],
    "paths": {
        "/acts/exotic_integrity~google-news-rss-residential-ips/run-sync-get-dataset-items": {
            "post": {
                "operationId": "run-sync-get-dataset-items-exotic_integrity-google-news-rss-residential-ips",
                "x-openai-isConsequential": false,
                "summary": "Executes an Actor, waits for its completion, and returns Actor's dataset items in response.",
                "tags": [
                    "Run Actor"
                ],
                "requestBody": {
                    "required": true,
                    "content": {
                        "application/json": {
                            "schema": {
                                "$ref": "#/components/schemas/inputSchema"
                            }
                        }
                    }
                },
                "parameters": [
                    {
                        "name": "token",
                        "in": "query",
                        "required": true,
                        "schema": {
                            "type": "string"
                        },
                        "description": "Enter your Apify token here"
                    }
                ],
                "responses": {
                    "200": {
                        "description": "OK"
                    }
                }
            }
        },
        "/acts/exotic_integrity~google-news-rss-residential-ips/runs": {
            "post": {
                "operationId": "runs-sync-exotic_integrity-google-news-rss-residential-ips",
                "x-openai-isConsequential": false,
                "summary": "Executes an Actor and returns information about the initiated run in response.",
                "tags": [
                    "Run Actor"
                ],
                "requestBody": {
                    "required": true,
                    "content": {
                        "application/json": {
                            "schema": {
                                "$ref": "#/components/schemas/inputSchema"
                            }
                        }
                    }
                },
                "parameters": [
                    {
                        "name": "token",
                        "in": "query",
                        "required": true,
                        "schema": {
                            "type": "string"
                        },
                        "description": "Enter your Apify token here"
                    }
                ],
                "responses": {
                    "200": {
                        "description": "OK",
                        "content": {
                            "application/json": {
                                "schema": {
                                    "$ref": "#/components/schemas/runsResponseSchema"
                                }
                            }
                        }
                    }
                }
            }
        },
        "/acts/exotic_integrity~google-news-rss-residential-ips/run-sync": {
            "post": {
                "operationId": "run-sync-exotic_integrity-google-news-rss-residential-ips",
                "x-openai-isConsequential": false,
                "summary": "Executes an Actor, waits for completion, and returns the OUTPUT from Key-value store in response.",
                "tags": [
                    "Run Actor"
                ],
                "requestBody": {
                    "required": true,
                    "content": {
                        "application/json": {
                            "schema": {
                                "$ref": "#/components/schemas/inputSchema"
                            }
                        }
                    }
                },
                "parameters": [
                    {
                        "name": "token",
                        "in": "query",
                        "required": true,
                        "schema": {
                            "type": "string"
                        },
                        "description": "Enter your Apify token here"
                    }
                ],
                "responses": {
                    "200": {
                        "description": "OK"
                    }
                }
            }
        }
    },
    "components": {
        "schemas": {
            "inputSchema": {
                "type": "object",
                "required": [
                    "q",
                    "apiKey"
                ],
                "properties": {
                    "q": {
                        "title": "Search query",
                        "type": "string",
                        "description": "Google News query string. Supports the same syntax as the news.google.com search box, including 'site:', 'when:7d', 'AND/OR', etc."
                    },
                    "hl": {
                        "title": "Interface language",
                        "type": "string",
                        "description": "BCP-47 language tag for the result UI, e.g. en-US, en-GB, es-ES, ja, fr.",
                        "default": "en-US"
                    },
                    "gl": {
                        "title": "Geo / country",
                        "type": "string",
                        "description": "Two-letter country code that scopes the news edition, e.g. US, GB, JP, DE.",
                        "default": "US"
                    },
                    "ceid": {
                        "title": "Country-edition ID",
                        "type": "string",
                        "description": "Country-edition pair as 'COUNTRY:LANG', e.g. US:en, GB:en, JP:ja. Should match `hl` and `gl`.",
                        "default": "US:en"
                    },
                    "apiKey": {
                        "title": "MoneyMaker API key",
                        "type": "string",
                        "description": "Your API key from the MoneyMaker Residential Scraping API (sign up via the listing on RapidAPI or contact for a direct key). Format: mm_sk_... — paste the bare token, not the Bearer header."
                    },
                    "apiBaseUrl": {
                        "title": "API base URL",
                        "type": "string",
                        "description": "Public endpoint of the Residential Scraping API. Provided by your API key issuer.",
                        "default": "https://api.example.com:8443"
                    },
                    "verifyTls": {
                        "title": "Verify TLS to upstream",
                        "type": "boolean",
                        "description": "Disable only if pointing at a bare-IP origin without a valid cert. Default true.",
                        "default": true
                    }
                }
            },
            "runsResponseSchema": {
                "type": "object",
                "properties": {
                    "data": {
                        "type": "object",
                        "properties": {
                            "id": {
                                "type": "string"
                            },
                            "actId": {
                                "type": "string"
                            },
                            "userId": {
                                "type": "string"
                            },
                            "startedAt": {
                                "type": "string",
                                "format": "date-time",
                                "example": "2025-01-08T00:00:00.000Z"
                            },
                            "finishedAt": {
                                "type": "string",
                                "format": "date-time",
                                "example": "2025-01-08T00:00:00.000Z"
                            },
                            "status": {
                                "type": "string",
                                "example": "READY"
                            },
                            "meta": {
                                "type": "object",
                                "properties": {
                                    "origin": {
                                        "type": "string",
                                        "example": "API"
                                    },
                                    "userAgent": {
                                        "type": "string"
                                    }
                                }
                            },
                            "stats": {
                                "type": "object",
                                "properties": {
                                    "inputBodyLen": {
                                        "type": "integer",
                                        "example": 2000
                                    },
                                    "rebootCount": {
                                        "type": "integer",
                                        "example": 0
                                    },
                                    "restartCount": {
                                        "type": "integer",
                                        "example": 0
                                    },
                                    "resurrectCount": {
                                        "type": "integer",
                                        "example": 0
                                    },
                                    "computeUnits": {
                                        "type": "integer",
                                        "example": 0
                                    }
                                }
                            },
                            "options": {
                                "type": "object",
                                "properties": {
                                    "build": {
                                        "type": "string",
                                        "example": "latest"
                                    },
                                    "timeoutSecs": {
                                        "type": "integer",
                                        "example": 300
                                    },
                                    "memoryMbytes": {
                                        "type": "integer",
                                        "example": 1024
                                    },
                                    "diskMbytes": {
                                        "type": "integer",
                                        "example": 2048
                                    }
                                }
                            },
                            "buildId": {
                                "type": "string"
                            },
                            "defaultKeyValueStoreId": {
                                "type": "string"
                            },
                            "defaultDatasetId": {
                                "type": "string"
                            },
                            "defaultRequestQueueId": {
                                "type": "string"
                            },
                            "buildNumber": {
                                "type": "string",
                                "example": "1.0.0"
                            },
                            "containerUrl": {
                                "type": "string"
                            },
                            "usage": {
                                "type": "object",
                                "properties": {
                                    "ACTOR_COMPUTE_UNITS": {
                                        "type": "integer",
                                        "example": 0
                                    },
                                    "DATASET_READS": {
                                        "type": "integer",
                                        "example": 0
                                    },
                                    "DATASET_WRITES": {
                                        "type": "integer",
                                        "example": 0
                                    },
                                    "KEY_VALUE_STORE_READS": {
                                        "type": "integer",
                                        "example": 0
                                    },
                                    "KEY_VALUE_STORE_WRITES": {
                                        "type": "integer",
                                        "example": 1
                                    },
                                    "KEY_VALUE_STORE_LISTS": {
                                        "type": "integer",
                                        "example": 0
                                    },
                                    "REQUEST_QUEUE_READS": {
                                        "type": "integer",
                                        "example": 0
                                    },
                                    "REQUEST_QUEUE_WRITES": {
                                        "type": "integer",
                                        "example": 0
                                    },
                                    "DATA_TRANSFER_INTERNAL_GBYTES": {
                                        "type": "integer",
                                        "example": 0
                                    },
                                    "DATA_TRANSFER_EXTERNAL_GBYTES": {
                                        "type": "integer",
                                        "example": 0
                                    },
                                    "PROXY_RESIDENTIAL_TRANSFER_GBYTES": {
                                        "type": "integer",
                                        "example": 0
                                    },
                                    "PROXY_SERPS": {
                                        "type": "integer",
                                        "example": 0
                                    }
                                }
                            },
                            "usageTotalUsd": {
                                "type": "number",
                                "example": 0.00005
                            },
                            "usageUsd": {
                                "type": "object",
                                "properties": {
                                    "ACTOR_COMPUTE_UNITS": {
                                        "type": "integer",
                                        "example": 0
                                    },
                                    "DATASET_READS": {
                                        "type": "integer",
                                        "example": 0
                                    },
                                    "DATASET_WRITES": {
                                        "type": "integer",
                                        "example": 0
                                    },
                                    "KEY_VALUE_STORE_READS": {
                                        "type": "integer",
                                        "example": 0
                                    },
                                    "KEY_VALUE_STORE_WRITES": {
                                        "type": "number",
                                        "example": 0.00005
                                    },
                                    "KEY_VALUE_STORE_LISTS": {
                                        "type": "integer",
                                        "example": 0
                                    },
                                    "REQUEST_QUEUE_READS": {
                                        "type": "integer",
                                        "example": 0
                                    },
                                    "REQUEST_QUEUE_WRITES": {
                                        "type": "integer",
                                        "example": 0
                                    },
                                    "DATA_TRANSFER_INTERNAL_GBYTES": {
                                        "type": "integer",
                                        "example": 0
                                    },
                                    "DATA_TRANSFER_EXTERNAL_GBYTES": {
                                        "type": "integer",
                                        "example": 0
                                    },
                                    "PROXY_RESIDENTIAL_TRANSFER_GBYTES": {
                                        "type": "integer",
                                        "example": 0
                                    },
                                    "PROXY_SERPS": {
                                        "type": "integer",
                                        "example": 0
                                    }
                                }
                            }
                        }
                    }
                }
            }
        }
    }
}
```
