zapi.
APIsPricingDocsMCP
APIsPricingDocsMCPSign in
zapi.
APIsPricingDocsMCP
APIsPricingDocsMCPSign in
On this page
  • Playground
  • Code examples
  • Full reference
  • Related APIs
Finance/SEC EDGAR
Logo SEC EDGAR

SEC EDGAR

US issuer filings and reported accounting figures — full-text search since 2001, company profiles, filing history and XBRL facts.

Endpoints
4
Requests
113
Updated
2 months ago
For LLMs
llms.txt
Endpoint health15 hours ago
  • searchpassing, 0.4s
  • companypassing, 0.0s
  • filingspassing, 0.0s
  • conceptpassing, 0.3s
4/4 passingdaily 01:00 WIB

Playground

4 endpoints
GET/v1/finance:sec-edgar/search5m cache6 paramschecking key…
Parameters
qstring

Phrase to search. Quote it for an exact match

companystring

Restrict to an issuer by name or ticker

formsstring

Comma-separated form types, e.g. 10-K,8-K

fromstring

Earliest filing date, YYYY-MM-DD

tostring

Latest filing date, YYYY-MM-DD

pagenumber

Page number, 100 results per page. Default 1, max 100

·
Response
EXAMPLE
{
  "page": 1,
  "count": 100,
  "items": [
    {
      "cik": "0000815097",
      "sic": "4400",
      "url": "https://www.sec.gov/Archives/edgar/data/815097/000081509723000012/ccl-20221130.htm",
      "form": "10-K",
      "ticker": "CCL",
      "company": "CARNIVAL CORP",
      "filedAt": "2023-01-27",
      "document": "ccl-20221130.htm",
      "location": "Miami, FL",
      "periodEnding": "2022-11-30",
      "accessionNumber": "0000815097-23-000012"
    },
    {
      "cik": "0001408198",
      "sic": "7389",
      "url": "https://www.sec.gov/Archives/edgar/data/1408198/000140819826000011/msci-20251231.htm",
      "form": "10-K",
      "ticker": "MSCI",
      "company": "MSCI Inc.",
      "filedAt": "2026-02-06",
      "document": "msci-20251231.htm",
      "location": "New York, NY",
      "periodEnding": "2025-12-31",
      "accessionNumber": "0001408198-26-000011"
    },
    {
      "cik": "0001408198",
      "sic": "7389",
      "url": "https://www.sec.gov/Archives/edgar/data/1408198/000140819823000011/msci-20221231.htm",
      "form": "10-K",
      "ticker": "MSCI",
      "company": "MSCI Inc.",
      "filedAt": "2023-02-10",
      "document": "msci-20221231.htm",
      "location": "New York, NY",
      "periodEnding": "2022-12-31",
      "accessionNumber": "0001408198-23-000011"
    },
    {
      "cik": "0001408198",
      "sic": "7389",
      "url": "https://www.sec.gov/Archives/edgar/data/1408198/000140819824000030/msci-20231231.htm",
      "form": "10-K",
      "ticker": "MSCI",
      "company": "MSCI Inc.",
      "filedAt": "2024-02-09",
      "document": "msci-20231231.htm",
      "location": "New York, NY",
      "periodEnding": "2023-12-31",
      "accessionNumber": "0001408198-24-000030"
    },
    {
      "cik": "0001408198",
      "sic": "7389",
      "url": "https://www.sec.gov/Archives/edgar/data/1408198/000140819825000053/msci-20241231.htm",
      "form": "10-K",
      "ticker": "MSCI",
      "company": "MSCI Inc.",
      "filedAt": "2025-02-07",
      "document": "msci-20241231.htm",
      "location": "New York, NY",
      "periodEnding": "2024-12-31",
      "accessionNumber": "0001408198-25-000053"
    },
    {
      "cik": "0001408198",
      "sic": "7389",
      "url": "https://www.sec.gov/Archives/edgar/data/1408198/000156459022004803/msci-10k_20211231.htm",
      "form": "10-K",
      "ticker": "MSCI",
      "company": "MSCI Inc.",
      "filedAt": "2022-02-11",
      "document": "msci-10k_20211231.htm",
      "location": "New York, NY",
      "periodEnding": "2021-12-31",
      "accessionNumber": "0001564590-22-004803"
    },
    {
      "cik": "0000815097",
      "sic": "4400",
      "url": "https://www.sec.gov/Archives/edgar/data/815097/000081509724000011/ccl-20231130.htm",
      "form": "10-K",
      "ticker": "CCL",
      "company": "CARNIVAL CORP",
      "filedAt": "2024-01-26",
      "document": "ccl-20231130.htm",
      "location": "Miami, FL",
      "periodEnding": "2023-11-30",
      "accessionNumber": "0000815097-24-000011"
    },
    {
      "cik": "0000067347",
      "sic": "3714",
      "url": "https://www.sec.gov/Archives/edgar/data/67347/000110465926066795/mod-20260331x10k.htm",
      "form": "10-K",
      "ticker": "MOD",
      "company": "MODINE MANUFACTURING CO",
      "filedAt": "2026-05-27",
      "document": "mod-20260331x10k.htm",
      "location": "Racine, WI",
      "periodEnding": "2026-03-31",
      "accessionNumber": "0001104659-26-066795"
    }
  ],
  "query": "climate risk",
  "total": 10000,
  "company": null,
  "hasMore": true,
  "nextPage": 2,
  "provider": "sec-edgar",
  "totalIsLowerBound": true
}

