Return the recent EDGAR filing history of a US company identified by stock ticker (AAPL) o
Return the recent EDGAR filing history of a US company identified by stock ticker (AAPL) or CIK, optionally filtered by form type and filing date and paged. It is the company's own EDGAR index, so it also holds filings third parties made about it (SCHEDULE 13G, Forms 3/4/5, UPLOAD). Each entry carries the accession number, form, dates, 8-K items, XBRL flags, size and sec.gov links. Use when: List every 8-K on this ticker's EDGAR index this year, with links to the documents.
5000 (raw units)
price
1
calls / 30d
1
unique payers
2026-08-27
updated
Provider
api.eckari.com · discovered, not yet claimed by its owner
Payment (x402 accepts[])
[
{
"scheme": "exact",
"network": "eip155:8453",
"payTo": "0x9d6b6fdB04040a55d58B24ff4C90C08cf6083C8f",
"asset": "0x833589fCD6eDb6E08f4c7C32D4f71b54bdA02913",
"amount": "5000",
"maxTimeoutSeconds": 60
}
]Output schema
{
"bazaar": {
"info": {
"input": {
"method": "GET",
"pathParams": {
"id": "AAPL"
},
"queryParams": {
"form": "10-K",
"limit": 2,
"offset": 0
},
"type": "http"
},
"output": {
"example": {
"data": {
"cik": "0000320193",
"has_more_history": true,
"items": [
{
"accession_number": "0000320193-25-000079",
"act": "34",
"document_url": "https://www.sec.gov/Archives/edgar/data/320193/000032019325000079/aapl-20250927.htm",
"file_number": "001-36743",
"filing_date": "2025-10-31",
"form": "10-K",
"index_url": "https://www.sec.gov/Archives/edgar/data/320193/000032019325000079/0000320193-25-000079-index.htm",
"is_inline_xbrl": true,
"is_xbrl": true,
"item_codes": [],
"primary_doc_description": "10-K",
"primary_document": "aapl-20250927.htm",
"report_date": "2025-09-27",
"size_bytes": 9392337
},
{
"accession_number": "0000320193-24-000123",
"act": "34",
"document_url": "https://www.sec.gov/Archives/edgar/data/320193/000032019324000123/aapl-20240928.htm",
"file_number": "001-36743",
"filing_date": "2024-11-01",
"form": "10-K",
"index_url": "https://www.sec.gov/Archives/edgar/data/320193/000032019324000123/0000320193-24-000123-index.htm",
"is_inline_xbrl": true,
"is_xbrl": true,
"item_codes": [],
"primary_doc_description": "10-K",
"primary_document": "aapl-20240928.htm",
"report_date": "2024-09-28",
"size_bytes": 9759333
}
],
"name": "Apple Inc.",
"page": {
"has_more": true,
"limit": 2,
"next_offset": 2,
"offset": 0,
"returned": 2,
"total": 11
},
"query": {
"form": "10-K",
"id": "AAPL",
"matched_by": "ticker",
"since": null
}
},
"meta": {
"capability": "company.us.filings",
"freshness": "near_live",
"source": "sec_edgar",
"version": "3.0.0"
}
},
"type": "json"
}
},
"routeTemplate": "/v1/companies/us/:id/filings",
"schema": {
"$schema": "https://json-schema.org/draft/2020-12/schema",
"properties": {
"input": {
"additionalProperties": false,
"properties": {
"method": {
"enum": [
"GET",
"HEAD",
"DELETE"
],
"type": "string"
},
"pathParams": {
"additionalProperties": false,
"properties": {
"id": {
"description": "SEC CIK or exchange ticker symbol. All digits is read as a CIK (leading zeros and an EDGAR CIK prefix are both accepted: 320193, 0000320193, CIK0000320193); anything else is read as a ticker (1-10 characters starting with a letter) and matched exactly, case-insensitively, against the SEC listed-security index — AAPL, aapl and BRK-B all work. Company names are not accepted: resolve one with company.us.resolve. A ticker with no SEC index entry returns NOT_FOUND, which is not a billable result.",
"maxLength": 13,
"minLength": 1,
"pattern": "^(?:(?:[Cc][Ii][Kk])?[0-9]{1,10}|[A-Za-z][A-Za-z0-9.-]{0,9})$",
"type": "string"
}
},
"required": [
"id"
],
"type": "object"
},
"queryParams": {
"additionalProperties": false,
"properties": {
"form": {
"description": "Comma-separated EDGAR form types to keep, e.g. \"10-K,10-Q,8-K\". Matching is exact and case-insensitive; omit to return every form.",
"maxLength": 200,
"pattern": "^[A-Za-z0-9 ,/.-]+$",
"type": "string"
},
"limit": {
"default": 5,
"description": "Maximum number of filings to return from the filtered set. Defaults to 5 so a first call stays small; raise it explicitly when you need more.",
"maximum": 100,
"minimum": 1,
"type": "integer"
},
"offset": {
"default": 0,
"description": "Zero-based offset into the filtered set, for paging. Pass page.next_offset from the previous response.",
"minimum": 0,
"type": "integer"
},
"since": {
"description": "Keep only filings with a filing_date on or after this ISO date (YYYY-MM-DD).",
"format": "date",
"pattern": "^[0-9]{4}-[0-9]{2}-[0-9]{2}$",
"type": "string"
}
},
"type": "object"
},
"type": {
"const": "http",
"type": "string"
}
},
"required": [
"type",
"method"
],
"type": "object"
},
"output": {
"properties": {
"example": {
"type": "object"
},
"type": {
"type": "string"
}
},
"required": [
"type"
],
"type": "object"
}
},
"required": [
"input"
],
"type": "object"
}
},
"payment-identifier": {
"info": {
"required": false
},
"schema": {
"$schema": "https://json-schema.org/draft/2020-12/schema",
"properties": {
"id": {
"maxLength": 128,
"minLength": 16,
"pattern": "^[a-zA-Z0-9_-]+$",
"type": "string"
},
"required": {
"type": "boolean"
}
},
"required": [
"required"
],
"type": "object"
}
}
}Use it
curl
curl "https://api.eckari.com/v1/companies/us/:id/filings" # -> 402 Payment Required, accepts[] lists how to pay # retry with a PAYMENT-SIGNATURE (or PAYMENT header) once paid
JavaScript
const res = await fetch("https://api.eckari.com/v1/companies/us/:id/filings");
if (res.status === 402) {
const { accepts } = await res.json();
// pay one of accepts[] via an x402 client, then retry with the payment header
}Python
import httpx
res = httpx.get("https://api.eckari.com/v1/companies/us/:id/filings")
if res.status_code == 402:
accepts = res.json()["accepts"]
# pay one of accepts[] via an x402 client, then retry with the payment headerMachine-readable
Everything on this page is also available as clean JSON at /resources/4326.json, and this resource appears in /discovery/resources and /discovery/search.