The Express Tribune Scraper
Pricing
from $3.50 / 1,000 results
The Express Tribune Scraper
Extract full article text or the newest headlines from The Express Tribune (tribune.com.pk), a major Pakistani English-language daily -- no account or API key needed.
Pricing
from $3.50 / 1,000 results
Rating
0.0
(0)
Developer
Faisal Ahdan naufal
Maintained by CommunityActor stats
0
Bookmarked
2
Total users
1
Monthly active users
19 hours ago
Last modified
Categories
Share
Extract full article text or the newest headlines from The Express Tribune (tribune.com.pk), a major Pakistani English-language daily — no account or subscription needed.
Why use this actor
- No account or login required — fully free, open-access site with no paywall
- Full article text included, not just a summary — headline, description, byline, publish/modified dates, reconstructed into clean paragraphs (comment-section prompts, copyright notices, and inline "Read More" links automatically filtered)
- Also fetches the newest headlines straight from the site's XML sitemap without visiting each article individually
- Stable JSON output suitable for pipelines, spreadsheets, or databases
- Automatic retries on temporary network hiccups
How it works
- Give the actor one or more article URLs, or switch to
"latest"mode to get the newest stories automatically. - In article mode, the actor opens each URL and pulls out the full text and every publicly available detail about the story.
- In latest mode, the actor reads the site's sitemap and returns the newest stories.
- 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://tribune.com.pk/story/2625663/psx-ends-lower-despite-moodys-upgrade"],"maxConcurrency": 4,"proxyConfiguration": { "useApifyProxy": true, "apifyProxyGroups": ["RESIDENTIAL"] }}
Latest headlines mode:
{"mode": "latest","limit": 10,"proxyConfiguration": { "useApifyProxy": true, "apifyProxyGroups": ["RESIDENTIAL"] }}
| Field | Type | Description |
|---|---|---|
mode | string | "article" (default) — extract one or more article URLs. "latest" — fetch the newest headlines. |
url | string | A single article URL. Used in article mode. |
urls | array | Multiple article URLs to extract in one run. Used in article mode. |
limit | integer | Max headlines returned in latest mode. Default 10, max 100. |
maxConcurrency | integer | How many article pages to fetch in parallel. Default 4, max 16. |
proxyConfiguration | object | Apify Proxy configuration. Residential is on by default. |
Output
Article mode — one record per URL:
{"_input": "https://tribune.com.pk/story/2625663/psx-ends-lower-despite-moodys-upgrade","_source": "S1-html[express-parent-div]","headline": "PSX ends lower despite Moody s upgrade","articleBody": "KSE-100 index slips 200 points; profit-taking offsets early gains...","author": "...","publisher": "...","datePublished": "..."}
Latest mode — one record per headline:
{"_input": "latest","_source": "S2-sitemap","title": "Gold Up As Global Rates Hit 3 Month High","link": "https://tribune.com.pk/story/2625664/gold-up-as-global-rates-hit-3-month-high","lastmod": "2026-08-25"}
A failed URL still produces a row instead of silently disappearing:
{"_input": "https://tribune.com.pk/story/1/nonexistent-fake","_source": "none","_error": "blocked_or_transient","_errorDetail": "..."}
Notes
- A removed or nonexistent article URL comes back as
_error: "blocked_or_transient", not"not_found"— the site's Cloudflare setup challenges nonexistent/story/<id>/URLs specifically, so this actor can't tell "deleted article" apart from "anti-scraping block" at the HTTP level. Real articles are unaffected. latestmode titles are approximated from the URL slug (the sitemap has no title field) — usearticlemode for the exact headline.- No paywall was found on any sampled article — full text is included for every successfully fetched URL.