Docs/APIs/SEC Filings

SEC Filings

Get a Company SEC Filing History by Ticker

OperationalCredits 1 per callp50 199msFinanceStar

Overview

SEC Filings works by projecting the SEC EDGAR submissions feed for US public companies into a clean, decision-ready filing history. On top of the raw filing list it derives activity analytics - counts by form type, filing cadence, and days since the last annual, quarterly and current report - so you can see a company's disclosure activity at a glance rather than paging through EDGAR. Data is refreshed continuously from official SEC filings.

Endpoint

One host, one path per API. The block below shows this call in four languages; every one of them is the same HTTP request. Making requests covers the timeouts, retries and parameter rules that apply to all of them. The SDKs wrap the same call in a typed client.

GEThttps://api.apiverve.com/v1/secfilings
curl "https://api.apiverve.com/v1/secfilings?ticker=AAPL&form=10-K&limit=10" \
  -H "x-api-key: your_api_key_here"
const res = await fetch('https://api.apiverve.com/v1/secfilings?ticker=AAPL&form=10-K&limit=10', {
  headers: { 'x-api-key': 'your_api_key_here' },
});

if (!res.ok) throw new Error(`${res.status} ${await res.text()}`);

const { data } = await res.json();
console.log(data);
import requests

res = requests.get(
    "https://api.apiverve.com/v1/secfilings?ticker=AAPL&form=10-K&limit=10",
    headers={"x-api-key": "your_api_key_here"},
    timeout=15,
)
res.raise_for_status()

print(res.json()["data"])
package main

import (
	"fmt"
	"io"
	"net/http"
)

func main() {
	req, _ := http.NewRequest("GET", "https://api.apiverve.com/v1/secfilings?ticker=AAPL&form=10-K&limit=10", nil)
	req.Header.Set("x-api-key", "your_api_key_here")

	res, err := http.DefaultClient.Do(req)
	if err != nil {
		panic(err)
	}
	defer res.Body.Close()

	out, _ := io.ReadAll(res.Body)
	fmt.Println(string(out))
}

Replace your_api_key_here with the key from your dashboard. When the inputs arrive as a list rather than one at a time, batch requests run up to 200 of them through this same API in a single call.

Authentication

Send your key in the x-api-key header. That is the only auth step — there is no token exchange and no per-endpoint scope to configure. Authentication covers creating, rotating and revoking keys.

401 is the only auth verdict

A 401 means the key is missing, invalid or expired. A 403 means the key is valid but not permitted here — blocked by a key restriction or an IP allow-list. Running out of credits is a 429.

Parameters

Sent in the query string. Premium parameters are accepted on every plan but only take effect on plans that include them.

ParameterTypeDescription
tickerRequiredstringStock ticker symbol (e.g. AAPL, MSFT, ADBE)
length 1–6
formOptionalPremiumstringFilter to a single form type (e.g. 10-K, 10-Q, 8-K, 4).
limitOptionalPremiumintegerNumber of filings to return (1-50). Defaults to 5.
range 1–50

Response

Every API returns the same three top-level keys, so one response handler covers your whole integration: status, error and data. Only data changes shape. Response format covers the envelope, the other output formats and how premium fields are withheld.