Code examples

Search filings
zpi-sdkrecommended
// npm i zpi-sdk
import { ZpiClient } from "zpi-sdk";

const client = new ZpiClient({ apiKey: "zpi_xxxxxxxxxxxxxxxxxxxxxxxx" });

const data = await client.run("finance:sec-edgar", "search", {
  "q": "\"supply chain risk\"",
  "company": "apple",
  "forms": "10-K",
  "from": "2025-01-01",
  "to": "2025-12-31",
  "page": 1
});
console.log(data);
Full SDK reference →
request.sh
curl -X GET "https://api.zpi.web.id/v1/finance:sec-edgar/search?q=%22supply+chain+risk%22&company=apple&forms=10-K&from=2025-01-01&to=2025-12-31&page=1" \
  -H "x-api-key: zpi_xxxxxxxxxxxxxxxxxxxxxxxx"

Full reference

4 endpoints · plain text
GETSearch filings/v1/finance:sec-edgar/searchFull-text search across every filing since 2001.

Parameters

qstringoptional
Phrase to search. Quote it for an exact match
companystringoptional
Restrict to an issuer by name or ticker
formsstringoptional
Comma-separated form types, e.g. 10-K,8-K
fromstringoptional
Earliest filing date, YYYY-MM-DD
tostringoptional
Latest filing date, YYYY-MM-DD
pagenumberoptional
Page number, 100 results per page. Default 1, max 100

Request

curl -X GET "https://api.zpi.web.id/v1/finance:sec-edgar/search?q=%22supply+chain+risk%22&company=apple&forms=10-K&from=2025-01-01&to=2025-12-31&page=1" \
  -H "x-api-key: zpi_xxxxxxxxxxxxxxxxxxxxxxxx"

Example response

