Give a stock ticker (AAPL) or CIK and get the most recent EDGAR filing of each requested f
Give a stock ticker (AAPL) or CIK and get the most recent EDGAR filing of each requested form — by default the latest 10-K, 10-Q and 8-K — with filing and report dates and a direct sec.gov link to each primary document. Request other forms (4, SCHEDULE 13G) and you get the newest one filed about the company. Requested forms with no recent filing are named in forms_not_found, never dropped. Use when: What is Apple's latest 8-K, and where is the document?
3000 (raw units)
price
1
calls / 30d
1
unique payers
2026-09-04
updated
Provider
api-staging.eckari.com · discovered, not yet claimed by its owner
Payment (x402 accepts[])
[
{
"scheme": "exact",
"network": "eip155:84532",
"payTo": "0x7c0Ba1d16322Ee426D6508a74b571Dd73A5a35DA",
"asset": "0x036CbD53842c5426634e7929541eC2318f3dCF7e",
"amount": "3000",
"maxTimeoutSeconds": 60
}
]Output schema
{
"bazaar": {
"info": {
"input": {
"method": "GET",
"pathParams": {
"id": "aapl"
},
"queryParams": {
"form": "10-K,10-Q,8-K,20-F"
},
"type": "http"
},
"output": {
"example": {
"data": {
"cik": "0000320193",
"forms_not_found": [
"20-F"
],
"forms_requested": [
"10-K",
"10-Q",
"8-K",
"20-F"
],
"items": [
{
"accession_number": "0000320193-25-000079",
"document_url": "https://www.sec.gov/Archives/edgar/data/320193/000032019325000079/aapl-20250927.htm",
"filing_date": "2025-10-31",
"form": "10-K",
"primary_document": "aapl-20250927.htm",
"report_date": "2025-09-27"
},
{
"accession_number": "0000320193-26-000020",
"document_url": "https://www.sec.gov/Archives/edgar/data/320193/000032019326000020/aapl-20260627.htm",
"filing_date": "2026-07-31",
"form": "10-Q",
"primary_document": "aapl-20260627.htm",
"report_date": "2026-06-27"
},
{
"accession_number": "0000320193-26-000018",
"document_url": "https://www.sec.gov/Archives/edgar/data/320193/000032019326000018/aapl-20260730.htm",
"filing_date": "2026-07-30",
"form": "8-K",
"primary_document": "aapl-20260730.htm",
"report_date": "2026-07-30"
}
],
"name": "Apple Inc.",
"page": {
"has_more": false,
"limit": null,
"next_offset": null,
"offset": 0,
"returned": 3,
"total": 3
},
"query": {
"id": "aapl",
"matched_by": "ticker"
}
},
"meta": {
"capability": "company.us.filings.latest",
"freshness": "near_live",
"source": "sec_edgar",
"version": "3.0.0"
}
},
"type": "json"
}
},
"routeTemplate": "/v1/companies/us/:id/filings/latest",
"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": {
"default": "10-K,10-Q,8-K",
"description": "Comma-separated EDGAR form types to report the latest filing of. Defaults to \"10-K,10-Q,8-K\". Matching is exact and case-insensitive; output order follows the requested order.",
"maxLength": 200,
"pattern": "^[A-Za-z0-9 ,/.-]+$",
"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-staging.eckari.com/v1/companies/us/:id/filings/latest" # -> 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-staging.eckari.com/v1/companies/us/:id/filings/latest");
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-staging.eckari.com/v1/companies/us/:id/filings/latest")
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/5368.json, and this resource appears in /discovery/resources and /discovery/search.