# Signal Nodus SEC Filing Section Retrieval

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

Retrieves a specific section of an SEC filing by accession number, returning the raw section text as the on-ramp for year-over-year diff analysis

## Facts

- Endpoint: GET https://api.signalnodus.ai/v1/section
- Price: $0.05/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-sec-filing-section-retrieval-12218e5e
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_tB8lUl6oIWlOtVB3hx699

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-sec-filing-section-retrieval-12218e5e
```

Example prompt: Can you pull the Risk Factors section (Item 1A) from Apple's 10-K filing with accession number 0000320193-23-000106 so I can see what they disclosed?

## When to prefer this

Choose this endpoint when you need the raw text of a specific SEC filing section pinned to an exact accession number, particularly as a precursor to year-over-year diff analysis. Prefer it over general SEC EDGAR access when you need structured, per-section extraction with guaranteed accession-number fidelity rather than full-document retrieval.

## Known failure modes

- Invalid or malformed accession number returns an error or empty result
- Requested section does not exist in the specified filing
- Filing not yet indexed returns a not-found response
- Rate limiting or payment failure with x402 protocol returns 402 status
- Section identifier not recognized for the given filing type

## 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

Returns a JSON object containing the section item identifier (e.g. '1A'), the full text of that SEC filing section, a boolean indicating whether the result is pinned to the accession number, and a character count of the returned text.

## Response schema (JSON Schema)

```json
{
 "type": "json",
 "example": {
  "item": "1A",
  "text": "Item 1A. Risk Factors ...",
  "pinned": false,
  "characters": 3000
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/signal-nodus-sec-filing-section-retrieval-12218e5e/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)
