Provider docs
Public Google News search, per-topic top headlines, and redirect decoding — served through the same ReplyNodes interface as every other provider.
# Search news articles
curl -X POST $BASE/v1/googlenews/fetch \
-H "Authorization: Bearer $REPLYNODES_API_KEY" \
-H "Content-Type: application/json" \
-d '{"operation":"search_articles","params":{"query":"MCP servers","limit":10}}'
# Top headlines for a topic
curl -X POST $BASE/v1/googlenews/fetch \
-H "Authorization: Bearer $REPLYNODES_API_KEY" \
-H "Content-Type: application/json" \
-d '{"operation":"top_news","params":{"topic":"TECHNOLOGY"}}'
| Operation | Params | Returns |
|---|---|---|
| search_articles | query, language?, country?, limit? | Public term search across Google News; limit clamped server-side. |
| top_news | topic, country?, language?, limit? | Headlines by topic — WORLD, NATION, BUSINESS, TECHNOLOGY, ENTERTAINMENT, SPORTS, SCIENCE, HEALTH. |
| decode_article_url | url, country?, language? | Resolve a news.google.com redirect (/rss/articles/<id> or /articles/<id>) to its underlying source URL. |
Articles carry googlenews:article:… URN identifiers and
RFC3339 UTC timestamps. The decode operation returns the resolved source
URL plus article metadata — the missing piece when an agent needs to cite
or fetch the original story.