Skip to main content
GET
/
filings
Get SEC filings
curl --request GET \
  --url https://api.aisa.one/apis/v1/financial/filings \
  --header 'Authorization: Bearer <token>'
{
  "filings": [
    {
      "cik": 123,
      "accession_number": "<string>",
      "filing_type": "<string>",
      "report_date": "2023-12-25",
      "ticker": "<string>",
      "url": "<string>"
    }
  ]
}

Authorizations

Authorization
string
header
required

Bearer authentication header of the form Bearer <token>, where <token> is your auth token.

Query Parameters

cik
string

The Central Index Key (CIK) of the company.

ticker
string

The ticker symbol.

filing_type
enum<string>

The type of filing.

Available options:
10-K,
10-Q,
8-K,
4,
144

Response

SEC filings response

filings
object[]