8-K Items API

Retrieve structured items and exhibits from 8-K filings

Overview

Endpoint

GET api.secblast.com/v1/8k_items

Description

Retrieve structured items and exhibits from a specific 8-K filing using the accession number. Returns organized data about the filing contents including item types, item names, exhibit information, and the plain-text content of each item.

Request Parameters

ParameterTypeDescription
api_keystringRequiredYour API key
accnumstringRequiredAccession number (e.g., 0000002488-25-000099)

Response Format

{
  "0000002488-25-000099": [
    {
      "itemType": "5.02",
      "itemName": "Departure of directors or certain officers; election of directors; appointment of certain officers; compensatory arrangements of certain officers",
      "exhibitName": "",
      "itemContent": "Item 5.02. Departure of Directors or Certain Officers; Election of Directors; Appointment of Certain Officers; Compensatory Arrangements of Certain Officers. On June 27, 2025, the Board of Directors (the “ Board ”) of Advanced Micro Devices, Inc. (the “ Company ”) and the Compensation and Leadership Resources Committee of the Board (the “ Committee ”), as applicable, approved the following changes to the compensation of certain members of the Company’s executive team: Base Salary Increases Effective July 1, 2025, ..."
    }
  ]
}

Example Request

curl "https://api.secblast.com/v1/8k_items?api_key=YOUR_API_KEY&accnum=0000002488-25-000099"

Error Responses

400 Bad Request: Missing accession number

{
  "error": "Accession number is required"
}

404 Not Found: Filing not found

{
  "error": "Filing not found for accession number: 0000002488-25-000099"
}