Seeking Alpha Headlines Scraper avatar
Seeking Alpha Headlines Scraper

Pricing

$2.00 / 1,000 results

Go to Apify Store
Seeking Alpha Headlines Scraper

Seeking Alpha Headlines Scraper

Scrapes headlines from Seeking Alpha based on keyword search. Returns headlines limited to the specified number of results.

Pricing

$2.00 / 1,000 results

Rating

5.0

(1)

Developer

Parsley Inc.

Parsley Inc.

Maintained by Community

Actor stats

1

Bookmarked

2

Total users

1

Monthly active users

5 days ago

Last modified

Share

This Apify actor fetches headlines from Seeking Alpha based on a keyword search. It's fast, reliable, and returns structured data including article titles, URLs, publication dates, summaries, authors, and comment counts.

Features

  • 🔍 Search Seeking Alpha for specific keywords
  • 📰 Extract headlines, URLs, publish dates, summaries, authors, and comment counts
  • 🎯 Limit results to a specific number (lastX parameter)

Input Parameters

The actor accepts the following input parameters:

ParameterTypeRequiredDefaultDescription
keywordStringYes-The keyword or search term to find headlines about (e.g., "Tesla", "Bitcoin", "AI")
lastXIntegerNo10Maximum number of headlines to retrieve (20-10000). Actor automatically handles pagination.

Input Example

{
"keyword": "Tesla",
"lastX": 20
}

Output

The actor returns a dataset with the following fields for each headline:

  • id - Article ID from Seeking Alpha
  • title - The headline/title of the article (HTML tags stripped)
  • url - Full URL to the article
  • publishedAt - Publication date/time (ISO format)
  • summary - Article summary or description (HTML tags stripped)
  • author - Author name
  • commentsCount - Number of comments on the article
  • keyword - The search keyword used
  • type - Article type (usually "article")

Output Example

[
{
"id": 4469935,
"title": "Tesla's Ticking Time Bomb",
"url": "https://seekingalpha.com/article/4469935-tesla-tsla-stock-ticking-time-bomb",
"publishedAt": "2021-11-16T11:57:00.000-05:00",
"summary": "Tesla has become the first traditional car makers...",
"author": "James Hanshaw",
"commentsCount": 2913,
"keyword": "Tesla",
"type": "article"
}
]