Sample response
{
  "status": "ok",
  "error": null,
  "data": {
    "ticker": "AAPL",
    "cik": "0000320193",
    "company": "Apple Inc.",
    "sic": "3571",
    "sicDescription": "Electronic Computers",
    "fiscalYearEnd": "0927",
    "totalRecentFilings": 1000,
    "count": 4,
    "latest": {
      "annual": {
        "form": "10-K",
        "filingDate": "2025-11-01",
        "accessionNumber": "0000320193-25-000123",
        "primaryDocument": "aapl-20250927.htm",
        "url": "https://www.sec.gov/Archives/edgar/data/320193/000032019325000123/aapl-20250927.htm",
        "daysAgo": 62
      },
      "quarterly": {
        "form": "10-Q",
        "filingDate": "2025-08-01",
        "accessionNumber": "0000320193-25-000106",
        "primaryDocument": "aapl-20250628.htm",
        "url": "https://www.sec.gov/Archives/edgar/data/320193/000032019325000106/aapl-20250628.htm",
        "daysAgo": 154
      },
      "currentReport": {
        "form": "8-K",
        "filingDate": "2025-10-30",
        "accessionNumber": "0000320193-25-000121",
        "primaryDocument": "aapl-20251030.htm",
        "url": "https://www.sec.gov/Archives/edgar/data/320193/000032019325000121/aapl-20251030.htm",
        "daysAgo": 64
      }
    },
    "filings": [
      {
        "form": "10-K",
        "filingDate": "2025-11-01",
        "reportDate": "2025-09-27",
        "primaryDocDescription": "10-K",
        "accessionNumber": "0000320193-25-000123",
        "primaryDocument": "aapl-20250927.htm",
        "url": "https://www.sec.gov/Archives/edgar/data/320193/000032019325000123/aapl-20250927.htm",
        "items": null,
        "isXBRL": true
      },
      {
        "form": "8-K",
        "filingDate": "2025-10-30",
        "reportDate": "2025-10-30",
        "primaryDocDescription": "8-K",
        "accessionNumber": "0000320193-25-000121",
        "primaryDocument": "aapl-20251030.htm",
        "url": "https://www.sec.gov/Archives/edgar/data/320193/000032019325000121/aapl-20251030.htm",
        "items": "2.02,9.01",
        "isXBRL": true
      },
      {
        "form": "4",
        "filingDate": "2025-10-16",
        "reportDate": "2025-10-14",
        "primaryDocDescription": "FORM 4",
        "accessionNumber": "0000320193-25-000118",
        "primaryDocument": "xslF345X05/wf-form4.xml",
        "url": "https://www.sec.gov/Archives/edgar/data/320193/000032019325000118/xslF345X05/wf-form4.xml",
        "items": null,
        "isXBRL": false
      },
      {
        "form": "10-Q",
        "filingDate": "2025-08-01",
        "reportDate": "2025-06-28",
        "primaryDocDescription": "10-Q",
        "accessionNumber": "0000320193-25-000106",
        "primaryDocument": "aapl-20250628.htm",
        "url": "https://www.sec.gov/Archives/edgar/data/320193/000032019325000106/aapl-20250628.htm",
        "items": null,
        "isXBRL": true
      }
    ],
    "analytics": {
      "formCounts": {
        "3": 22,
        "4": 512,
        "8-K": 96,
        "10-Q": 84,
        "10-K": 28,
        "DEF 14A": 27,
        "SC 13G": 41
      },
      "filingsLast30Days": 3,
      "filingsLast90Days": 9,
      "filingsLast365Days": 74,
      "daysSinceLastFiling": 62,
      "daysSinceLastAnnual": 62,
      "daysSinceLastQuarterly": 154,
      "averageDaysBetweenFilings": 12.4,
      "mostActiveForm": "4"
    }
  }
}

Response fields

Paths are relative to data. Premium fields are absent rather than zeroed on plans that do not include them, so check for presence instead of comparing to 0.

