Extract financial data, earnings reports, and market intelligence from public sources for analysis.
const filings = await client.search({
query: "site:sec.gov AAPL 10-K filing",
maxResults: 10
})
const report = await client.scrape({
url: filings.organic[0].link,
extractSchema: {
revenue: "number",
netIncome: "number",
eps: "number",
yearOverYearGrowth: "number"
}
})