Discover/Reuters API
live

Reuters APIreuters.com

Access Reuters articles via 3 endpoints: full-text search, section browsing, and full article content with authors, body HTML, and access level.

This API takes change requests — .
Endpoint health
verified 3h ago
get_section_news
get_article
search_news
3/3 passing latest checkself-healing
Endpoints
3
Updated
4h ago

What is the Reuters API?

The Reuters API provides 3 endpoints for retrieving news content from reuters.com, covering full-text article search, section-based browsing, and individual article details. The get_article endpoint returns structured fields including body_html, authors, word_count, content_code, and read_minutes, making it practical for news aggregation, media monitoring, and research pipelines that need article-level metadata alongside readable content.

Try it
Number of articles to return per request (max 100).
Number of articles to skip for pagination.
Search query text to match against article titles and content.
api.parse.bot/scraper/1287d5c2-70fd-46a2-95c2-3dbd3c436011/<endpoint>
Ready to send
Fill in the parameters and hit sign in to send to see live response data here.
Call it over HTTPgrab a free API key at signup
curl -X GET 'https://api.parse.bot/scraper/1287d5c2-70fd-46a2-95c2-3dbd3c436011/search_news?size=10&offset=0&keyword=technology' \
  -H 'X-API-Key: $PARSE_API_KEY'
Python SDK · recommended

Typed, relational, agent-ready

A generated client with real types, enums, and the links between objects — the structure a flat JSON response can't carry. Autocompletes in your editor and reads cleanly to coding agents.

  • Fully typed · autocompletes
  • Objects link to objects
  • Typed errors & pagination

Typed Python client. Set up the SDK in your uv project, then pull this API’s typed client:

uv add parse-sdk
uv run parse init
uv run parse add --marketplace reuters-com-api

uv run parse add --marketplace pulls a pinned snapshot of this canonical API — it won’t change underneath you. To customize it, subscribe and swap to your own copy.

"""Walkthrough: Reuters SDK — bounded, re-runnable; every call capped."""
from parse_apis.reuters_com_api import Reuters, ArticleNotFound

client = Reuters()

# Search for recent news articles about a topic
for article in client.article_summaries.search(keyword="technology", limit=3):
    print(article.title, article.published_time)

# Drill down into the first search result for full details
summary = client.article_summaries.search(keyword="climate", limit=1).first()
if summary:
    try:
        full = summary.details()
        print(full.title, full.word_count, full.read_minutes)
    except ArticleNotFound as e:
        print("article gone:", e.article_url)

# Browse a specific section
for article in client.section("/business/").news(limit=3):
    print(article.title, article.section, article.authors)

print("exercised: article_summaries.search, summary.details, section.news")
All endpoints · 3 totalmissing one? ·

Full-text search across Reuters articles ordered by publication date (newest first). Returns article summaries with metadata. Results are paginated via offset.

Input
ParamTypeDescription
sizeintegerNumber of articles to return per request (max 100).
offsetintegerNumber of articles to skip for pagination.
keywordrequiredstringSearch query text to match against article titles and content.
Response
{
  "type": "object",
  "fields": {
    "size": "number of articles returned",
    "offset": "current pagination offset",
    "articles": "array of article summary objects",
    "total_results": "total number of matching articles"
  },
  "sample": {
    "data": {
      "size": 5,
      "offset": 0,
      "articles": [
        {
          "id": "RK45YEKDBVMVJL6HNUN4H6EK4E",
          "title": "DOGE alumni launch military cyber startup with $1.4 billion valuation",
          "authors": [
            "David Jeans"
          ],
          "section": "Technology",
          "description": "A team of former DOGE employees have raised a major funding round for a startup.",
          "content_code": "metered",
          "section_path": "/technology/",
          "updated_time": "2026-07-22T18:04:10.302Z",
          "canonical_url": "/technology/doge-alumni-launch-military-cyber-startup-with-14-billion-valuation-2026-07-22/",
          "thumbnail_url": "https://www.reuters.com/resizer/v2/B2APLTSTTJKGTHLIBI6AGQCEZA.jpg?auth=abc123",
          "published_time": "2026-07-22T17:46:22.022Z"
        }
      ],
      "total_results": 46710
    },
    "status": "success"
  }
}

About the Reuters API

Search and Browse Reuters Content

The search_news endpoint accepts a required keyword parameter and returns a paginated list of matching article summaries, ordered by publication date (newest first). The response includes a total_results count alongside the articles array, so you can implement multi-page retrieval using the offset parameter. Each request supports up to 100 results via the size parameter.

The get_section_news endpoint lets you pull the latest articles from named Reuters sections by passing a section_id path such as /world/, /business/, /technology/, or /markets/. Like search, results are paginated and returned newest first. This is useful for building section-specific feeds without a keyword query.

Article-Level Detail

The get_article endpoint takes a canonical URL path (e.g. /technology/some-article-slug-2025/) and returns the full article record. Key response fields include title, authors (array), body_html (array of paragraph HTML strings), description, word_count, read_minutes, section, updated_time (ISO 8601), and content_code. The content_code field indicates whether the article is free, metered, or premium; metered and premium articles may return partial body_html.

Pagination and Coverage

All three endpoints share the same size and offset pagination model. The total_results field in each response lets you calculate how many additional pages exist. Section and search results are capped at 100 articles per call. Article availability reflects what is publicly accessible on reuters.com at the time of the request.

Reliability & maintenanceVerified

The Reuters API is a managed, monitored endpoint for reuters.com — not a raw scraper you maintain. Every endpoint is automatically health-checked on a schedule, and when reuters.com changes and a check fails, the API is automatically queued for repair and re-verified. It is built to keep working as the site underneath it changes.

