Filing Info
GET /v2/filing_infoGet comprehensive filing information by accession number. Returns filer details, documents, sections (for 10-K/10-Q), and 8-K items with exhibits.
Parameters
| Parameter | Type | Description |
|---|---|---|
api_key | string | Required. Your API key. |
accession_number | string | Required. Accession number. Example: "0000320193-24-000081" |
Examples
Get Filing Info
curl "https://api.secblast.com/v2/filing_info?api_key=YOUR_KEY&accession_number=0000320193-24-000081"Using JSON Body
curl -X GET "https://api.secblast.com/v2/filing_info" \
-H "Content-Type: application/json" \
-d '{
"api_key": "YOUR_KEY",
"accession_number": "0000320193-24-000081"
}'Response
{
"accession_number": "0000320193-24-000081",
"cik": "320193",
"entity_name": "Apple Inc.",
"form_type": "10-K",
"filing_date": "2024-11-01",
"acceptance_datetime": "2024-11-01T06:01:23",
"report_date": "2024-09-28",
"documents": [
{
"document_id": "0000320193-24-000081-1",
"sequence": 1,
"filename": "aapl-20240928.htm",
"description": "10-K",
"type": "10-K",
"size": 15234567
},
{
"document_id": "0000320193-24-000081-2",
"sequence": 2,
"filename": "aapl-20240928_g1.jpg",
"description": "GRAPHIC",
"type": "GRAPHIC",
"size": 45678
}
],
"sections": [
{
"section": "1",
"title": "Business",
"start_index": 12345,
"end_index": 98765
},
{
"section": "1A",
"title": "Risk Factors",
"start_index": 98766,
"end_index": 234567
}
],
"items_8k": null
}8-K Response (with items)
{
"accession_number": "0001193125-24-123456",
"form_type": "8-K",
"items_8k": [
{
"item": "5.02",
"title": "Departure of Directors or Certain Officers",
"exhibits": [
{
"exhibit": "99.1",
"description": "Press Release",
"document_id": "0001193125-24-123456-3"
}
]
}
]
}