Resources
6Install
npx skillscat add imoonkey/openweb/src-sites-seeking-alpha Install via the SkillsCat registry.
About this skill
This skill provides access to Seeking Alpha's investment research platform, enabling retrieval of stock ratings, earnings data, analyst articles, and community-driven stock analysis. It solves the problem of programmatically accessing financial research data that would otherwise require manual browsing of the platform. Developers should use it when building AI agents or applications that need structured access to stock analysis, earnings transcripts, and investment articles for financial research workflows.
SKILL.md
Seeking Alpha
Overview
Investment research and analysis platform. Stock ratings, earnings data, analyst articles, and community-driven stock analysis.
Workflows
Research a stock
searchArticles(query)→slug,quant_ratinggetStockAnalysis(ticker)→ratings(quant/author/sell-side),grades,metricsgetEarnings(ticker)→estimates(EPS/revenue),transcripts
Read earnings transcript
getEarnings(ticker)→transcripts[].idgetArticle(articleId)→ full transcript HTML content
Search for analysis
searchArticles(query)→id,url,typegetArticle(articleId)→ full article content (if not paywalled)
Operations
| Operation | Intent | Key Input | Key Output | Notes |
|---|---|---|---|---|
| searchArticles | find articles/tickers | query | id, type, name, company_name, quant_rating, url | returns symbols and articles; paginated |
| getArticle | read article content | articleId ← searchArticles or getEarnings transcripts[].id |
title, content, summary, author, tickers | some articles paywalled |
| getStockAnalysis | stock ratings & metrics | ticker | ratings (quant/author/sell-side), grades, marketcap, eps_growth | entry point; current period may be premium-locked |
| getEarnings | earnings data | ticker | estimates (EPS/revenue), transcripts[].id | entry point; transcript IDs feed into getArticle |
Quick Start
# Search for Apple articles
openweb seeking-alpha exec searchArticles '{"query":"AAPL","size":5}'
# Read an article/transcript
openweb seeking-alpha exec getArticle '{"articleId":"4864181"}'
# Stock analysis: ratings, grades, metrics
openweb seeking-alpha exec getStockAnalysis '{"ticker":"AAPL"}'
# Earnings: estimates vs actuals + transcript list
openweb seeking-alpha exec getEarnings '{"ticker":"AAPL"}'