{
  "page": 1,
  "count": 100,
  "items": [
    {
      "cik": "0000815097",
      "sic": "4400",
      "url": "https://www.sec.gov/Archives/edgar/data/815097/000081509723000012/ccl-20221130.htm",
      "form": "10-K",
      "ticker": "CCL",
      "company": "CARNIVAL CORP",
      "filedAt": "2023-01-27",
      "document": "ccl-20221130.htm",
      "location": "Miami, FL",
      "periodEnding": "2022-11-30",
      "accessionNumber": "0000815097-23-000012"
    },
    {
      "cik": "0001408198",
      "sic": "7389",
      "url": "https://www.sec.gov/Archives/edgar/data/1408198/000140819826000011/msci-20251231.htm",
      "form": "10-K",
      "ticker": "MSCI",
      "company": "MSCI Inc.",
      "filedAt": "2026-02-06",
      "document": "msci-20251231.htm",
      "location": "New York, NY",
      "periodEnding": "2025-12-31",
      "accessionNumber": "0001408198-26-000011"
    },
    {
      "cik": "0001408198",
      "sic": "7389",
      "url": "https://www.sec.gov/Archives/edgar/data/1408198/000140819823000011/msci-20221231.htm",
      "form": "10-K",
      "ticker": "MSCI",
      "company": "MSCI Inc.",
      "filedAt": "2023-02-10",
      "document": "msci-20221231.htm",
      "location": "New York, NY",
      "periodEnding": "2022-12-31",
      "accessionNumber": "0001408198-23-000011"
    },
    {
      "cik": "0001408198",
      "sic": "7389",
      "url": "https://www.sec.gov/Archives/edgar/data/1408198/000140819824000030/msci-20231231.htm",
      "form": "10-K",
      "ticker": "MSCI",
      "company": "MSCI Inc.",
      "filedAt": "2024-02-09",
      "document": "msci-20231231.htm",
      "location": "New York, NY",
      "periodEnding": "2023-12-31",
      "accessionNumber": "0001408198-24-000030"
    },
    {
      "cik": "0001408198",
      "sic": "7389",
      "url": "https://www.sec.gov/Archives/edgar/data/1408198/000140819825000053/msci-20241231.htm",
      "form": "10-K",
      "ticker": "MSCI",
      "company": "MSCI Inc.",
      "filedAt": "2025-02-07",
      "document": "msci-20241231.htm",
      "location": "New York, NY",
      "periodEnding": "2024-12-31",
      "accessionNumber": "0001408198-25-000053"
    },
    {
      "cik": "0001408198",
      "sic": "7389",
      "url": "https://www.sec.gov/Archives/edgar/data/1408198/000156459022004803/msci-10k_20211231.htm",
      "form": "10-K",
      "ticker": "MSCI",
      "company": "MSCI Inc.",
      "filedAt": "2022-02-11",
      "document": "msci-10k_20211231.htm",
      "location": "New York, NY",
      "periodEnding": "2021-12-31",
      "accessionNumber": "0001564590-22-004803"
    },
    {
      "cik": "0000815097",
      "sic": "4400",
      "url": "https://www.sec.gov/Archives/edgar/data/815097/000081509724000011/ccl-20231130.htm",
      "form": "10-K",
      "ticker": "CCL",
      "company": "CARNIVAL CORP",
      "filedAt": "2024-01-26",
      "document": "ccl-20231130.htm",
      "location": "Miami, FL",
      "periodEnding": "2023-11-30",
      "accessionNumber": "0000815097-24-000011"
    },
    {
      "cik": "0000067347",
      "sic": "3714",
      "url": "https://www.sec.gov/Archives/edgar/data/67347/000110465926066795/mod-20260331x10k.htm",
      "form": "10-K",
      "ticker": "MOD",
      "company": "MODINE MANUFACTURING CO",
      "filedAt": "2026-05-27",
      "document": "mod-20260331x10k.htm",
      "location": "Racine, WI",
      "periodEnding": "2026-03-31",
      "accessionNumber": "0001104659-26-066795"
    }
  ],
  "query": "climate risk",
  "total": 10000,
  "company": null,
  "hasMore": true,
  "nextPage": 2,
  "provider": "sec-edgar",
  "totalIsLowerBound": true
}
GETCompany/v1/finance:sec-edgar/companyResolve a name or ticker to an issuer profile.

Parameters

companystringoptional
Company name or ticker to resolve
cikstringoptional
Central Index Key, if already known

Request

curl -X GET "https://api.zpi.web.id/v1/finance:sec-edgar/company?company=apple&cik=320193" \
  -H "x-api-key: zpi_xxxxxxxxxxxxxxxxxxxxxxxx"

Example response

