Get a filer's 8-K history with item codes — filter by item (e
Get a filer's 8-K history with item codes — filter by item (e.g. 5.02 officer changes, 2.02 earnings) and date; includes coverage note. Use instead of paginating submissions and mapping item codes yourself.
20000 (raw units)
price
1
calls / 30d
1
unique payers
2026-09-02
updated
Provider
answerpool.io · discovered, not yet claimed by its owner
Payment (x402 accepts[])
[
{
"scheme": "exact",
"network": "eip155:8453",
"payTo": "0xb3ba3Ca99F9742b32fC527CF62688C83b39AED8c",
"asset": "0x833589fCD6eDb6E08f4c7C32D4f71b54bdA02913",
"amount": "20000",
"maxTimeoutSeconds": 300
}
]Output schema
{
"bazaar": {
"info": {
"input": {
"method": "GET",
"queryParams": {
"items": "5.02",
"ticker": "NVDA"
},
"type": "http"
},
"output": {
"example": {
"as_of": "2026-08-31T14:00:00Z",
"cik": "0000320193",
"count": 1,
"coverage_note": "SEC 'recent' window for this filer reaches back to 2026-08-29",
"filings": [
{
"accession": "0001437749-26-028920",
"description": "FORM 8-K",
"filed": "2026-08-29",
"form": "8-K",
"items": [
"1.03"
],
"report_date": "2026-08-28",
"url": "https://www.sec.gov/Archives/edgar/data/320193/000143774926028920-index.htm"
}
]
},
"type": "json"
}
},
"schema": {
"$schema": "https://json-schema.org/draft/2020-12/schema",
"properties": {
"input": {
"additionalProperties": false,
"properties": {
"method": {
"enum": [
"GET",
"HEAD",
"DELETE"
],
"type": "string"
},
"queryParams": {
"additionalProperties": false,
"properties": {
"cik": {
"anyOf": [
{
"maxLength": 10,
"pattern": "^\\d{1,10}$",
"type": "string"
},
{
"type": "null"
}
],
"default": null,
"title": "Cik"
},
"items": {
"anyOf": [
{
"maxLength": 40,
"type": "string"
},
{
"type": "null"
}
],
"default": null,
"description": "Comma-separated item codes, e.g. 5.02,2.02",
"title": "Items"
},
"limit": {
"default": 100,
"maximum": 500,
"minimum": 1,
"title": "Limit",
"type": "integer"
},
"since": {
"anyOf": [
{
"maxLength": 10,
"pattern": "^\\d{4}-\\d{2}-\\d{2}$",
"type": "string"
},
{
"type": "null"
}
],
"default": null,
"title": "Since"
},
"ticker": {
"anyOf": [
{
"maxLength": 12,
"type": "string"
},
{
"type": "null"
}
],
"default": null,
"title": "Ticker"
}
},
"title": "EightKHistoryIn",
"type": "object"
},
"type": {
"const": "http",
"type": "string"
}
},
"required": [
"type",
"method"
],
"type": "object"
},
"output": {
"properties": {
"example": {
"properties": {
"as_of": {
"title": "As Of",
"type": "string"
},
"cik": {
"title": "Cik",
"type": "string"
},
"count": {
"title": "Count",
"type": "integer"
},
"coverage_note": {
"anyOf": [
{
"type": "string"
},
{
"type": "null"
}
],
"default": null,
"title": "Coverage Note"
},
"disclaimer": {
"default": "Derived from public SEC EDGAR filings; not investment advice.",
"title": "Disclaimer",
"type": "string"
},
"filings": {
"items": {
"properties": {
"accession": {
"title": "Accession",
"type": "string"
},
"description": {
"anyOf": [
{
"type": "string"
},
{
"type": "null"
}
],
"default": null,
"title": "Description"
},
"filed": {
"title": "Filed",
"type": "string"
},
"form": {
"title": "Form",
"type": "string"
},
"items": {
"default": [],
"items": {
"type": "string"
},
"title": "Items",
"type": "array"
},
"report_date": {
"anyOf": [
{
"type": "string"
},
{
"type": "null"
}
],
"default": null,
"title": "Report Date"
},
"url": {
"title": "Url",
"type": "string"
}
},
"required": [
"accession",
"form",
"filed",
"url"
],
"title": "FilingRow",
"type": "object"
},
"title": "Filings",
"type": "array"
},
"next_cursor": {
"anyOf": [
{
"type": "string"
},
{
"type": "null"
}
],
"default": null,
"title": "Next Cursor"
}
},
"required": [
"as_of",
"cik",
"count",
"filings"
],
"title": "FilingsOutput",
"type": "object"
},
"type": {
"type": "string"
}
},
"required": [
"type"
],
"type": "object"
}
},
"required": [
"input"
],
"type": "object"
}
}
}Use it
curl
curl "https://answerpool.io/v1/sec/8k/history" # -> 402 Payment Required, accepts[] lists how to pay # retry with a PAYMENT-SIGNATURE (or PAYMENT header) once paid
JavaScript
const res = await fetch("https://answerpool.io/v1/sec/8k/history");
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://answerpool.io/v1/sec/8k/history")
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/7763.json, and this resource appears in /discovery/resources and /discovery/search.