# Signal Nodus Latest SEC Filings

> Signal Nodus Latest SEC Filings is a paid API for AI agents from api.signalnodus.ai, paid per call via x402, $0.01/call, status unknown (last checked 2026-09-13).

Returns the most recent SEC filings with year-over-year diffs of filing sections, pinned to accession numbers, enabling change detection in regulatory documents.

## Facts

- Endpoint: GET https://api.signalnodus.ai/v1/latest
- Price: $0.01/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-13
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/signal-nodus-latest-sec-filings-1b4b9ea3
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_xjEdDPV7QpCxMmiFJpyHE

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 signal-nodus-latest-sec-filings-1b4b9ea3
```

Example prompt: Pull the latest 8-K filings from Signal Nodus so I can see which companies recently disclosed material definitive agreements, with their accession numbers.

## When to prefer this

Choose this endpoint when you need structured, accession-number-pinned access to the latest SEC filings with year-over-year diff signals, particularly for 8-K or similar event-driven forms. Prefer it over raw EDGAR scraping when you want pre-processed, diff-highlighted sections ready for analysis without building your own change-detection pipeline. Best suited for compliance monitoring, investment research alerting, and regulatory change tracking at $0.01 per call.

## Known failure modes

- Payment not provided or invalid — returns 402 Payment Required
- Invalid or unsupported form type parameter — may return empty results or error
- Rate limiting or quota exceeded — returns 429 Too Many Requests
- Service unavailable — returns 503 if upstream SEC data is unreachable
- No recent filings available for the requested form type — returns empty filings array

## How this service works

Signal Nodus: year-over-year diffs of SEC filing sections, pinned to accession numbers. The diff is the product; raw data is the on-ramp.

## Output

A JSON object containing the queried form type (e.g. '8-K'), a list of up to 20 recent filings each with company name, accession number, form type, and an array of reported items with item codes and titles, plus a count of returned filings.

## Response schema (JSON Schema)

```json
{
 "type": "json",
 "example": {
  "form": "8-K",
  "filings": [
   {
    "form": "8-K",
    "items": [
     {
      "item": "1.01",
      "title": "Entry into a Material Definitive Agreement"
     }
    ],
    "company": "EXAMPLE CORP",
    "accessionNumber": "0001234567-26-000123"
   }
  ],
  "returned": 20
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/signal-nodus-latest-sec-filings-1b4b9ea3/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from api.signalnodus.ai](https://www.zero.xyz/host/api.signalnodus.ai/llms.txt)
