Business Insider Scraper avatar

Business Insider Scraper

Pricing

from $3.50 / 1,000 results

Go to Apify Store
Business Insider Scraper

Business Insider Scraper

Extract article metadata and headlines from businessinsider.com -- 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

16 hours ago

Last modified

Categories

Share

Extract full article details or the newest headlines from Business Insider — no account or subscription needed.

Why use this actor

  • No account or login required
  • Rich article detail: headline, byline with reporter job titles and profile links, editor, publish/update dates, and publisher info
  • Also fetches the newest headlines site-wide, including full article body text, without visiting each article individually
  • Automatically excludes subscriber-only "Insider" premium content from the headline feed
  • 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 every publicly available detail about the story.
  3. In latest mode, the actor reads the site-wide headline feed and returns the newest stories, including full text.
  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.businessinsider.com/fancy-new-business-class-suites-cause-headache-certification-delays-2026-8"
],
"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 site-wide.
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 20.
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; the real record includes the full publisher block with masthead, ethics policy, and social links):

{
"_input": "https://www.businessinsider.com/fancy-new-business-class-suites-cause-headache-certification-delays-2026-8",
"_source": "S1-jsonld",
"_scrapedAt": "2026-08-24T00:00:00Z",
"@type": "NewsArticle",
"editor": { "@type": "Person", "name": "Will Martin" },
"author": [
{ "@type": "Person", "name": "Pete Syme", "url": "https://www.businessinsider.com/author/pete-syme", "jobTitle": "Aviation Reporter" }
/* ... 1 more author */
],
"publisher": { "@type": "NewsMediaOrganization", "name": "Business Insider", "url": "https://www.businessinsider.com" }
/* ... headline, description, datePublished, dateModified, image, mainEntityOfPage */
}

Latest headlines mode — one record per headline:

{
"_input": "latest",
"_source": "S2-atom",
"_scrapedAt": "2026-08-23T19:10:16Z",
"title": "Hugging Face has been fielding M&A interest for a deal worth at least $13 billion",
"link": "https://www.businessinsider.com/hugging-face-could-be-acquired-13-billion-2026-8",
"updated": "2026-08-23T19:01:36Z",
"content": "<figure><img src=\"https://i.insider.com/6a60930254f987526177814a?format=jpeg\" ...",
"categories": []
}
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 (headline in article mode, title in latest mode).
authorarrayReporters, with job title and profile URL (article mode only).
editorobjectStory editor (article mode only).
datePublished / dateModifiedstringPublication timestamps (article mode).
updatedstringLast-updated timestamp (latest mode).
contentstringFull HTML article body (latest mode only).
linkstringThe article URL (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).