{
  "cik": "0000320193",
  "ein": "942404110",
  "sic": "3571",
  "city": "CUPERTINO",
  "name": "Apple Inc.",
  "phone": "(408) 996-1010",
  "state": "CA",
  "tickers": [
    "AAPL"
  ],
  "category": "Large accelerated filer",
  "industry": "Electronic Computers",
  "provider": "sec-edgar",
  "exchanges": [
    "Nasdaq"
  ],
  "entityType": "operating",
  "filingCount": 1000,
  "formerNames": [
    {
      "to": "2019-08-05",
      "from": "2007-01-10",
      "name": "APPLE INC"
    },
    {
      "to": "2007-01-04",
      "from": "1994-01-26",
      "name": "APPLE COMPUTER INC"
    },
    {
      "to": "1997-07-28",
      "from": "1997-07-28",
      "name": "APPLE COMPUTER INC/ FA"
    }
  ],
  "alternatives": [
    {
      "cik": "0001418121",
      "name": "Apple Hospitality REIT, Inc.",
      "ticker": "APLE"
    },
    {
      "cik": "0000320193",
      "name": "Apple Inc.",
      "ticker": "AAPL"
    },
    {
      "cik": "0001498864",
      "name": "Apple REIT Ten, Inc."
    },
    {
      "cik": "0000320193",
      "name": "APPLE COMPUTER INC",
      "ticker": "AAPL"
    },
    {
      "cik": "0001418121",
      "name": "Apple REIT Nine, Inc.",
      "ticker": "APLE"
    }
  ],
  "fiscalYearEnd": "0926",
  "stateOfIncorporation": "CA"
}
GETFilings/v1/finance:sec-edgar/filingsAn issuer's recent filings, filterable by form type.

Parameters

companystringoptional
Company name or ticker
cikstringoptional
Central Index Key, if already known
formstringoptional
Restrict to one form type, e.g. 10-K, 8-K, 4
pagenumberoptional
Page number. Default 1
countnumberoptional
Rows per page. Default 25, max 100

Request

curl -X GET "https://api.zpi.web.id/v1/finance:sec-edgar/filings?company=apple&cik=320193&form=10-K&page=1&count=25" \
  -H "x-api-key: zpi_xxxxxxxxxxxxxxxxxxxxxxxx"

Example response

{
  "cik": "0000320193",
  "form": "10-K",
  "page": 1,
  "count": 5,
  "items": [
    {
      "url": "https://www.sec.gov/Archives/edgar/data/320193/000032019325000079/aapl-20250927.htm",
      "form": "10-K",
      "size": 9392337,
      "isXbrl": true,
      "filedAt": "2025-10-31",
      "acceptedAt": "2025-10-31T10:01:26.000Z",
      "fileNumber": "001-36743",
      "reportDate": "2025-09-27",
      "description": "10-K",
      "accessionNumber": "0000320193-25-000079"
    },
    {
      "url": "https://www.sec.gov/Archives/edgar/data/320193/000032019324000123/aapl-20240928.htm",
      "form": "10-K",
      "size": 9759333,
      "isXbrl": true,
      "filedAt": "2024-11-01",
      "acceptedAt": "2024-11-01T10:01:36.000Z",
      "fileNumber": "001-36743",
      "reportDate": "2024-09-28",
      "description": "10-K",
      "accessionNumber": "0000320193-24-000123"
    },
    {
      "url": "https://www.sec.gov/Archives/edgar/data/320193/000032019323000106/aapl-20230930.htm",
      "form": "10-K",
      "size": 9569569,
      "isXbrl": true,
      "filedAt": "2023-11-03",
      "acceptedAt": "2023-11-02T22:08:27.000Z",
      "fileNumber": "001-36743",
      "reportDate": "2023-09-30",
      "description": "10-K",
      "accessionNumber": "0000320193-23-000106"
    },
    {
      "url": "https://www.sec.gov/Archives/edgar/data/320193/000032019322000108/aapl-20220924.htm",
      "form": "10-K",
      "size": 10332356,
      "isXbrl": true,
      "filedAt": "2022-10-28",
      "acceptedAt": "2022-10-27T22:01:14.000Z",
      "fileNumber": "001-36743",
      "reportDate": "2022-09-24",
      "description": "10-K",
      "accessionNumber": "0000320193-22-000108"
    },
    {
      "url": "https://www.sec.gov/Archives/edgar/data/320193/000032019321000105/aapl-20210925.htm",
      "form": "10-K",
      "size": 10502096,
      "isXbrl": true,
      "filedAt": "2021-10-29",
      "acceptedAt": "2021-10-28T22:04:28.000Z",
      "fileNumber": "001-36743",
      "reportDate": "2021-09-25",
      "description": "10-K",
      "accessionNumber": "0000320193-21-000105"
    }
  ],
  "total": 11,
  "company": "Apple Inc.",
  "hasMore": true,
  "tickers": [
    "AAPL"
  ],
  "nextPage": 2,
  "provider": "sec-edgar"
}
GETConcept/v1/finance:sec-edgar/conceptOne reported figure across every period an issuer filed.

