Company Exhibits API
Retrieve all exhibits filed by a company
Overview
Endpoint
GET api.secblast.com/v1/exhibitsDescription
Retrieve all exhibits filed by a company identified by CIK or ticker symbol. Returns comprehensive information about each exhibit including accession numbers, filing dates, exhibit descriptions, and direct URLs to the exhibit documents.
Request Parameters
| Parameter | Type | Description |
|---|---|---|
| api_key | string | RequiredYour API key |
| cik | string | Either CIK or ticker requiredCompany's CIK (e.g., 2488) |
| ticker | string | Either CIK or ticker requiredCompany's ticker symbol (e.g., AMD) |
Response Format
[
{
"accession_number": "0000002488-25-000099",
"document_ref": "d742513dex991.htm",
"exhibit_number": "99.1",
"exhibit_description": "Press Release dated January 23, 2025",
"exhibit_url": "https://sec.gov/Archives/edgar/data/2488/000000248825000099/d742513dex991.htm",
"filed_date": "2025-01-23",
"document_id": "0000002488-25-000099"
},
{
"accession_number": "0000002488-25-000099",
"document_ref": "d742513dex992.htm",
"exhibit_number": "99.2",
"exhibit_description": "AMD Q4 2024 Financial Results",
"exhibit_url": "https://sec.gov/Archives/edgar/data/2488/000000248825000099/d742513dex992.htm",
"filed_date": "2025-01-23",
"document_id": "0000002488-25-000099"
}
]Example Requests
Using CIK
curl "https://api.secblast.com/v1/exhibits?api_key=YOUR_API_KEY&cik=2488"Using Ticker Symbol
curl "https://api.secblast.com/v1/exhibits?api_key=YOUR_API_KEY&ticker=AMD"Response Fields
| Field | Type | Description |
|---|---|---|
| accession_number | string | Unique identifier for the SEC filing |
| document_ref | string | Reference to the document file |
| exhibit_number | string | Exhibit number (e.g., "99.1", "10.1") |
| exhibit_description | string | Human-readable description of the exhibit |
| exhibit_url | string | Direct URL to the exhibit document |
| filed_date | string | Date when the exhibit was filed (YYYY-MM-DD format) |
| document_id | string | Internal document identifier |
Error Responses
400 Bad Request: Missing required parameter
{
"error": "Missing required parameter: cik or ticker"
}404 Not Found: Company not found
{
"error": "Company not found"
}