📄SEC Filings

The SEC API returns sec filings analyzed by Utradea.

// GET SEC
https://cloud.utradea.com/v1/get-sec

Endpoints

/get-sec

GET URL:https://api.utradea.com/v1/get-sec

Query Parameters

Name
Type
Description

ticker*

String

Pass a ticker symbol to return sec filings specific to that ticker.

documentType

String

Pass document type to filter on what type of sec filings to return. If this option is not passed the API will return what is available.

Headers

Name
Type
Description

Content-Type*

String

application/json

Authorization*

String

${YOUR_APIKEY}

{
    // Response
    statusCode: 200,
    output: [
  {
    "documentLink": "https://www.sec.gov/Archives/edgar/data/1820852/000114036121037701/brhc10030482_10q.htm",
    "acceptedDate": "2021-11-12T22:23:32.000Z",
    "articleContent": {
      "summary": "On August 19, 2021, the Company issued an unsecured promissory note (the “Promissory Note”) to the Sponsor, pursuant to which the Company could borrow up to an aggregate principal amount of $2,000,000. The Promissory Note is non-interest bearing and payable on the consummation of the merger, capital stock exchange, asset acquisition,\n              stock purchase, reorganization or similar business combination with one or more businesses. Once the warrants become exercisable, the Company may redeem the Public Warrants: The amount outstanding under the Promissory Note  ",
      "articleDetails": [
        "an aggregate principal amount",
        "the Promissory Note",
        "which",
        "the consummation",
        "the merger",
        "one or more businesses",
        "the Sponsor"
      ],
      "articleNumberReferences": [
        "$2,000,000"
      ],
      "exhibits": [
        "https://www.sec.gov/Archives/edgar/data/1820852/000114036121037701/brhc10030482_ex31-1.htm",
        "https://www.sec.gov/Archives/edgar/data/1820852/000114036121037701/brhc10030482_ex31-2.htm",
        "https://www.sec.gov/Archives/edgar/data/1820852/000114036121037701/brhc10030482_ex32-1.htm",
        "https://www.sec.gov/Archives/edgar/data/1820852/000114036121037701/brhc10030482_ex32-2.htm"
      ]
    },
    "company": "Sports Entertainment Acquisition Corp.",
    "documentType": "10-Q",
    "items": [],
    "ticker": "SEAH"
  }
]
}

Field Mappings

Type
Description

ticker

String

The company or cryptocurrency symbol.

documentType

String

An identifier for the type of sec filing offered in the API.

Accepted Values:

"8-K"

"8-K/A"

"10-K"

"10-K/A"

"10-Q"

"10-Q/A"

"6-K"

"6-K/A"

"20-F"

accessionNumber

String

The unique identifier for the sec document filing.

exhibits

Array

The exhibits are attached files & data associated to an SEC filing.

articleContent

Object

This is a object that saves the summarized results from Utradea's analytics.

articleContent | summary

Object | String

This field is the summary field, providing a brief description of the filing.

If there is no summary, then it will default to "Please view the filing in detail..."

articleContent | articleAmounts

Object | Array

This list represents all number/digit/percent references captured in the sec filing.

articleContent | articleDetails

Object | Array

This list represents important organization mentions, dates, and keyword phrases captured in the sec filing.

documentLink

String

This is the URL for the original sec filing in html format.

Last updated