Reuters
Overview
International news agency. News archetype — search articles, browse topic feeds, read full articles, and get top/breaking news via Arc Publishing (PageBuilder Fusion) API.
Workflows
Search news
searchArticles(keyword) → articles with title, description, canonical_url
Browse a topic
getTopicArticles(section_id) → article list for /world/, /business/, /technology/, /markets/, /science/
Read full article
searchArticles(keyword) or getTopicArticles(section_id) or getTopNews() → canonical_url
getArticleDetail(article_url=canonical_url) → full article with title, body, authors, section, word_count
Top news
getTopNews() → top/breaking news stories from the Reuters homepage feed
Operations
| Operation |
Intent |
Key Input |
Key Output |
Notes |
| searchArticles |
search news by keyword |
keyword |
title, description, canonical_url, published_time |
entry point; paginated (offset, size) |
| getTopicArticles |
browse section feed |
section_id (e.g., /world/) |
title, description, canonical_url, published_time |
entry point; paginated (offset, size) |
| getArticleDetail |
read full article |
article_url ← searchArticles / getTopicArticles / getTopNews |
title, body, authors, section, published_time, word_count |
extracts from Fusion SSR or DOM fallback |
| getTopNews |
top/breaking news |
(none) |
title, description, canonical_url, published_time |
homepage section feed; optional size param |
Quick Start
# Search for articles about technology
openweb reuters exec searchArticles '{"keyword":"technology","size":5}'
# Browse world news
openweb reuters exec getTopicArticles '{"section_id":"/world/","size":5}'
# Read a specific article (use canonical_url from search/topic results)
openweb reuters exec getArticleDetail '{"article_url":"/technology/cybersecurity/example-article-2025-04-01/"}'
# Get top/breaking news
openweb reuters exec getTopNews '{"size":10}'
Common Section IDs
| Section |
section_id |
| World |
/world/ |
| Business |
/business/ |
| Technology |
/technology/ |
| Markets |
/markets/ |
| Science |
/science/ |
| Sports |
/sports/ |
| Sustainability |
/sustainability/ |
1---2name: reuters3description: Reuters4---5# Reuters67## Overview8International news agency. News archetype — search articles, browse topic feeds, read full articles, and get top/breaking news via Arc Publishing (PageBuilder Fusion) API.910## Workflows1112### Search news131. `searchArticles(keyword)` → articles with title, description, canonical_url1415### Browse a topic161. `getTopicArticles(section_id)` → article list for `/world/`, `/business/`, `/technology/`, `/markets/`, `/science/`1718### Read full article191. `searchArticles(keyword)` or `getTopicArticles(section_id)` or `getTopNews()` → `canonical_url`202. `getArticleDetail(article_url=canonical_url)` → full article with `title`, `body`, `authors`, `section`, `word_count`2122### Top news231. `getTopNews()` → top/breaking news stories from the Reuters homepage feed2425## Operations2627| Operation | Intent | Key Input | Key Output | Notes |28|-----------|--------|-----------|------------|-------|29| searchArticles | search news by keyword | keyword | title, description, canonical_url, published_time | entry point; paginated (offset, size) |30| getTopicArticles | browse section feed | section_id (e.g., /world/) | title, description, canonical_url, published_time | entry point; paginated (offset, size) |31| getArticleDetail | read full article | article_url ← searchArticles / getTopicArticles / getTopNews | title, body, authors, section, published_time, word_count | extracts from Fusion SSR or DOM fallback |32| getTopNews | top/breaking news | (none) | title, description, canonical_url, published_time | homepage section feed; optional size param |3334## Quick Start3536```bash37# Search for articles about technology38openweb reuters exec searchArticles '{"keyword":"technology","size":5}'3940# Browse world news41openweb reuters exec getTopicArticles '{"section_id":"/world/","size":5}'4243# Read a specific article (use canonical_url from search/topic results)44openweb reuters exec getArticleDetail '{"article_url":"/technology/cybersecurity/example-article-2025-04-01/"}'4546# Get top/breaking news47openweb reuters exec getTopNews '{"size":10}'48```4950### Common Section IDs5152| Section | section_id |53|---------|------------|54| World | /world/ |55| Business | /business/ |56| Technology | /technology/ |57| Markets | /markets/ |58| Science | /science/ |59| Sports | /sports/ |60| Sustainability | /sustainability/ |