# Stratalize Form D New Raises

> Stratalize Form D New Raises is a paid API for AI agents from www.stratalize.com, paid per call via x402, $0.1/call, status unknown (last checked 2026-09-14).

Returns recent SEC Form D private placement filings from EDGAR, with optional filters for state, SIC code, and minimum offering size over a configurable lookback window.

## Facts

- Endpoint: GET https://www.stratalize.com/api/x402/form-d-new-raises
- Price: $0.1/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-14
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/stratalize-form-d-new-raises-25c76c93
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_cp4WEDHYOg_kqK0CbcG3C

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 stratalize-form-d-new-raises-25c76c93
```

Example prompt: Pull all new SEC Form D filings from the last 14 days in Texas for SIC code 6726 (investment offices) with a minimum offering of $1 million, so I can see what fund formations are hitting EDGAR.

## When to prefer this

Use this endpoint when you need structured, filterable access to recent SEC Form D private placement filings with verified provenance. Prefer it over direct EDGAR queries when you need state or SIC pre-filtering, a signed verifiable receipt, or a clean API abstraction over EDGAR's full-text search. Ideal for compliance intelligence workflows, fund monitoring, or investment prospecting agents.

## Known failure modes

- Invalid or unsupported SIC prefix returns empty results or validation error
- State code not recognized returns 400 or empty set
- days_back exceeds maximum of 90 returns validation error
- min_offering_usd filter too high returns empty result set
- EDGAR EFTS source temporarily unavailable causes upstream timeout or 503
- Payment not completed via x402 returns 402 Payment Required

## How this service works

Stratalize — attested finance, legal, healthcare, and compliance intelligence. Signed, independently verifiable receipt on every call (trust.stratalize.com/verify). Use when tracking new private placement activity via SEC Form D filings in a recent window. Returns Form D filings from EDGAR full-text search with optional state and SIC filters. Source: SEC EDGAR EFTS

## Output

A list of Form D filings sourced from SEC EDGAR full-text search, each containing issuer name, filing date, offering amount, state of incorporation or filing, SIC code, and related metadata — all with a signed, independently verifiable receipt from trust.stratalize.com.

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "properties": {
  "sic": {
   "type": "string",
   "description": "SIC prefix filter"
  },
  "state": {
   "type": "string",
   "description": "Two-letter state filter"
  },
  "days_back": {
   "type": "integer",
   "maximum": 90,
   "minimum": 1,
   "description": "Lookback window (max 90)"
  },
  "min_offering_usd": {
   "type": "number",
   "description": "Minimum offering amount USD"
  }
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/stratalize-form-d-new-raises-25c76c93/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from www.stratalize.com](https://www.zero.xyz/host/www.stratalize.com/llms.txt)
