SEC EDGAR Data

Public-company filings and facts straight from the SEC

📈 FinanceUNMONITOREDchecked 1h ago
AUTH NONECORS AGENT HTTPS COMMERCIAL

The SEC's EDGAR data API serves filing histories and company facts for every US public company as JSON, keyed by CIK. The submissions endpoint returns a company's identity, tickers, exchanges and recent filings. It is US-government public data; the SEC requires a descriptive User-Agent and rate-limits fair use.

HOW IT'S SCORED ⓘ
Status badge · for your READMEshipapis health badge: — · unmonitored
Uptime history
—%90 days
—%30 days
P50 · ms
P95 · ms
operationalpartialdownno data
Live response samplecaptured by our last successful check
GET https://data.sec.gov/submissions/CIK0000320193.json

{
  "cik": "0000320193",
  "name": "Apple Inc.",
  "tickers": [
    "AAPL"
  ],
  "exchanges": [
    "Nasdaq"
  ],
  "sicDescription": "Electronic Computers",
  "stateOfIncorporation": "CA",
  "fiscalYearEnd": "0926"
}
Call itcurl · fetch · python
curl "https://data.sec.gov/submissions/CIK0000320193.json"
const res = await fetch("https://data.sec.gov/submissions/CIK0000320193.json");
const data = await res.json();
console.log(data);
import requests

res = requests.get("https://data.sec.gov/submissions/CIK0000320193.json")
print(res.json())
Endpoints · 6On scheduleFULL DOCS ↗
First rollup pending — GET /submissions/CIK0000320193.json has been probed
GET/submissions/CIK0000320193.jsonPROBED

Public-company filings and facts straight from the SEC

GET/submissions

Submissions — documented GET route.

GET/submissions/1

Submissions details by ID (example: 1).

GET/submissions?limit=10

Submissions — documented GET route.

GET/submissions/search?q=test

Search by query parameters.

GET/api/xbrl/companyconcept/CIK

CIK — documented GET route.

Machine-readable spec

We probe a documented GET and expect 2xx JSON — full uptime and health score. Export includes every documented route below.

Response-shape history

Stable. No schema drift observed since monitoring began — the response shape has not changed under our checks.

SEC EDGAR Data: common questions

Is SEC EDGAR Data free to use?

Yes — SEC EDGAR Data is a free finance API. Free tier: Free — public government data. Commercial use is allowed on the free tier.

Does SEC EDGAR Data need an API key?

No — SEC EDGAR Data needs no API key or signup. You can call it straight away; rate limits still apply (Max 10 requests/second; descriptive User-Agent required (SEC fair-access policy)).

Can I call SEC EDGAR Data from the browser?

Yes — SEC EDGAR Data returns CORS headers over HTTPS, so front-end code can fetch it directly with no backend proxy. Use the fetch snippet on this page, or hit "Run live" to try it now.

Is SEC EDGAR Data up right now?

As of our last scheduled check, SEC EDGAR Data is unmonitored. We re-probe it every sweep — the status badge and uptime chart above always show the latest.