# 8-K Filing API: Item Codes, Guidance, Sentiment

**Use case:** 

Get 8-K filings parsed from SEC EDGAR as JSON, with classified item codes, extracted guidance sentences, press release text, and sentiment scores.

## Input

```json
{
  "tickers": [
    "TSLA"
  ],
  "dataType": "filings",
  "filingsLimit": 5,
  "transcriptsLimit": 4,
  "includeFullText": true,
  "metadataOnly": false,
  "onlyNew": false
}
```

## Output

```json
{
  "ticker": {
    "label": "Ticker",
    "format": "string"
  },
  "companyName": {
    "label": "Company",
    "format": "string"
  },
  "formType": {
    "label": "Form Type",
    "format": "string"
  },
  "itemCodes": {
    "label": "8-K Items",
    "format": "array"
  },
  "itemNames": {
    "label": "8-K Item Names",
    "format": "array"
  },
  "title": {
    "label": "Title",
    "format": "string"
  },
  "filedDate": {
    "label": "Filed Date",
    "format": "string"
  },
  "acceptanceDateTime": {
    "label": "Accepted At",
    "format": "string"
  },
  "reportDate": {
    "label": "Report Date",
    "format": "string"
  },
  "eventDate": {
    "label": "Event Date",
    "format": "string"
  },
  "sentimentNet": {
    "label": "Sentiment Net",
    "format": "number"
  },
  "guidanceSentences": {
    "label": "Guidance Sentences",
    "format": "array"
  },
  "url": {
    "label": "Filing URL",
    "format": "string"
  },
  "documentUrl": {
    "label": "Document URL",
    "format": "string"
  },
  "pressReleaseUrl": {
    "label": "Press Release URL",
    "format": "string"
  }
}
```

## About this Actor

This example demonstrates how to use [Earnings Call Transcript API - SEC 8-K Filings Parser & Monitor](https://apify.com/johnvc/earnings-call-transcript-api) with a specific input configuration. Visit the [Actor detail page](https://apify.com/johnvc/earnings-call-transcript-api) to learn more, explore other use cases, and run it yourself.