FieldTypeExampleDescription
tickerstring"AAPL"Stock ticker symbol for the company
cikstring"0000320193"SEC Central Index Key unique identifier
companystring"Apple Inc."Official registered name of the company
sicstring"3571"Standard Industrial Classification code
sicDescriptionstring"Electronic Computers"Industry description for the SIC code
fiscalYearEndstring"0927"Fiscal year end in MMDD format
totalRecentFilingsnumber1000Total filings in the company's recent EDGAR feed
countnumber4Number of filings returned in this response
latestobject{...}Most recent filing of each headline type
annualPremiumobject{...}Most recent 10-K annual report
formPremiumstring"10-K"Form type (10-K)
filingDatePremiumstring"2025-11-01"Date the annual report was filed
accessionNumberPremiumstring"0000320193-25-000123"SEC accession number for the filing
primaryDocumentPremiumstring"aapl-20250927.htm"Primary document filename
urlPremiumstring"https://www.sec.gov/Archives/edgar/data/320193/000032019325000123/aapl-20250927.htm"Direct link to the filing document
daysAgoPremiumnumber62Days since the annual report was filed
quarterlyPremiumobject{...}Most recent 10-Q quarterly report
formPremiumstring"10-Q"Form type (10-Q)
filingDatePremiumstring"2025-08-01"Date the quarterly report was filed
accessionNumberPremiumstring"0000320193-25-000106"SEC accession number for the filing
primaryDocumentPremiumstring"aapl-20250628.htm"Primary document filename
urlPremiumstring"https://www.sec.gov/Archives/edgar/data/320193/000032019325000106/aapl-20250628.htm"Direct link to the filing document
daysAgoPremiumnumber154Days since the quarterly report was filed
currentReportPremiumobject{...}Most recent 8-K current report
formPremiumstring"8-K"Form type (8-K)
filingDatePremiumstring"2025-10-30"Date the current report was filed
accessionNumberPremiumstring"0000320193-25-000121"SEC accession number for the filing
primaryDocumentPremiumstring"aapl-20251030.htm"Primary document filename
urlPremiumstring"https://www.sec.gov/Archives/edgar/data/320193/000032019325000121/aapl-20251030.htm"Direct link to the filing document
daysAgoPremiumnumber64Days since the current report was filed
filingsarray[4]Recent filings, most recent first
formstring"10-K"SEC form type (10-K, 10-Q, 8-K, 4, ...)
filingDatestring"2025-11-01"Date the filing was submitted
reportDatestring"2025-09-27"Period or event date the filing reports on
primaryDocDescriptionstring"10-K"Description of the primary document
accessionNumberstring"0000320193-25-000123"SEC accession number for the filing
primaryDocumentstring"aapl-20250927.htm"Primary document filename
urlstring"https://www.sec.gov/Archives/edgar/data/320193/000032019325000123/aapl-20250927.htm"Direct link to the filing document
itemsobjectnull8-K item numbers disclosed, when applicable
isXBRLbooleantrueWhether the filing includes XBRL structured data
analyticsobject{...}
formCountsPremiumobject{...}Count of filings by form type in the recent feed
3Premiumnumber22
4Premiumnumber512
8-KPremiumnumber96
10-QPremiumnumber84
10-KPremiumnumber28
DEF 14APremiumnumber27
SC 13GPremiumnumber41
filingsLast30DaysPremiumnumber3Number of filings in the last 30 days
filingsLast90DaysPremiumnumber9Number of filings in the last 90 days
filingsLast365DaysPremiumnumber74Number of filings in the last 365 days
daysSinceLastFilingPremiumnumber62Days since the most recent filing of any type
daysSinceLastAnnualPremiumnumber62Days since the most recent 10-K
daysSinceLastQuarterlyPremiumnumber154Days since the most recent 10-Q
averageDaysBetweenFilingsPremiumnumber12.4Average days between recent filings
mostActiveFormPremiumstring"4"Most frequently filed form type

Errors

Read the HTTP status first, then error for the specific reason. The body names the parameter that has to change. Error handling covers the full status list and which of them are worth retrying.

StatusMeaningWhat to do
400Input was rejectedRead error; it names the parameter.
401Key missing or invalidCheck the header name and the key value.
403Key valid, but not permittedA key restriction or IP allow-list; see key scoping.
429Rate limited, or out of creditsRead error to tell them apart; see rate limits.

Other ways to use SEC Filings

Set up SEC Filings on APIVerve, or reach the same source a different way. Your APIVerve account and credits work on all of them — one key, one balance.

Give it to an AI agentConnect over MCP and your agent calls it as a native tool — Claude, Cursor, ChatGPT.VerveKitReference →
Use it in Google Sheets or ExcelA =VERVE() formula fills a column — no script, no export, recalculates in place.VerveSheetsReference →
Ground an agent on itA cited, machine-checkable fact your model can't produce on its own.VerveContextReference →

More in Finance:

Was this page helpful?