{
  "x402Version": 2,
  "id": 7763,
  "slug": "7763",
  "resource": "https://answerpool.io/v1/sec/8k/history",
  "description": "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.",
  "type": "http",
  "accepts": [
    {
      "scheme": "exact",
      "network": "eip155:8453",
      "payTo": "0xb3ba3Ca99F9742b32fC527CF62688C83b39AED8c",
      "asset": "0x833589fCD6eDb6E08f4c7C32D4f71b54bdA02913",
      "amount": "20000",
      "maxTimeoutSeconds": 300
    }
  ],
  "outputSchema": {
    "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"
      }
    }
  },
  "tags": [
    "bazaar"
  ],
  "sourceHost": "answerpool.io",
  "lastUpdated": "2026-09-02T22:29:17.707Z",
  "quality": {
    "calls30d": 1,
    "uniquePayers30d": 1,
    "lastCalledAt": "2026-09-02T22:29:17.476Z"
  },
  "liveness": {},
  "verified": false,
  "featured": false,
  "provider": {
    "host": "answerpool.io",
    "manifest_name": "answerpool.io",
    "source": "cdp-mirror",
    "source_manifest_url": "https://api.cdp.coinbase.com/platform/v2/x402/discovery/resources",
    "submitted_at": "2026-09-18T22:00:31.484Z"
  }
}