This isn't an official reuters.com API — it's an independent, maintained REST wrapper over public data. Where the source has no official API (or only a limited one), Parse gives you a stable contract over a source that never promised one, and keeps it current. Need a new endpoint or field? You can revise it yourself in plain English and the agent rebuilds it against the live site in minutes — contributing the change back to the shared API is free.

Last verified
3h ago
Latest check
3/3 endpoints passing
Maintenance
Monitored & self-healing
Will this API break when the source site changes?+
It's built not to. Every endpoint is health-checked on a schedule with automated test probes. When the source site changes and a check fails, the API is automatically queued for repair and re-verified — that's the self-healing layer. Each API page shows when its endpoints were last verified. And because marketplace APIs are shared, any fix reaches everyone using it.
Is this an official API from the source site?+
No — Parse APIs are independent, managed REST wrappers over publicly available data. That is the point: where a site has no official API (or only a limited one), Parse gives you a maintained, monitored endpoint for that data and keeps it working as the site changes — so you get a stable contract over a source that never promised one.
Can I fix or extend this API myself if I need a new endpoint or field?+
Yes — and you don't have to wait on us. This API was generated by the Parse agent, which stays attached. Describe the change in plain English ("add an endpoint that returns reviews", "fix the price field") in the revise box on the API page or via the revise_api MCP tool, and the agent rebuilds it against the live site in minutes. Contributing the change back to the public API is free.
What happens if I call an endpoint that has an issue?+
Errors are machine-readable: a bad call returns a clean status with the list of available endpoints and a repair hint, so an agent (or you) can recover or trigger a fix instead of failing silently. Confirmed failures feed the automatic repair queue.
Common use cases
  • Monitor breaking news in a specific domain by polling get_section_news for /world/ or /markets/ on a schedule
  • Build a news aggregator that indexes Reuters headlines, descriptions, and publication timestamps from search_news
  • Classify articles by access level using the content_code field to filter for only free full-text content
  • Extract author attribution data from the authors array in get_article for byline analysis or journalist tracking
  • Calculate average read_minutes or word_count across a topic to understand Reuters coverage depth by keyword
  • Power a media monitoring dashboard by searching a brand or topic keyword and paginating through all matching results
  • Retrieve updated_time and description fields to detect article corrections or re-publications over time
Pricing & limitsSee full pricing →
TierPriceCredits/monthRate limit
Free$0/mo1005 req/min
Hobby$30/mo1,00020 req/min
Developer$100/mo5,000100 req/min

One credit = one API call regardless of which marketplace API you call. Exceeding the rate limit returns a 429 response. Authenticate with the X-API-Key header.

Frequently asked questions
Does Reuters have an official developer API?+
Reuters does not offer a publicly documented, self-serve developer API for article content. Access to Reuters content feeds is typically available only through enterprise licensing agreements.
What does `content_code` tell me, and will I always get full article text?+
The content_code field returns one of three values: free, metered, or premium. Articles marked free return complete body_html arrays. Metered and premium articles may return partial body content, reflecting the access level on reuters.com.
What section IDs can I pass to `get_section_news`?+
Documented examples include /world/, /business/, /technology/, /markets/, and /sustainability/. The parameter expects a string with both a leading and trailing slash. Sections correspond to top-level navigation paths on reuters.com.
Does the API return Reuters video content, live blogs, or graphics packages?+
Not currently. The three endpoints cover text articles: search results, section article lists, and article detail pages with body HTML. You can fork this API on Parse and revise it to add an endpoint targeting video or live blog content.
How far back does the article search go, and how current is the data?+
The search_news endpoint returns results ordered by publication date newest first, but does not expose a date-range filter parameter. The depth of historical coverage and the lag between publication and availability are not guaranteed to a fixed window.
Page content last updated . Spec covers 3 endpoints from reuters.com.
Related APIs in News MediaSee all →
nytimes.com API
Retrieve the latest news articles from The New York Times organized by topic sections like politics, business, technology, and more. Stay informed with current stories from one of the world's leading news sources without manually browsing their website.
prnewswire.com API
Access the latest press releases, earnings announcements, and news from PR Newswire across specific categories and organizations, with options to search by keywords or dates. Filter releases by industry, company newsrooms, and subscribe to RSS feeds for real-time updates on corporate news and financial disclosures.
news.un.org API
Access UN News headlines, stories, and articles organized by topic and region across multiple languages. Search news content, retrieve in-depth reports, and subscribe to RSS feeds for updates on global events and UN initiatives.
globenewswire.com API
globenewswire.com API
afp.com API
Access real-time AFP news articles and fact-check stories across multiple languages, with the ability to search, filter by region or topic, and discover trending fact-checks. Browse the latest news ticker, explore fact-checked content by category, and stay informed with curated news and verification articles from AFP's global network.
nrk.no API
Access the latest news from Norway's leading broadcaster NRK.no, including front-page stories, category-specific articles, regional news, and breaking news updates through a unified search and browsing interface. Stay informed with full article content, RSS feeds, and real-time news ticker notifications across all major topics.
features.financialjuice.com API
Get live financial news, economic calendar events, and in-depth articles to stay informed on market movements and economic indicators. Search and filter news by stock codes and calendar events to find the financial information most relevant to your trading or investment decisions.
railway-technology.com API
Stay informed on railway industry developments by accessing the latest news, searching articles by sector or theme, and researching infrastructure projects and company profiles. Get detailed information on specific news articles, project details, and company backgrounds all in one place.