Find newly filed SEC Form D private-offering signals for autonomous GTM workflows
Find newly filed SEC Form D private-offering signals for autonomous GTM workflows. Filter by issuer state, industry keyword, and reported amount sold. Returns official links, company context, related people, and a cursor. Form D is a notice, not proof of total funding raised.
50000 (raw units)
price
15
calls / 30d
5
unique payers
2026-09-09
updated
Provider
evidence.regulavita.com · discovered, not yet claimed by its owner
Payment (x402 accepts[])
[
{
"scheme": "exact",
"network": "eip155:8453",
"payTo": "0x9500075649a70411c81f99c4314f6cff55d12579",
"asset": "0x833589fCD6eDb6E08f4c7C32D4f71b54bdA02913",
"amount": "50000",
"maxTimeoutSeconds": 300
}
]Output schema
{
"bazaar": {
"info": {
"input": {
"body": {
"include_amendments": false,
"industry_keywords": [],
"limit": 10,
"max_source_age_seconds": 600,
"minimum_amount_sold_usd": "0",
"since": "2026-09-05T14:12:02Z",
"states": []
},
"bodyType": "json",
"method": "POST",
"type": "http"
},
"output": {
"example": {
"decision": "FORM_D_FUNDING_SIGNALS_FOUND",
"lead_count": 1,
"leads": [],
"pagination": {
"has_more": false,
"next_cursor": null
},
"provenance": {
"parser_version": "sec-form-d-funding-leads/0.1.0"
},
"receipt": {
"algorithm": "Ed25519"
},
"request_id": "form_d_funding_leads_example",
"upgrade": {
"path": "/v1/gtm/form-d-company-dossier",
"price": "$0.25",
"requests": []
}
},
"type": "json"
}
},
"schema": {
"$schema": "https://json-schema.org/draft/2020-12/schema",
"properties": {
"input": {
"additionalProperties": false,
"properties": {
"body": {
"additionalProperties": false,
"properties": {
"cursor": {
"description": "The next_cursor from the previous page.",
"pattern": "^[0-9]{10}-[0-9]{2}-[0-9]{6}$",
"type": "string"
},
"include_amendments": {
"default": false,
"type": "boolean"
},
"industry_keywords": {
"items": {
"maxLength": 64,
"type": "string"
},
"maxItems": 10,
"type": "array"
},
"limit": {
"default": 10,
"maximum": 25,
"minimum": 1,
"type": "integer"
},
"max_source_age_seconds": {
"maximum": 3600,
"minimum": 60,
"type": "integer"
},
"minimum_amount_sold_usd": {
"minimum": 0,
"type": [
"number",
"string"
]
},
"since": {
"description": "UTC baseline within the last 14 days.",
"format": "date-time",
"type": "string"
},
"states": {
"items": {
"pattern": "^[A-Z]{2}$",
"type": "string"
},
"maxItems": 20,
"type": "array"
}
},
"required": [
"since"
],
"type": "object"
},
"bodyType": {
"enum": [
"json",
"form-data",
"text"
],
"type": "string"
},
"method": {
"enum": [
"POST",
"PUT",
"PATCH"
],
"type": "string"
},
"type": {
"const": "http",
"type": "string"
}
},
"required": [
"type",
"method",
"bodyType",
"body"
],
"type": "object"
},
"output": {
"properties": {
"example": {
"properties": {
"decision": {
"enum": [
"FORM_D_FUNDING_SIGNALS_FOUND",
"NO_MATCHING_FORM_D_FUNDING_SIGNALS"
]
},
"lead_count": {
"type": "integer"
},
"leads": {
"type": "array"
},
"pagination": {
"type": "object"
},
"provenance": {
"type": "object"
},
"receipt": {
"type": "object"
},
"request_id": {
"type": "string"
},
"upgrade": {
"type": "object"
}
},
"required": [
"request_id",
"decision",
"lead_count",
"leads",
"pagination",
"upgrade",
"provenance",
"receipt"
],
"type": "object"
},
"type": {
"type": "string"
}
},
"required": [
"type"
],
"type": "object"
}
},
"required": [
"input"
],
"type": "object"
}
}
}Use it
curl
curl "https://evidence.regulavita.com/v1/gtm/form-d-funding-leads" # -> 402 Payment Required, accepts[] lists how to pay # retry with a PAYMENT-SIGNATURE (or PAYMENT header) once paid
JavaScript
const res = await fetch("https://evidence.regulavita.com/v1/gtm/form-d-funding-leads");
if (res.status === 402) {
const { accepts } = await res.json();
// pay one of accepts[] via an x402 client, then retry with the payment header
}Python
import httpx
res = httpx.get("https://evidence.regulavita.com/v1/gtm/form-d-funding-leads")
if res.status_code == 402:
accepts = res.json()["accepts"]
# pay one of accepts[] via an x402 client, then retry with the payment headerMachine-readable
Everything on this page is also available as clean JSON at /resources/2195.json, and this resource appears in /discovery/resources and /discovery/search.