Form D Watch API: Watch Reg D filings with a since cursor — SEC Form D
Watch Reg D filings with a since cursor — returns only offerings newer than your cursor, parsed, plus the next cursor to store. Use as the cheap poll loop for private-capital monitoring.
Free — no key, no signup, rate-limited to 60 calls per minute per client.
How do you call it?
GET /v1/sec/formd/since — product id
sec_formd_since. Over MCP, call answerpool_get with
product_id=sec_formd_since.
curl "https://answerpool.io/v1/sec/formd/since?since=2026-08-30T00%3A00%3A00Z"
Live call: https://answerpool.io/v1/sec/formd/since?since=2026-08-30T00%3A00%3A00Z · JSON sample: /v1/samples/sec_formd_since
What does the answer look like?
A representative response, the same static sample served at /v1/samples/sec_formd_since.
as_of | 2026-09-16T21:48:08.169Z |
|---|---|
index_started_at | 2026-08-30T19:10:24.500Z |
since | 2026-09-15T00:00:00 |
count | 3 |
next_cursor | 2026-09-16T17:26:13 |
refresh_after | 2026-09-17T11:15:00.000Z |
offerings
| accession | filed_at | cik | company | state | entity_type | industry_group | is_amendment | total_offering_usd | sold_usd | remaining_usd | investors |
|---|---|---|---|---|---|---|---|---|---|---|---|
| 0002155845-26-000001 | 2026-09-16T17:26:13 | 0002155845 | Porte Arbitrage LP | WY | Limited Partnership | Pooled Investment Fund | false | — | 0.0 | — | 0.0 |
| 0002084847-26-000001 | 2026-09-16T17:25:31 | 0002084847 | Fencecrete Holdings, LLC | MI | Limited Liability Company | Other | true | — | 8900000.0 | — | 7.0 |
| 0002149549-26-000001 | 2026-09-16T17:21:12 | 0002149549 | Oceans Equity Fund I, LP | FL | Limited Partnership | Pooled Investment Fund | false | — | 0.0 | — | 0.0 |
The same sample as raw JSON
{
"as_of": "2026-09-16T21:48:08.169Z",
"index_started_at": "2026-08-30T19:10:24.500Z",
"since": "2026-09-15T00:00:00",
"count": 3,
"offerings": [
{
"accession": "0002155845-26-000001",
"filed_at": "2026-09-16T17:26:13",
"cik": "0002155845",
"company": "Porte Arbitrage LP",
"state": "WY",
"entity_type": "Limited Partnership",
"industry_group": "Pooled Investment Fund",
"is_amendment": false,
"total_offering_usd": null,
"sold_usd": 0.0,
"remaining_usd": null,
"investors": 0.0,
"exemptions": [
"06b",
"3C",
"3C.7"
],
"minimum_investment": 10000000.0,
"first_sale_date": "2026-09-01",
"filing_url": "https://www.sec.gov/Archives/edgar/data/2155845/000215584526000001/0002155845-26-000001-index.htm"
},
{
"accession": "0002084847-26-000001",
"filed_at": "2026-09-16T17:25:31",
"cik": "0002084847",
"company": "Fencecrete Holdings, LLC",
"state": "MI",
"entity_type": "Limited Liability Company",
"industry_group": "Other",
"is_amendment": true,
"total_offering_usd": null,
"sold_usd": 8900000.0,
"remaining_usd": null,
"investors": 7.0,
"exemptions": [
"06b"
],
"minimum_investment": 0.0,
"first_sale_date": "2025-09-08",
"filing_url": "https://www.sec.gov/Archives/edgar/data/2084847/000208484726000001/0002084847-26-000001-index.htm"
},
{
"accession": "0002149549-26-000001",
"filed_at": "2026-09-16T17:21:12",
"cik": "0002149549",
"company": "Oceans Equity Fund I, LP",
"state": "FL",
"entity_type": "Limited Partnership",
"industry_group": "Pooled Investment Fund",
"is_amendment": false,
"total_offering_usd": null,
"sold_usd": 0.0,
"remaining_usd": null,
"investors": 0.0,
"exemptions": [
"06b",
"3C",
"3C.7"
],
"minimum_investment": 0.0,
"first_sale_date": null,
"filing_url": "https://www.sec.gov/Archives/edgar/data/2149549/000214954926000001/0002149549-26-000001-index.htm"
}
],
"next_cursor": "2026-09-16T17:26:13",
"refresh_after": "2026-09-17T11:15:00.000Z"
}How fresh is it, and where does the data come from?
The fastest source behind this answer can change every 15 minutes, so every response carries a refresh_after timestamp — right now it would be 2026-09-17T11:15:00.000Z. Schedule the next call on that value rather than on a guess.
- SEC EDGAR (US federal public domain) — upstream:
https://efts.sec.gov
Method version 0.1.0 ·
serving cache 1 day ·
every response carries a result_id you can resolve at
/v1/provenance.
When should you use it?
Recurring checks; store next_cursor between calls.
What you skip building
- poller infrastructure
- cursor bookkeeping
- dedup
When should you not use it?
One-off reads — the feed view is free.
Where else can you find this?
- Catalog entry (JSON, free)
- OpenAPI schema — input and output types, prices, the 402 flow
- llms.txt — every product in one plain-text document