# agent402.tools SEC Regulatory Watch

> agent402.tools SEC Regulatory Watch is a paid API for AI agents from agent402.tools, paid per call via x402, $0.023/call, status unknown (last checked 2026-09-16).

Runs a bundled 5-tool EDGAR monitoring workflow: full-text search, recent filings, insider purchases, IPOs, and more — for a given keyword/theme over a configurable lookback window.

## Facts

- Endpoint: POST https://agent402.tools/api/skill/regulatory-watch
- Price: $0.023/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-16
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/agent402-tools-sec-regulatory-watch-045493cc
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_ULkcx1WAfjpoe50wucPzs

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 agent402-tools-sec-regulatory-watch-045493cc -d '<json body>'
```

Example prompt: Run a regulatory watch on 'nuclear small modular reactor' covering the last 30 days — I want to see who just filed, who just bought, any recent IPOs, and what the full-text EDGAR search surfaces.

## When to prefer this

Use this endpoint when you need a bundled, multi-signal regulatory intelligence sweep on a specific investment theme — rather than calling individual EDGAR endpoints separately. Ideal for research agents that need a single call to surface filings, insider activity, and IPOs around a keyword.

## Known failure modes

- Theme keyword returns no EDGAR matches — empty results returned
- lookbackDays value too large or malformed — may default or error
- EDGAR API rate limits or outages causing partial results
- Ambiguous keyword matching unrelated filings — noisy results

## How this service works

Bundled execution of the SEC regulatory monitoring workflow - The 'who just filed / who just bought / what just IPO'd / what does the full-text search say' monitoring loop. Five EDGAR tools composed: full-text search for a keyword, surface recent filings on the matched companies, pull insider Form 4 transactions, pull 13F institutional holdings changes, and check the IPO calendar.

## Output

A composed summary of EDGAR activity for the given theme: full-text search hits, recent filings by companies mentioning the keyword, insider purchase events, and IPO listings — all within the specified lookback window.

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "properties": {
  "theme": {
   "type": "string",
   "description": "the keyword or theme to monitor (e.g. 'AI infrastructure datacenter', 'GLP-1', 'nuclear small modular reactor')"
  },
  "lookbackDays": {
   "type": "string",
   "description": "the lookback window in days for fresh filings (default 30)"
  }
 }
}
```

## Response schema (JSON Schema)

```json
{
 "type": "json",
 "example": {
  "args": {
   "theme": "AI infrastructure datacenter",
   "lookbackDays": "30"
  },
  "pack": "regulatory-watch",
  "steps": [
   {
    "ok": true,
    "slug": "edgar-search",
    "result": {}
   },
   {
    "ok": true,
    "slug": "edgar-filings",
    "result": {}
   },
   {
    "ok": true,
    "slug": "edgar-insider-trades",
    "result": {}
   },
   {
    "ok": true,
    "slug": "edgar-13f-holdings",
    "result": {}
   },
   {
    "ok": true,
    "slug": "edgar-recent-ipos",
    "result": {}
   }
  ],
  "summary": "5/5 steps succeeded"
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/agent402-tools-sec-regulatory-watch-045493cc/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)
