Intelligence
Material events, AI-generated business summaries, and insider trading analysis. All endpoints live under https://api.edgar.tools/v1 and require Professional tier.
GET /v1/companies/{identifier}/material-events
Tier: Professional
Get material events (8-K filings) for a company with item-level detail.
| Parameter | Type | Description |
|---|---|---|
identifier | string (path) | Company ticker or CIK |
limit | integer (default 20, max 100) | Max events to return |
days_back | integer (default 365, max 730) | Days of history to search |
curl "https://api.edgar.tools/v1/companies/AAPL/material-events?limit=10&days_back=90" \
-H "Authorization: Bearer etk_your_key_here"{
"company": { "ticker": "AAPL", "cik": "0000320193", "name": "Apple Inc." },
"events": [
{
"accession_number": "0001628280-24-123456",
"filing_date": "2024-10-31",
"items": ["2.02", "9.01"],
"item_names": ["Results of Operations", "Financial Statements"],
"has_high_impact": true,
"filing_url": "https://www.sec.gov/..."
}
],
"pagination": { "limit": 20, "days_back": 365, "total": 5 }
}GET /v1/companies/{identifier}/ai-summary
Tier: Professional
Get a pre-generated AI business summary for a company.
Pre-generated summaries. AI summaries are pre-computed from 10-K filings and cached. This endpoint does not make real-time AI calls, so responses are fast and deterministic.
| Parameter | Type | Description |
|---|---|---|
identifier | string (path) | Company ticker or CIK |
curl "https://api.edgar.tools/v1/companies/AAPL/ai-summary" \
-H "Authorization: Bearer etk_your_key_here"{
"company": { "ticker": "AAPL", "cik": "0000320193", "name": "Apple Inc." },
"summary": {
"business_description": "Apple Inc. designs, manufactures, and markets...",
"key_products": ["iPhone", "Mac", "iPad", "Wearables"],
"risk_factors": ["Supply chain concentration", "..."],
"generated_from": "10-K",
"generated_at": "2024-11-01T12:00:00Z"
}
}GET /v1/companies/{identifier}/insider-summary
Tier: Professional
Get an insider trading summary with sentiment score and transaction counts.
| Parameter | Type | Description |
|---|---|---|
identifier | string (path) | Company ticker or CIK |
days | integer (default 365, max 730) | Days of history to analyze |
curl "https://api.edgar.tools/v1/companies/AAPL/insider-summary?days=180" \
-H "Authorization: Bearer etk_your_key_here"{
"company": { "ticker": "AAPL", "cik": "0000320193", "name": "Apple Inc." },
"summary": {
"total_transactions": 42,
"total_buys": 8,
"total_sells": 34,
"net_shares": -1250000,
"sentiment_score": -0.45,
"period_days": 365
}
}