← APIs / Reuters News
Verified

Reuters News

Apiosk Basicsby Apiosk Basics · General

Reuters news headlines: the latest wire headlines, keyword headline search, headlines per section (World, Business, Markets, Technology and more) and the section list. Headlines and links only, no article text. Up to 12 results per call.

newsapi
Price per request
$0.05
About

Read operations checked live on 2026-09-14: latest headlines, keyword headline search, the section list and headlines for 18 sections (World, Africa, Americas, Asia Pacific, China, Europe, India, Middle East, UK, US, Business, Markets, Technology, Legal, Sustainability, Science, Sports, Lifestyle). At most 12 headlines per call; search results carry no date field and keyword matching is loose. Breakingviews returned HTTP 502 and is not offered. The provider /details route is not offered because it returns text synthesized from the URL instead of the article. The upstream plan also limits requests per second.

Base URL
https://gateway.apiosk.com/reuters
Technical Specs
Auth Methodnone
Response FormatJSON
Endpoints4
Endpoints
MethodPathDescriptionCost
GET /category Current Reuters World (all regions) news headlines: up to 12 article links and headlines from the Reuters World section front page (https://www.reuters.com/world/), in page order. Headlines only, not article text.
$0.05 default
View details
GET /latest Latest Reuters news headlines across all sections, newest wire stories with link and publication time. Optional headline count 1-12. Headlines only, not article text.
$0.05 default
View details
GET /search Search Reuters news headlines by keywords (a company, person, topic or event). Returns up to 12 article links and headlines, no dates; keyword matching is loose.
$0.05 default
View details
GET /sections List the Reuters news sections (World, regions, Business, Markets, Technology, Legal and more) with their section URLs.
$0.05 default
View details
Endpoint documentation
GET/category
$0.05 default
Description

Current Reuters World (all regions) news headlines: up to 12 article links and headlines from the Reuters World section front page (https://www.reuters.com/world/), in page order. Headlines only, not article text.

Documentation

Four live-checked read operations: latest headlines, keyword headline search, section headlines and section list. At most 12 headlines per call; search results carry no date field and keyword matching is loose. The provider /details route is not offered because it returns text synthesized from the URL instead of the article.

Pricing
$0.05 default
Parameters
{
  "properties": {
    "url": {
      "description": "Reuters section URL; fixed per section capability.",
      "enum": [
        "https://www.reuters.com/world/",
        "https://www.reuters.com/world/africa/",
        "https://www.reuters.com/world/americas/",
        "https://www.reuters.com/world/asia-pacific/",
        "https://www.reuters.com/world/china/",
        "https://www.reuters.com/world/europe/",
        "https://www.reuters.com/world/india/",
        "https://www.reuters.com/world/middle-east/",
        "https://www.reuters.com/world/uk/",
        "https://www.reuters.com/world/us/",
        "https://www.reuters.com/business/",
        "https://www.reuters.com/markets/",
        "https://www.reuters.com/technology/",
        "https://www.reuters.com/legal/",
        "https://www.reuters.com/sustainability/",
        "https://www.reuters.com/science/",
        "https://www.reuters.com/sports/",
        "https://www.reuters.com/lifestyle/"
      ],
      "required": true,
      "type": "string",
      "x-parameter-location": "query"
    }
  },
  "required": [
    "url"
  ],
  "type": "object"
}
Response schema
{
  "items": {
    "properties": {
      "link": {
        "type": "string"
      },
      "position": {
        "type": "integer"
      },
      "title": {
        "type": "string"
      }
    },
    "required": [
      "link",
      "title",
      "position"
    ],
    "type": "object"
  },
  "type": "array"
}
Example request
{
  "url": "https://www.reuters.com/world/africa/"
}
Example response
[
  {
    "link": "https://www.reuters.com/world/airbaltic-files-chapter-11-bankruptcy-new-york-2026-09-14/",
    "position": 1,
    "title": "AirBaltic files for Chapter 11 bankruptcy as Iran war costs bite"
  },
  {
    "link": "https://www.reuters.com/world/china/chinese-defence-forum-set-open-amid-roiling-regional-tensions-2026-09-14/",
    "position": 2,
    "title": "Chinese defence forum set to open amid roiling regional tensions"
  },
  {
    "link": "https://www.reuters.com/world/us/trump-calls-5000-payouts-easy-fit-into-federal-budget-2026-09-13/",
    "position": 3,
    "title": "Trump calls $5,000 payouts 'easy' to fit into federal budget"
  }
]
GET/latest
$0.05 default
Description

Latest Reuters news headlines across all sections, newest wire stories with link and publication time. Optional headline count 1-12. Headlines only, not article text.

Documentation

Four live-checked read operations: latest headlines, keyword headline search, section headlines and section list. At most 12 headlines per call; search results carry no date field and keyword matching is loose. The provider /details route is not offered because it returns text synthesized from the URL instead of the article.

Pricing
$0.05 default
Parameters
{
  "properties": {
    "limit": {
      "description": "Number of headlines to return, 1-12. The provider never returns more than 12.",
      "maximum": 12,
      "minimum": 1,
      "required": false,
      "type": "integer",
      "x-parameter-location": "query"
    }
  },
  "type": "object"
}
Response schema
{
  "items": {
    "properties": {
      "link": {
        "type": "string"
      },
      "published_at": {
        "type": "string"
      },
      "title": {
        "type": "string"
      }
    },
    "required": [
      "link",
      "title",
      "published_at"
    ],
    "type": "object"
  },
  "type": "array"
}
Example request
{
  "limit": 12
}
Example response
[
  {
    "link": "https://www.reuters.com/business/retail-consumer/companies-left-china-dodge-tariffs-now-some-are-heading-back-2026-09-14/",
    "published_at": "2026-09-14T08:51:00+08:00",
    "title": "Companies left China to dodge tariffs. Now some are heading back"
  },
  {
    "link": "https://www.reuters.com/legal/litigation/king-charles-host-ai-executives-threat-fears-mount-2026-09-14/",
    "published_at": "2026-09-14T10:00:00+08:00",
    "title": "King Charles to host AI executives as threat fears mount"
  },
  {
    "link": "https://www.reuters.com/world/airbaltic-files-chapter-11-bankruptcy-new-york-2026-09-14/",
    "published_at": "2026-09-14T10:00:00+08:00",
    "title": "AirBaltic files for Chapter 11 bankruptcy as Iran war costs bite"
  }
]
GET/search
$0.05 default
Description

Search Reuters news headlines by keywords (a company, person, topic or event). Returns up to 12 article links and headlines, no dates; keyword matching is loose.

Documentation

Four live-checked read operations: latest headlines, keyword headline search, section headlines and section list. At most 12 headlines per call; search results carry no date field and keyword matching is loose. The provider /details route is not offered because it returns text synthesized from the URL instead of the article.

Pricing
$0.05 default
Parameters
{
  "properties": {
    "limit": {
      "description": "Number of headlines to return, 1-12. The provider never returns more than 12.",
      "maximum": 12,
      "minimum": 1,
      "required": false,
      "type": "integer",
      "x-parameter-location": "query"
    },
    "q": {
      "description": "Plain keywords to search Reuters headlines for, e.g. bitcoin or Nvidia earnings. Not a boolean query.",
      "maxLength": 120,
      "minLength": 2,
      "required": true,
      "type": "string",
      "x-parameter-location": "query"
    }
  },
  "required": [
    "q"
  ],
  "type": "object"
}
Response schema
{
  "items": {
    "properties": {
      "link": {
        "type": "string"
      },
      "title": {
        "type": "string"
      }
    },
    "required": [
      "link",
      "title"
    ],
    "type": "object"
  },
  "type": "array"
}
Example request
{
  "limit": 12,
  "q": "bitcoin"
}
Example response
[
  {
    "link": "https://www.reuters.com/business/world-at-work/crypto-firm-bitcoin-suisse-cut-up-half-jobs-switzerland-2026-09-11/",
    "title": "Crypto firm Bitcoin Suisse to cut up to half of jobs in Switzerland"
  },
  {
    "link": "https://www.reuters.com/technology/bitcoin-based-liquid-network-says-320-million-withdrawn-hack-2026-09-07/",
    "title": "Bitcoin-based Liquid Network says $320 million withdrawn in hack"
  },
  {
    "link": "https://www.reuters.com/markets/global-markets-technicals-graphic-2026-09-03/",
    "title": "Mapping the Market: Bitcoin has challenges to face after dramatic surge"
  }
]
GET/sections
$0.05 default
Description

List the Reuters news sections (World, regions, Business, Markets, Technology, Legal and more) with their section URLs.

Documentation

Four live-checked read operations: latest headlines, keyword headline search, section headlines and section list. At most 12 headlines per call; search results carry no date field and keyword matching is loose. The provider /details route is not offered because it returns text synthesized from the URL instead of the article.

Pricing
$0.05 default
Parameters
{
  "properties": {},
  "type": "object"
}
Response schema
{
  "items": {
    "properties": {
      "name": {
        "type": "string"
      },
      "url": {
        "type": "string"
      }
    },
    "required": [
      "name",
      "url"
    ],
    "type": "object"
  },
  "type": "array"
}
Example request
{}
Example response
[
  {
    "name": "World",
    "url": "https://www.reuters.com/world/"
  },
  {
    "name": "Africa",
    "url": "https://www.reuters.com/world/africa/"
  },
  {
    "name": "Americas",
    "url": "https://www.reuters.com/world/americas/"
  },
  {
    "name": "Asia Pacific",
    "url": "https://www.reuters.com/world/asia-pacific/"
  },
  {
    "name": "China",
    "url": "https://www.reuters.com/world/china/"
  },
  {
    "name": "Europe",
    "url": "https://www.reuters.com/world/europe/"
  },
  {
    "name": "India",
    "url": "https://www.reuters.com/world/india/"
  },
  {
    "name": "Middle East",
    "url": "https://www.reuters.com/world/middle-east/"
  },
  {
    "name": "UK",
    "url": "https://www.reuters.com/world/uk/"
  },
  {
    "name": "US",
    "url": "https://www.reuters.com/world/us/"
  },
  {
    "name": "Business",
    "url": "https://www.reuters.com/business/"
  },
  {
    "name": "Markets",
    "url": "https://www.reuters.com/markets/"
  },
  {
    "name": "Technology",
    "url": "https://www.reuters.com/technology/"
  },
  {
    "name": "Legal",
    "url": "https://www.reuters.com/legal/"
  },
  {
    "name": "Breakingviews",
    "url": "https://www.reuters.com/breakingviews/"
  },
  {
    "name": "Sustainability",
    "url": "https://www.reuters.com/sustainability/"
  },
  {
    "name": "Science",
    "url": "https://www.reuters.com/science/"
  },
  {
    "name": "Sports",
    "url": "https://www.reuters.com/sports/"
  },
  {
    "name": "Lifestyle",
    "url": "https://www.reuters.com/lifestyle/"
  }
]