# SEC Filings Deep-Dive Workflow (agent402.tools)

> SEC Filings Deep-Dive Workflow (agent402.tools) is a paid API for AI agents from agent402.tools, paid per call via x402, $0.029/call, status unknown (last checked 2026-09-14).

Runs a bundled EDGAR research workflow for a US public company, returning recent filings, financial time series, insider trades, and full-text search results in a single call.

## Facts

- Endpoint: POST https://agent402.tools/api/skill/sec-filings-deep-dive
- Price: $0.029/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-14
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/sec-filings-deep-dive-workflow-agent402-tools-9f50609a
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_pEwfVIv6zMX0SLrx2kJV4

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-filings-deep-dive-workflow-agent402-tools-9f50609a -d '<json body>'
```

Example prompt: Give me the full EDGAR deep-dive on NVDA — recent filings, key financial time series, insider trades, and a search across their entire filing corpus.

## When to prefer this

Use this endpoint when you need a comprehensive, one-shot EDGAR research package for a US public company — combining filings, financials, insider trades, and full-text search — rather than making multiple separate API calls. Ideal for due diligence, investment research, or regulatory review workflows where breadth of SEC data matters more than a single narrow query.

## Known failure modes

- Invalid or unknown ticker returns an error or empty result
- Ticker not found on EDGAR (e.g. non-US or delisted company) returns no data
- x402 payment failure causes the workflow not to execute
- EDGAR API rate limits or downtime cause partial or failed responses
- Malformed ticker string (e.g. special characters) may cause a parsing error

## How this service works

Bundled execution of the SEC filings deep-dive workflow - Pull the full EDGAR picture of a US public company in one workflow: recent filings, key financial time series, insider trades, and full-text search across the corpus. One x402 payment runs 7 underlying tools (edgar-company-lookup, edgar-filings, edgar-company-facts, edgar-company-concept, edgar-insider-trades, edgar-search, edgar-13f-holdings); partial-success per step.

## Output

A bundled response containing the company's recent SEC filings, key financial time series data, insider trade records, and full-text search results across the EDGAR corpus, all for the requested ticker — delivered in one workflow output.

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "properties": {
  "ticker": {
   "type": "string",
   "description": "US stock ticker (e.g. AAPL, NVDA, BRK.B)"
  }
 }
}
```

## Response schema (JSON Schema)

```json
{
 "type": "json",
 "example": {
  "args": {
   "ticker": "AAPL"
  },
  "pack": "sec-filings-deep-dive",
  "steps": [
   {
    "ok": true,
    "slug": "edgar-company-lookup",
    "result": {}
   },
   {
    "ok": true,
    "slug": "edgar-filings",
    "result": {}
   },
   {
    "ok": true,
    "slug": "edgar-company-facts",
    "result": {}
   },
   {
    "ok": true,
    "slug": "edgar-company-concept",
    "result": {}
   },
   {
    "ok": true,
    "slug": "edgar-insider-trades",
    "result": {}
   },
   {
    "ok": true,
    "slug": "edgar-search",
    "result": {}
   },
   {
    "ok": true,
    "slug": "edgar-13f-holdings",
    "result": {}
   }
  ],
  "summary": "7/7 steps succeeded"
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/sec-filings-deep-dive-workflow-agent402-tools-9f50609a/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from agent402.tools](https://www.zero.xyz/host/agent402.tools/llms.txt)
