Track SEC filings, earnings reports, and regulatory disclosures. Extract key financial data from 10-K, 10-Q, 8-K, and other company filings.
SEC filings contain essential financial information - revenue, earnings, risk factors, executive compensation, and material events. Staying on top of filings across your watchlist is crucial for investment decisions.
Manual monitoring doesn't scale. You need automated extraction that pulls key data points as soon as filings are published.
Extract key information from SEC filings
Revenue, net income, EPS, margins, and year-over-year changes.
New risks, changed disclosures, and material concerns.
Leadership changes, compensation, and insider transactions.
Forward guidance, outlook statements, and projections.
Extract SEC filing data
const axios = require('axios');
const API_KEY = 'your_api_key';
// Extract key data from a 10-K filing
const filingUrl = 'https://sec.gov/Archives/edgar/data/company/10-K.htm';
const filingData = await axios.get('https://api.webscraping.ai/ai/fields', {
params: {
api_key: API_KEY,
url: filingUrl,
fields: JSON.stringify({
company_name: 'Company name',
fiscal_year: 'Fiscal year covered',
total_revenue: 'Total revenue for the year',
net_income: 'Net income',
eps: 'Earnings per share (basic and diluted)',
total_assets: 'Total assets',
total_liabilities: 'Total liabilities',
cash_position: 'Cash and cash equivalents',
revenue_growth: 'Year-over-year revenue growth percentage',
key_risks: 'Top 3 risk factors mentioned',
business_segments: 'Revenue breakdown by segment if available'
})
}
});
console.log(filingData.data);
// {
// "company_name": "Tech Corporation Inc.",
// "fiscal_year": "2024",
// "total_revenue": "$45.2 billion",
// "net_income": "$8.1 billion",
// "eps": {"basic": "$12.45", "diluted": "$12.32"},
// "total_assets": "$98.5 billion",
// "total_liabilities": "$42.3 billion",
// "cash_position": "$18.7 billion",
// "revenue_growth": "15.3%",
// "key_risks": ["Supply chain disruption", "Regulatory changes", "Competition"],
// "business_segments": [{"name": "Cloud", "revenue": "$22B"}, ...]
// }
// Analyze 8-K for material events
const eventAnalysis = await axios.get('https://api.webscraping.ai/ai/question', {
params: {
api_key: API_KEY,
url: 'https://sec.gov/Archives/edgar/data/company/8-K.htm',
question: 'What material event is being disclosed? What is the financial impact? Is this positive or negative for shareholders?'
}
});
curl -G "https://api.webscraping.ai/ai/fields" \
--data-urlencode "api_key=your_api_key" \
--data-urlencode "url=https://sec.gov/Archives/edgar/data/company/10-K.htm" \
--data-urlencode 'fields={"total_revenue":"Revenue","net_income":"Net income","eps":"EPS","key_risks":"Top risks"}'
# Analyze material events
curl -G "https://api.webscraping.ai/ai/question" \
--data-urlencode "api_key=your_api_key" \
--data-urlencode "url=https://sec.gov/Archives/edgar/data/company/8-K.htm" \
--data-urlencode "question=What material event is disclosed and what is the impact?"
Extract financials for fundamental analysis
Track risk factor changes across portfolio
Monitor 8-Ks for material events
Track regulatory disclosures and changes
More financial data solutions
Get started with 1,000 free API credits. No credit card required.