Arab News Scraper avatar

Arab News Scraper

Under maintenance

Pricing

from $3.50 / 1,000 results

Go to Apify Store
Arab News Scraper

Arab News Scraper

Under maintenance

Extract full article text or the newest headlines from Arab News (arabnews.com), Saudi Arabia's leading English-language newspaper -- no account or API key needed.

Pricing

from $3.50 / 1,000 results

Rating

0.0

(0)

Developer

Faisal Ahdan naufal

Faisal Ahdan naufal

Maintained by Community

Actor stats

0

Bookmarked

2

Total users

1

Monthly active users

4 days ago

Last modified

Categories

Share

Extract full article text or the newest headlines from Arab News (arabnews.com), Saudi Arabia's leading English-language newspaper — no account or subscription needed.

Why use this actor

  • No account or login required — fully free, ad-supported site with no paywall
  • Full article text included, not just a summary — headline, byline, section, publish/update dates, lead image
  • Strong wire-service coverage (Reuters, AP, SPA) of Middle East, business, and world news from a Saudi vantage point
  • Also fetches the newest headlines from the Google News sitemap without visiting each article individually
  • Stable JSON output suitable for pipelines, spreadsheets, or databases
  • Automatic retries on temporary network hiccups

How it works

  1. Give the actor one or more article URLs, or switch to "latest" mode to get the newest stories automatically.
  2. In article mode, the actor opens each URL and pulls out the full text and every publicly available detail about the story.
  3. In latest mode, the actor reads the site's Google News sitemap and returns the newest stories.
  4. Results stream into your dataset, ready to download as JSON, CSV, or Excel.

You don't need to manage retries, rate limits, or figure out the site's internal data format — the actor handles all of that.

Input

Article mode (default):

{
"mode": "article",
"urls": [
"https://www.arabnews.com/node/2655612/middle-east"
],
"maxConcurrency": 4,
"proxyConfiguration": { "useApifyProxy": true, "apifyProxyGroups": ["RESIDENTIAL"] }
}

Latest headlines mode:

{
"mode": "latest",
"limit": 10,
"proxyConfiguration": { "useApifyProxy": true, "apifyProxyGroups": ["RESIDENTIAL"] }
}
FieldTypeDescription
modestring"article" (default) — extract one or more article URLs. "latest" — fetch the newest headlines.
urlstringA single article URL. Used in article mode.
urlsarrayMultiple article URLs to extract in one run. Used in article mode.
limitintegerMax headlines returned in latest mode. Default 10, max 50.
maxConcurrencyintegerHow many articles to fetch in parallel in article mode. Default 4.
proxyConfigurationobjectApify Proxy settings. Residential is on by default.

Output

Article mode — one record per URL (truncated here for readability):

{
"_input": "https://www.arabnews.com/node/2655612/middle-east",
"_source": "S1-jsonld",
"_scrapedAt": "2026-08-24T01:27:25Z",
"headline": "Iran says new sanctions threatened by ‘desperate’ US will fail",
"articleBody": "DUBAI: Iran’s foreign minister dismissed the threat of new US sanctions as a sign of desperation on Sunday and said the expected new measures would fail to defeat Tehran. US Treasury Secretary Scott Bessent... ",
"articleSection": null,
"datePublished": "2026-08-23T12:21:39",
"dateModified": "2026-08-23T18:30:16",
"author": "Reuters",
"image": "https://www.arabnews.com/sites/default/files/styles/n_670_395/public/main-image/2026/08/23/4743656-192920700.jpg?itok=l4suudIM"
}

Latest headlines mode — one record per headline:

{
"_input": "latest",
"_source": "S2-sitemap",
"_scrapedAt": "2026-08-24T01:27:17Z",
"title": "Indonesian police arrest 72 people suspected of starting forest fires",
"link": "https://www.arabnews.com/node/2655663/world",
"publicationDate": "2026-08-24T01:19:45+00:00"
}
FieldTypeDescription
_inputstringThe URL you requested, or "latest", for traceability.
_sourcestringWhich strategy produced this record.
_scrapedAtstringUTC timestamp of when the record was captured.
headline / titlestringArticle headline.
articleBodystringFull plain-text article content (article mode only).
authorstringByline — often a wire service (Reuters, AP, SPA) rather than a staff name (article mode only).
datePublished / dateModifiedstringPublication timestamps (article mode).
imagestringLead image URL (article mode).
linkstringArticle URL (latest mode).
publicationDatestringPublication timestamp (latest mode).

A record with _error instead of article fields means that URL could not be processed (for example, "_error": "not_found" for a removed article).