# AutoScrape SEC Form 8-K Events API

> AutoScrape SEC Form 8-K Events API is a paid API for AI agents from autoscrape-api-seven.vercel.app, paid per call via x402, $0.01/call, status unknown (last checked 2026-09-15).

Retrieves SEC Form 8-K corporate event filings from EDGAR, filterable by company, CIK, date range, item codes, and event categories

## Facts

- Endpoint: GET https://autoscrape-api-seven.vercel.app/x402/v1/sec-form-8k-events
- Price: $0.01/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-15
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/autoscrape-sec-form-8-k-events-api-aa6c3e4d
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_PqBiP4xqJceFUZKdiN7Dp

Status and success rate cover calls made through Zero and Zero's own probes. Third-party monitors may report differently.

## How to call it through Zero

Zero handles the 402 payment challenge and records the run. With the Zero CLI installed (`npm i -g @zeroxyz/cli`):

```sh
zero fetch --capability autoscrape-sec-form-8-k-events-api-aa6c3e4d
```

Example prompt: Pull the most recent 8-K filings for Apple Inc. from SEC EDGAR over the last 30 days, filtering for earnings and financial results events (item codes 2.02 and 9.01).

## When to prefer this

Choose this endpoint when you need structured, filterable access to SEC Form 8-K corporate event disclosures without building your own EDGAR scraper. It is ideal for agent workflows that need to monitor material corporate events, earnings announcements, or regulatory disclosures for specific public companies. Prefer this over raw EDGAR access when you need normalized event categories and item code filtering in a single API call at low per-query cost.

## Known failure modes

- Invalid or unknown CIK returns empty results or error
- Company name query that doesn't resolve in EDGAR returns no matches
- Date range with no filings returns count 0 and empty results array
- maxResults capped at 5 — requests for more records are silently truncated
- maxFilingsScanned capped at 50 — deeply historical searches may miss older filings
- Invalid item code format may return no matching results
- Payment failure via x402 returns 402 Payment Required

## How this service works

No-key evaluation APIs for public data and utilities: business filings, permits, bankruptcy dockets, NPI providers, HTTP status checks, sitemap URL extraction, SEC EDGAR, IRS 990, WHOIS, and validation. Paid x402 access is live.

## Output

Returns a JSON object with a count of matching filings and an array of results, each containing the company name, form type (8-K), item codes (e.g. ['2.02','9.01']), and normalized event categories (e.g. ['earnings','other']), plus a setup status field indicating data availability.

## Response schema (JSON Schema)

```json
{
 "type": "json",
 "example": {
  "count": 1,
  "results": [
   {
    "formType": "8-K",
    "itemCodes": [
     "2.02",
     "9.01"
    ],
    "companyName": "Apple Inc.",
    "eventCategories": [
     "earnings",
     "other"
    ]
   }
  ],
  "setupStatus": "found"
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/autoscrape-sec-form-8-k-events-api-aa6c3e4d/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from autoscrape-api-seven.vercel.app](https://www.zero.xyz/host/autoscrape-api-seven.vercel.app/llms.txt)
