Company Exhibits API

Retrieve all exhibits filed by a company

Overview

Endpoint

GET api.secblast.com/v1/exhibits

Description

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

ParameterTypeDescription
api_keystringRequiredYour API key
cikstringEither CIK or ticker requiredCompany's CIK (e.g., 2488)
tickerstringEither 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

FieldTypeDescription
accession_numberstringUnique identifier for the SEC filing
document_refstringReference to the document file
exhibit_numberstringExhibit number (e.g., "99.1", "10.1")
exhibit_descriptionstringHuman-readable description of the exhibit
exhibit_urlstringDirect URL to the exhibit document
filed_datestringDate when the exhibit was filed (YYYY-MM-DD format)
document_idstringInternal 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"
}