SEC Filings
Get SEC filings for a company, including 10-K, 10-Q, 8-K, and other form types.
GET
/api/v1/companies/{cik_or_ticker}/filings Cost: 200 creditsParameters
| Parameter | Type | Required | Description |
|---|---|---|---|
| cik_or_ticker | string | Required | Company CIK or ticker symbol |
| form_type | string | Optional | Filter by form type (10-K, 10-Q, 8-K, etc.) |
| limit | integer | Optional (50) | Max results (max 200) |
Code examples
curl -H "X-API-Key: YOUR_API_KEY" \
"https://api.beefi.ai/api/v1/companies/GOOGL/filings?form_type=10-K&limit=5"Try it
GET
/companies/{cik_or_ticker}/filingsResponse
[
{
"accession_number": "0001652044-24-000012",
"form_type": "10-K",
"filing_date": "2024-01-31",
"report_date": "2023-12-31",
"primary_document": "goog-20231231.htm",
"description": "Annual Report"
}
]