按任意搜索查询抓取 Google News 新闻文章。返回干净结构化数据:文章标题(去除来源后缀)、出版商名称、出版商 URL、文章直链、RFC 2822 格式发布日期,以及匹配该文章的搜索查询。按国家与语言过滤。HTTP-only Go 二进制,无浏览器。
# Search Google News for any keyword curl -X POST "https://api.apify.com/v2/acts/santamaria-automations~google-news-scraper/runs?token=YOUR_TOKEN" \ -H "Content-Type: application/json" \ -d '{ "searchQueries": ["artificial intelligence", "climate change"], "language": "en", "country": "US", "maxResults": 100, "maxResultsPerQuery": 50 }' # Or use with AI agents via MCP: # https://mcp.apify.com?tools=santamaria-automations/google-news-scraper
{
"title": "OpenAI Announces New GPT Model with Multimodal Capabilities",
"source": "Reuters",
"publisher_url": "https://www.reuters.com",
"url": "https://www.reuters.com/technology/openai-announces-new-gpt-model-...",
"published_at": "Thu, 12 Jun 2026 14:30:00 +0000",
"search_query": "artificial intelligence"
}