Provider docs

Google News APILive

Public Google News search, per-topic top headlines, and redirect decoding — served through the same ReplyNodes interface as every other provider.

Quickstart

# 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"}}'

Operations

OperationParamsReturns
search_articlesquery, language?, country?, limit?Public term search across Google News; limit clamped server-side.
top_newstopic, country?, language?, limit?Headlines by topic — WORLD, NATION, BUSINESS, TECHNOLOGY, ENTERTAINMENT, SPORTS, SCIENCE, HEALTH.
decode_article_urlurl, country?, language?Resolve a news.google.com redirect (/rss/articles/<id> or /articles/<id>) to its underlying source URL.

Data shape

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.