# x402-factory EDGAR 8-K Events Delta

> x402-factory EDGAR 8-K Events Delta is a paid API for AI agents from x402-factory.com, paid per call via x402, $0.01/call, status unknown (last checked 2026-09-14).

Returns only the 8-K SEC filings added or changed since a given cursor, enabling efficient incremental polling without reprocessing the full dataset

## Facts

- Endpoint: GET https://x402-factory.com/v1/edgar/events/delta
- Price: $0.01/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-14
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/x402-factory-edgar-8-k-events-delta-2a7c765f
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_8tFLdLxRWjBK42kn2m_5M

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 x402-factory-edgar-8-k-events-delta-2a7c765f
```

Example prompt: Fetch any 8-K SEC filings that were added or changed since my last cursor — use cursor 'eyJsYXN0X2lkIjoxMjM0NX0' — and give me the new filings, changed count, and the next cursor to use next time.

## When to prefer this

Choose this endpoint when you need incremental, cost-efficient polling of SEC 8-K filings — paying only $0.01 per delta call rather than fetching the full dataset. Ideal for agents that continuously monitor corporate disclosures, compliance pipelines that need to stay synchronized, or alerting systems that trigger on new material events. Use the free sibling /v1/edgar/events/changes to check changed_count before committing to a paid delta call.

## Known failure modes

- Invalid or expired cursor returns an error or resets to current position
- Missing or malformed 'since' parameter causes bootstrap behavior (returns cursor at now)
- Rate limiting or payment failure (402) if USDC payment not included
- Empty rows array when no filings have changed since the cursor
- Network timeout on slow EDGAR upstream response

## How this service works

Only the 8-K filings changed since your cursor (delta of /v1/edgar/events) — Keyset delta of /v1/edgar/events: pass since=<next_cursor from your last call> and get only the 8-K filings added or changed after it, plus changed_count and a new next_cursor. Omit since once to bootstrap. Cursors are stable across restarts. Poll the free sibling /v1/edgar/events/changes for counts and pay only when…

## Output

Returns a JSON object with a 'rows' array of 8-K filing objects (each containing accession number, CIK, ticker, company name, form type, filed_at timestamp, and classified_type), a changed_count integer indicating how many filings changed, an as_of timestamp, and a next_cursor string to use in the subsequent poll.

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "$schema": "https://json-schema.org/draft/2020-12/schema",
 "required": [
  "input"
 ],
 "properties": {
  "input": {
   "type": "object",
   "required": [
    "type",
    "method"
   ],
   "properties": {
    "type": {
     "type": "string",
     "const": "http"
    },
    "method": {
     "enum": [
      "GET"
     ],
     "type": "string"
    },
    "queryParams": {
     "type": "object",
     "required": [],
     "properties": {
      "since": {
       "type": "string",
       "maxLength": 300,
       "minLength": 4,
       "description": "Opaque cursor from a previous next_cursor; omit once to bootstrap a cursor at now"
      }
     }
    }
   },
   "additionalProperties": false
  },
  "output": {
   "type": "object",
   "required": [
    "type"
   ],
   "properties": {
    "type": {
     "type": "string"
    },
    "example": {
     "type": "object",
     "required": [
      "data",
      "meta"
     ],
     "properties": {
      "data": {
       "type": "object",
       "required": [
        "rows",
        "changed_count",
        "next_cursor",
        "as_of"
       ],
       "properties": {
        "rows": {
         "type": "array",
         "items": {
          "type": "object",
          "required": [
           "accession",
           "cik",
           "ticker",
           "company",
           "form",
           "filed_at",
           "classified_type"
          ],
          "properties": {
           "cik": {
            "type": "string"
           },
           "form": {
            "type": "string"
           },
           "ticker": {
            "anyOf": [
             {
              "type": "string"
             },
             {
              "type": "null"
             }
            ]
           },
           "company": {
            "anyOf": [
             {
              "type": "string"
             },
             {
              "type": "null"
             }
            ]
           },
           "filed_at": {
            "type": "string"
           },
           "accession": {
            "type": "string"
           },
           "classified_type": {
            "anyOf": [
             {
              "type": "string"
             },
             {
              "type": "null"
             }
            ]
           }
          },
          "additionalProperties": false
         }
        },
        "as_of": {
         "type": "string"
        },
        "next_cursor": {
         "type": "string"
        
… (truncated)
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/x402-factory-edgar-8-k-events-delta-2a7c765f/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from x402-factory.com](https://www.zero.xyz/host/x402-factory.com/llms.txt)