Parameters

companystringoptional
Company name or ticker
cikstringoptional
Central Index Key, if already known
tagstringoptional
XBRL tag, e.g. Revenues, Assets, NetIncomeLoss
taxonomyenumoptional
Reporting taxonomy. Default us-gaap Values: us-gaap, ifrs-full, dei, srt.
periodenumoptional
Restrict by reporting length. Default all Values: all, annual, quarterly.

Request

curl -X GET "https://api.zpi.web.id/v1/finance:sec-edgar/concept?company=apple&cik=320193&tag=Revenues&taxonomy=us-gaap&period=all" \
  -H "x-api-key: zpi_xxxxxxxxxxxxxxxxxxxxxxxx"

Example response

{
  "cik": "0000320193",
  "tag": "Revenues",
  "unit": "USD",
  "count": 3,
  "items": [
    {
      "end": "2018-09-29",
      "form": "10-K",
      "frame": "CY2018",
      "start": "2017-10-01",
      "value": 265595000000,
      "filedAt": "2018-11-05",
      "fiscalYear": 2018,
      "periodType": "duration",
      "fiscalPeriod": "FY",
      "accessionNumber": "0000320193-18-000145"
    },
    {
      "end": "2017-09-30",
      "form": "10-K",
      "frame": "CY2017",
      "start": "2016-09-25",
      "value": 229234000000,
      "filedAt": "2018-11-05",
      "fiscalYear": 2018,
      "periodType": "duration",
      "fiscalPeriod": "FY",
      "accessionNumber": "0000320193-18-000145"
    },
    {
      "end": "2016-09-24",
      "form": "10-K",
      "frame": "CY2016",
      "start": "2015-09-27",
      "value": 215639000000,
      "filedAt": "2018-11-05",
      "fiscalYear": 2018,
      "periodType": "duration",
      "fiscalPeriod": "FY",
      "accessionNumber": "0000320193-18-000145"
    }
  ],
  "label": "Revenues",
  "period": "annual",
  "company": "Apple Inc.",
  "provider": "sec-edgar",
  "taxonomy": "us-gaap"
}

Related APIs

More in finance

Pluang

finance/pluang

Data pasar Pluang lintas aset: order book, running trade, tradebook dan ringkasan broker per saham IDX, plus saham Amerika, emas, kripto, sinyal analis dan berita.

1.2M calls·1d cache

IDX (Bursa Efek Indonesia)

finance/idx

Data Bursa Efek Indonesia: ringkasan saham & indeks, top movers, broker, emiten, laporan keuangan, berita, dan passthrough ke ratusan endpoint /primary/.

502.2K calls·1d cache

TradingView

finance/tradingview

Screener, charts, technical indicators, fundamentals, news and the macro calendar across 16 markets — Indonesian equities, US equities, crypto, forex and futures.

215.2K calls·1d cache

Stockbit

finance/stockbit

Data saham IDX dari Stockbit: harga, chart intraday, profil emiten, diskusi komunitas, dan kamus investasi.

103.7K calls·1d cache

Binance Futures

finance/binance-futures

USD-M perpetual futures market data: funding, premium index, open interest, long/short ratios, candles and depth.

38K calls·10m cache

Bybit

finance/bybit

Bybit v5 market data: candles, 5-minute open interest and account ratios with cursor pagination, funding history and instrument specs.

22.3K calls·10m cache
Browse APIsPricingDocsMCP serverGet an API key
zapi.One key, one response shape.
TermsPrivacyCookiesAUPRefunds© 2026