
Extract full article content from Google News by keyword and time range. Get titles, publishers, dates, body text, images, and URLs via API.
BrowserAct’s Google News Article API lets you extract full news article content from Google News through a single API request — no crawler scripts, no browser automation logic, and no manual export.
Unlike list-only APIs, this API searches Google News by keyword, iterates through the result list, opens each article, and extracts the complete article body.
Simply provide your search keywords and publication time range. BrowserAct automatically runs the entire workflow in the background and returns clean, structured article data directly via API.
This API is ideal for content analysis, AI training datasets, media intelligence, and long-form research workflows.
The API returns full article-level content for each matched news result, including:
Go beyond headlines and snippets. Extract complete article bodies for deep analysis.
Search → open articles → extract content — fully automated behind a single API call.
Clean, structured article data designed for NLP pipelines, analytics, and storage systems.
Perfect for trend analysis, media monitoring, competitive intelligence, and AI training datasets.
In short:
Search → API call → Full articles delivered
Parameter | Required | Description | Default | Supported values / Examples |
Search_Keywords | Yes | Keywords used to search Google News. Determines which articles will be opened and fully extracted. | AI | Any text, e.g. AI, startup funding, Tesla earnings |
Publish_date | Yes | Time range filter applied before full article extraction begins. | past week | any time, past hours, past 24 hours, past week, past year |
Click Get code, replace the API key, and run the code directly in your application.
API Key, get from:
# https://www.browseract.com/reception/integrations
API_KEY = os.getenv("BROWSERACT_API_KEY", "app-abcdefghijklmn")
You only need to replace:
app-abcdefghijklmn
with your own API key, and the code will run successfully.
Your API key can be found in the API & Integrations section of the BrowserAct dashboard.

The API returns a structured list of full news articles.
Each item includes headline, publisher, publication date, full body text, and source URLs.
Example output (simplified):
{
"news_title": "Changes You May See At Pizza Chains In 2026",
"publisher": "Ashlen Wilder",
"publication_date": "2026-01-29T06:03:00-05:00",
"body_content": "Pizza is one of America's favorite comfort foods...",
"current_page_url": "https://www.aol.com/articles/changes-may-see-pizza-chains-110300645.html",
"image_url": "https://s.yimg.com/..."
}
Results are returned directly via the API and can be consumed immediately by:
To create your own Google News Article API, start from a prebuilt template.
Once created, you can use the BrowserAct API to invoke your workflow programmatically and retrieve full article content directly in your application.