Logo
AXION

Filings Search

GET/filings/search

Performs a filtered search across all EDGAR filings for a specific calendar quarter. You can narrow results by form type and/or company ticker. Useful for discovering all filings of a certain type during a particular time period.

Query Parameters

ParameterTypeRequiredDescription
yearintegerRequiredCalendar year (e.g., 2024, 2025)
quarterinteger (1-4)RequiredFiscal quarter (1, 2, 3, 4)
formstringOptional

Filter by SEC form type (case-insensitive)

view all values
tickerstringOptionalCompany ticker symbol to narrow results

Examples:

https://api.axionquant.com/filings/search?year=2024&quarter=1&form=4

Key Response Fields

[].company

Company legal name

[].cik

Central Index Key (CIK) - unique SEC identifier

[].form

SEC form type

[].filingDate

Date filed with the SEC

[].accessionNumber

SEC accession number

[].documentId

Base64-encoded SEC document URL for fetching the document text

[].url

Direct SEC EDGAR URL

|

Search Form 4, Q1 2024

Request

Sample code
1from axion import Axion
2client = Axion(api_key='axn_123')
3
4results = client.filings.search(
5    ticker='AAPL',
6    form='4',
7    year='2024',
8    quarter='1'
9)
10print(results)

Response

[
  {
    "company": "Apple Inc.",
    "cik": 320193,
    "form": "4",
    "filingDate": "2024-01-15",
    "accessionNumber": "000032019324000015",
    "documentId": "aHR0cHM6Ly93d3cuc2VjLmdvdi9BcmNoaXZlcy9lZGdhci9kYXRhLzMyMDE5My8wMDAwMzIwMTkzMjQwMDAwMTUvaW5kZXguaHRtbA==",
    "url": "https://www.sec.gov/Archives/edgar/data/320193/000032019324000015-index.html"
  },
  {
    "company": "Apple Inc.",
    "cik": 320193,
    "form": "4",
    "filingDate": "2024-01-14",
    "accessionNumber": "000032019324000014",
    "documentId": "aHR0cHM6Ly93d3cuc2VjLmdvdi9BcmNoaXZlcy9lZGdhci9kYXRhLzMyMDE5My8wMDAwMzIwMTkzMjQwMDAwMTQvaW5kZXguaHRtbA==",
    "url": "https://www.sec.gov/Archives/edgar/data/320193/000032019324000014-index.html"
  }
]
GET/filings/document/text

Fetches the raw text content of an SEC filing document using a documentId from a filing record. Returns a JSON object with the source URL and plain text extracted from the SEC filing HTML or XML. This is useful for full-text search, analysis, or feeding document content into LLM workflows.

Query Parameters

ParameterTypeRequiredDescription
documentIdstringRequiredBase64-encoded SEC document URL from a filing record's documentId field

Examples:

https://api.axionquant.com/filings/document/text
https://api.axionquant.com/filings/document/text?filingId=example123

Key Response Fields

src

Decoded source URL of the SEC filing document

text

Raw plain text content of the SEC filing document, with HTML/XML markup removed

|

Apple 10-Q Document Text

Request

Sample code
1from axion import Axion
2client = Axion(api_key='axn_123')
3
4document_id = "aHR0cHM6Ly93d3cuc2VjLmdvdi9BcmNoaXZlcy9lZGdhci9kYXRhLzMyMDE5My8wMDAwMzIwMTkzMjYwMDAwMTMvYWFwbC0yMDI2MDMyOC5odG0="
5text = client.filings.document_text(document_id)
6print(text)

Response

{
  "src": "https://www.sec.gov/Archives/edgar/data/320193/0000320193-20-000010.txt",
  "text": "UNITED STATES

SECURITIES AND EXCHANGE COMMISSION

Washington, D.C. 20549

FORM SD

Specialized Disclosure Report

Apple Inc.

(Exact name of the registrant as specified in its charter)

California

001-36743

94-2404110

(State or other jurisdiction of incorporation or organization)

(Commission File Number)

(I.R.S. Employer Identification No.)

One Apple Park Way

Cupertino, California 95014

(Address of principal executive offices) (Zip Code)

..."
}
GET/filings/document/sentiment

Analyzes the sentiment of an SEC filing document using a documentId from a filing record. The document text is extracted from the SEC filing, then processed through a sentiment analysis model to determine whether the overall tone is positive or negative.

Query Parameters

ParameterTypeRequiredDescription
documentIdstringRequiredBase64-encoded SEC document URL from a filing record's documentId field

Examples:

https://api.axionquant.com/filings/document/sentiment
https://api.axionquant.com/filings/document/sentiment?filingId=example123

Key Response Fields

label

Overall sentiment label (POSITIVE or NEGATIVE)

score

Confidence score of the overall sentiment (0 to 1)

breakdown.positive.count

Number of sentences classified as positive

breakdown.positive.avgScore

Average confidence score of positive sentences

breakdown.negative.count

Number of sentences classified as negative

breakdown.negative.avgScore

Average confidence score of negative sentences

|

Apple 10-Q Filing Sentiment

Request

Sample code
1from axion import Axion
2client = Axion(api_key='axn_123')
3
4document_id = "aHR0cHM6Ly93d3cuc2VjLmdvdi9BcmNoaXZlcy9lZGdhci9kYXRhLzMyMDE5My8wMDAwMzIwMTkzMjYwMDAwMTMvYWFwbC0yMDI2MDMyOC5odG0="
5sentiment = client.filings.document_sentiment(document_id)
6print(sentiment)

Response

{
  "label": "NEGATIVE",
  "score": 0.984021182571139,
  "breakdown": {
    "positive": {
      "count": 63,
      "avgScore": 0.987096269925435
    },
    "negative": {
      "count": 293,
      "avgScore": 0.984021182571139
    }
  }
}
GET/filings/list/forms

Returns a flat array of supported SEC form type strings (including "all"). This endpoint does not require any authentication or parameters and is useful for building dropdown menus or validating form type inputs.

Examples:

https://api.axionquant.com/filings/list/forms

Response

The response is a flat array of strings representing supported SEC form types. The first element is always "all" which can be used in other endpoints to include all form types.

[0]

"all" — wildcard for all form types

[1..n]

Individual SEC form codes (e.g., "10-K", "4", "NPORT-P")

|

Available Forms

Request

Sample code
1from axion import Axion
2client = Axion(api_key='axn_123')
3
4forms = client.filings.list_forms()
5print(forms)

Response

[
  "all",
  "10-K",
  "10-Q",
  "8-K",
  "4",
  "3",
  "S-1",
  "S-3",
  "DEF 14A",
  "13F-HR",
  "SC 13G",
  "SC 13D",
  "144",
  "NPORT-P",
  "NPORT-EX"
]