# SEC Filing Deltas by Ticker

> SEC Filing Deltas by Ticker is a paid API for AI agents from money-agent-b4o0.onrender.com, paid per call via x402, $0.03/call, status unknown (last checked 2026-09-15).

Returns normalized SEC filing events (8-K, 4, 10-Q, 10-K) filed since a specified timestamp for one or more stock tickers.

## Facts

- Endpoint: GET https://money-agent-b4o0.onrender.com/sec/deltas
- Price: $0.03/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-15
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/sec-filing-deltas-by-ticker-ca6e34d5
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_R8T3OjzlF7d-5abZeT4lM

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 sec-filing-deltas-by-ticker-ca6e34d5
```

Example prompt: Show me any new SEC filings for NVDA and AAPL since August 20th, 2026 — I want 8-K material event filings only, up to 20 results.

## When to prefer this

Choose this endpoint when you need incremental, delta-based SEC filing detection for specific tickers rather than a full historical dump. It is ideal for polling loops, event-driven workflows, and trading bots that need to detect new filings since the last check. Prefer this over full-history endpoints when bandwidth and latency matter and you only want net-new events. Works best for actively monitoring a known watchlist of supported tickers.

## Known failure modes

- Missing required 'since' timestamp returns a 400 validation error
- Invalid ticker symbols that are unsupported return empty events array
- Malformed date-time format for 'since' causes schema validation failure
- Limit values outside 1-100 range may be rejected or clamped
- No filings found for the given window returns ok:true, changed:false, count:0
- Service cold-start on Render may cause elevated latency on first request

## How this service works

Machine-payable financial data and autonomous-agent services over x402.

## Output

A JSON object containing an 'ok' boolean, a 'changed' flag indicating whether new events exist, a count of matching events, the echoed query parameters, and an array of filing event objects each with id, CIK, ticker, form type, accession number, filed date, accepted timestamp, event type, and a direct SEC source URL. Also includes a generatedAt timestamp and freshnessSeconds indicating data age.

## 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": [
      "since"
     ],
     "properties": {
      "form": {
       "enum": [
        "8-K",
        "4",
        "10-Q",
        "10-K"
       ],
       "type": "string"
      },
      "limit": {
       "type": "string",
       "description": "Maximum events to return, 1-100."
      },
      "since": {
       "type": "string",
       "format": "date-time",
       "description": "Return only SEC events newer than this timestamp."
      },
      "tickers": {
       "type": "string",
       "description": "Comma-separated supported tickers, for example NVDA,AAPL."
      }
     }
    }
   },
   "additionalProperties": false
  },
  "output": {
   "type": "object",
   "required": [
    "type"
   ],
   "properties": {
    "type": {
     "type": "string"
    },
    "example": {
     "type": "object",
     "required": [
      "ok",
      "changed",
      "count",
      "events"
     ],
     "properties": {
      "ok": {
       "type": "boolean"
      },
      "count": {
       "type": "integer"
      },
      "events": {
       "type": "array",
       "items": {
        "type": "object"
       }
      },
      "changed": {
       "type": "boolean"
      },
      "generatedAt": {
       "type": [
        "string",
        "null"
       ]
      },
      "freshnessSeconds": {
       "type": [
        "integer",
        "null"
       ]
      }
     }
    }
   }
  }
 }
}
```

## Response schema (JSON Schema)

```json
{
 "type": "json",
 "example": {
  "ok": true,
  "count": 1,
  "query": {
   "form": null,
   "limit": 10,
   "since": "2026-08-25T00:00:00.000Z",
   "tickers": [
    "NVDA",
    "AAPL"
   ]
  },
  "events": [
   {
    "id": "NVDA:0001045810-26-000069",
    "cik": "0001045810",
    "form": "8-K",
    "ticker": "NVDA",
    "filedAt": "2026-08-17",
    "accession": "0001045810-26-000069",
    "eventType": "material_event_filing",
    "sourceUrl": "https://www.sec.gov/Archives/edgar/data/1045810/000104581026000069/nvda-20260817.htm",
    "acceptedAt": "2026-08-17T12:41:33.000Z"
   }
  ],
  "changed": true,
  "generatedAt": "2026-08-25T14:45:48.280Z",
  "freshnessSeconds": 120
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/sec-filing-deltas-by-ticker-ca6e34d5/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from money-agent-b4o0.onrender.com](https://www.zero.xyz/host/money-agent-b4o0.onrender.com/llms.txt)
