Research Company Filings
Search the SEC EDGAR database for specific company filings including 10-Ks, 10-Qs, 8-Ks, and other regulatory disclosures.
SEC EDGAR filings & financial data
Search the SEC EDGAR database for U.S. public companies. Look up by ticker, browse filings (10-K, 10-Q, 8-K, Form 4), pull XBRL financials, track insider trades, search filings by keyword, and screen companies by metrics like revenue or net income.
Find U.S. public companies by ticker symbol or company name. Returns CIK numbers, tickers, and company names for use with other SEC skills.
curl -H "Authorization: Bearer $TOOLROUTER_API_KEY" \
-d '{
"tool": "sec-filings",
"skill": "search_company",
"input": {
"query": "AAPL"
}
}' \
https://api.toolrouter.com/v1/tools/callGet recent SEC filings for a company by CIK number. Filter by form type (10-K, 10-Q, 8-K, Form 4, 13F-HR, S-1) and returns company details, addresses, and filing list with direct document URLs.
curl -H "Authorization: Bearer $TOOLROUTER_API_KEY" \
-d '{
"tool": "sec-filings",
"skill": "company_filings",
"input": {
"cik": "320193"
}
}' \
https://api.toolrouter.com/v1/tools/callGet structured XBRL financial data for a company — income statement, balance sheet, and cash flow. Returns annual and quarterly figures for revenue, net income, assets, liabilities, cash, debt, EPS, and more.
curl -H "Authorization: Bearer $TOOLROUTER_API_KEY" \
-d '{
"tool": "sec-filings",
"skill": "financial_statements",
"input": {
"cik": "320193"
}
}' \
https://api.toolrouter.com/v1/tools/callGet recent insider trades (Form 4 filings) for a company. Shows who bought or sold shares, transaction dates, prices, share amounts, and ownership after each transaction.
curl -H "Authorization: Bearer $TOOLROUTER_API_KEY" \
-d '{
"tool": "sec-filings",
"skill": "insider_transactions",
"input": {
"cik": "320193"
}
}' \
https://api.toolrouter.com/v1/tools/callFull-text search across all SEC filings by keyword. Filter by form type and date range to find specific disclosures, risk factors, material events, or topics across all public companies.
curl -H "Authorization: Bearer $TOOLROUTER_API_KEY" \
-d '{
"tool": "sec-filings",
"skill": "filing_search",
"input": {
"query": "artificial intelligence risk",
"form_type": "10-K"
}
}' \
https://api.toolrouter.com/v1/tools/callScreen and rank all U.S. public companies by a financial metric. Find the largest companies by revenue, most profitable by net income, or filter by assets, equity, cash, debt, and more.
curl -H "Authorization: Bearer $TOOLROUTER_API_KEY" \
-d '{
"tool": "sec-filings",
"skill": "screen_companies",
"input": {
"metric": "revenue"
}
}' \
https://api.toolrouter.com/v1/tools/callclaude mcp add --transport stdio \
--env TOOLROUTER_API_KEY=YOUR_API_KEY \
toolrouter -- npx -y toolrouter-mcpcurl -H "Authorization: Bearer $TOOLROUTER_API_KEY" \
-d '{"tool":"sec-filings","skill":"search_company","input":{}}' \
https://api.toolrouter.com/v1/tools/callSearch the SEC EDGAR database for specific company filings including 10-Ks, 10-Qs, 8-Ks, and other regulatory disclosures.
Track annual 10-K filings and extract key financial facts to monitor company performance year over year.
Find relevant academic papers on any research topic across millions of scholarly publications.
Convert street addresses into precise latitude and longitude coordinates for mapping and spatial analysis.
Perform financial due diligence by extracting SEC filing data, gathering analyst insights, assessing macroeconomic conditions, and visualizing results.
Research investment opportunities across stocks and crypto with SEC filings analysis and visual performance comparisons.
Perform startup due diligence by researching company background, analyzing team presence, checking regulatory filings, and mapping competition.
Start with `search_company`. It looks up a ticker or company name and returns the CIK you need for the other skills.
Yes. `company_filings` lets you filter by form type and browse recent filings with direct document URLs.
Yes. `financial_statements` returns XBRL income statement, balance sheet, and cash flow data in a structured format.
Yes. Use `filing_search` for full-text search and `screen_companies` to rank U.S. public companies by financial metrics.