{
  "openapi": "3.0.1",
  "info": {
    "title": "SEC Form D Scraper - Private Placement & Funding Leads",
    "description": "Scrape SEC Form D (Reg D) & Form C (Reg CF crowdfunding): issuer name, address, phone, website, industry, offering amount raised/remaining, named executives & broker. Filter by date, state, industry & raise size. Funding-intent B2B leads + monitoring. Official EDGAR data, no key.",
    "version": "0.1",
    "x-build-id": "syhya2Oupdnh03zTT"
  },
  "servers": [
    {
      "url": "https://api.apify.com/v2"
    }
  ],
  "paths": {
    "/acts/scrapesage~sec-form-d-funding-scraper/run-sync-get-dataset-items": {
      "post": {
        "operationId": "run-sync-get-dataset-items-scrapesage-sec-form-d-funding-scraper",
        "x-openai-isConsequential": false,
        "summary": "Executes an Actor, waits for its completion, and returns Actor's dataset items in response.",
        "tags": [
          "Run Actor"
        ],
        "requestBody": {
          "required": true,
          "content": {
            "application/json": {
              "schema": {
                "$ref": "#/components/schemas/inputSchema"
              }
            }
          }
        },
        "parameters": [
          {
            "name": "token",
            "in": "query",
            "required": true,
            "schema": {
              "type": "string"
            },
            "description": "Enter your Apify token here"
          }
        ],
        "responses": {
          "200": {
            "description": "OK"
          }
        }
      }
    },
    "/acts/scrapesage~sec-form-d-funding-scraper/runs": {
      "post": {
        "operationId": "runs-sync-scrapesage-sec-form-d-funding-scraper",
        "x-openai-isConsequential": false,
        "summary": "Executes an Actor and returns information about the initiated run in response.",
        "tags": [
          "Run Actor"
        ],
        "requestBody": {
          "required": true,
          "content": {
            "application/json": {
              "schema": {
                "$ref": "#/components/schemas/inputSchema"
              }
            }
          }
        },
        "parameters": [
          {
            "name": "token",
            "in": "query",
            "required": true,
            "schema": {
              "type": "string"
            },
            "description": "Enter your Apify token here"
          }
        ],
        "responses": {
          "200": {
            "description": "OK",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/runsResponseSchema"
                }
              }
            }
          }
        }
      }
    },
    "/acts/scrapesage~sec-form-d-funding-scraper/run-sync": {
      "post": {
        "operationId": "run-sync-scrapesage-sec-form-d-funding-scraper",
        "x-openai-isConsequential": false,
        "summary": "Executes an Actor, waits for completion, and returns the OUTPUT from Key-value store in response.",
        "tags": [
          "Run Actor"
        ],
        "requestBody": {
          "required": true,
          "content": {
            "application/json": {
              "schema": {
                "$ref": "#/components/schemas/inputSchema"
              }
            }
          }
        },
        "parameters": [
          {
            "name": "token",
            "in": "query",
            "required": true,
            "schema": {
              "type": "string"
            },
            "description": "Enter your Apify token here"
          }
        ],
        "responses": {
          "200": {
            "description": "OK"
          }
        }
      }
    }
  },
  "components": {
    "schemas": {
      "inputSchema": {
        "type": "object",
        "properties": {
          "formTypes": {
            "title": "Offering types",
            "type": "array",
            "description": "Which exempt offerings to include. Reg D (Form D) = private placements to (mostly) accredited investors — the bulk of private fundraising. Reg CF (Form C) = crowdfunding rounds via funding portals (early-stage SMBs, includes issuer website & financials).",
            "items": {
              "type": "string",
              "enum": [
                "D",
                "C"
              ],
              "enumTitles": [
                "Reg D — Private placements (Form D)",
                "Reg CF — Crowdfunding (Form C)"
              ]
            },
            "default": [
              "D"
            ]
          },
          "daysBack": {
            "title": "Days back",
            "type": "integer",
            "description": "Look back this many days from today for new filings. Ignored if you set an explicit start/end date below. New offerings are filed continuously.",
            "default": 7
          },
          "startDate": {
            "title": "Start date (YYYY-MM-DD)",
            "type": "string",
            "description": "Only filings on or after this date. Leave empty to use \"Days back\"."
          },
          "endDate": {
            "title": "End date (YYYY-MM-DD)",
            "type": "string",
            "description": "Only filings on or before this date. Leave empty for today."
          },
          "states": {
            "title": "Issuer states",
            "type": "array",
            "description": "Filter by the issuer's business-address state — two-letter codes, e.g. [\"CA\", \"TX\", \"NY\"]. Empty = all states.",
            "items": {
              "type": "string"
            }
          },
          "nameQuery": {
            "title": "Issuer name contains",
            "type": "string",
            "description": "Only issuers whose name contains this text (case-insensitive), e.g. \"Capital\", \"Ventures\" or \"Bio\"."
          },
          "industries": {
            "title": "Industries",
            "type": "array",
            "description": "Keep only offerings whose industry group contains one of these terms (case-insensitive substring), e.g. \"Technology\", \"Real Estate\", \"Health Care\", \"Pharmaceutical\", \"Energy\", \"Banking\", \"Restaurants\", \"Manufacturing\". Empty = all industries.",
            "items": {
              "type": "string"
            }
          },
          "excludeFunds": {
            "title": "Exclude investment funds",
            "type": "boolean",
            "description": "Drop pooled investment funds (hedge funds, VC/PE funds, etc.) and keep only operating companies — usually the better B2B/GTM leads.",
            "default": false
          },
          "newCompaniesOnly": {
            "title": "New companies only (≤5 yrs)",
            "type": "boolean",
            "description": "Keep only issuers incorporated within the last five years — early-stage startups raising capital.",
            "default": false
          },
          "minOfferingAmount": {
            "title": "Min total offering ($)",
            "type": "integer",
            "description": "Only offerings whose total offering amount is at least this many dollars, e.g. 1000000 for $1M+."
          },
          "maxOfferingAmount": {
            "title": "Max total offering ($)",
            "type": "integer",
            "description": "Only offerings whose total offering amount is at most this many dollars."
          },
          "minAmountSold": {
            "title": "Min amount already sold ($)",
            "type": "integer",
            "description": "Only offerings that have already sold at least this many dollars — i.e. capital is actually flowing."
          },
          "includeAmendments": {
            "title": "Include amendments",
            "type": "boolean",
            "description": "Include amended filings (Form D/A). Off by default, so you get one record per new offering rather than every update.",
            "default": false
          },
          "requireNamedContacts": {
            "title": "Only with named contacts",
            "type": "boolean",
            "description": "Keep only offerings that list at least one named executive, director or promoter.",
            "default": false
          },
          "sortBy": {
            "title": "Sort by",
            "enum": [
              "filedAt",
              "leadScore",
              "totalOfferingAmount",
              "totalAmountSold",
              "issuerName"
            ],
            "type": "string",
            "description": "Order of the returned offerings.",
            "default": "filedAt"
          },
          "maxResults": {
            "title": "Max results",
            "type": "integer",
            "description": "Maximum number of offering records to return.",
            "default": 200
          },
          "monitorMode": {
            "title": "Monitoring mode (only new offerings)",
            "type": "boolean",
            "description": "Remember which offerings were already returned and, on the next run with the same monitor key, emit only filings new since then — perfect for a fresh funding-leads feed. Works alongside Apify Schedules.",
            "default": false
          },
          "monitorKey": {
            "title": "Monitor key",
            "type": "string",
            "description": "A label for this saved watch (e.g. \"ca-tech-raises\"). Use a distinct key per saved search.",
            "default": "default"
          },
          "proxyConfiguration": {
            "title": "Proxy",
            "type": "object",
            "description": "Optional. SEC EDGAR is a public source reachable without a proxy (the default).",
            "default": {
              "useApifyProxy": false
            }
          }
        }
      },
      "runsResponseSchema": {
        "type": "object",
        "properties": {
          "data": {
            "type": "object",
            "properties": {
              "id": {
                "type": "string"
              },
              "actId": {
                "type": "string"
              },
              "userId": {
                "type": "string"
              },
              "startedAt": {
                "type": "string",
                "format": "date-time",
                "example": "2025-01-08T00:00:00.000Z"
              },
              "finishedAt": {
                "type": "string",
                "format": "date-time",
                "example": "2025-01-08T00:00:00.000Z"
              },
              "status": {
                "type": "string",
                "example": "READY"
              },
              "meta": {
                "type": "object",
                "properties": {
                  "origin": {
                    "type": "string",
                    "example": "API"
                  },
                  "userAgent": {
                    "type": "string"
                  }
                }
              },
              "stats": {
                "type": "object",
                "properties": {
                  "inputBodyLen": {
                    "type": "integer",
                    "example": 2000
                  },
                  "rebootCount": {
                    "type": "integer",
                    "example": 0
                  },
                  "restartCount": {
                    "type": "integer",
                    "example": 0
                  },
                  "resurrectCount": {
                    "type": "integer",
                    "example": 0
                  },
                  "computeUnits": {
                    "type": "integer",
                    "example": 0
                  }
                }
              },
              "options": {
                "type": "object",
                "properties": {
                  "build": {
                    "type": "string",
                    "example": "latest"
                  },
                  "timeoutSecs": {
                    "type": "integer",
                    "example": 300
                  },
                  "memoryMbytes": {
                    "type": "integer",
                    "example": 1024
                  },
                  "diskMbytes": {
                    "type": "integer",
                    "example": 2048
                  }
                }
              },
              "buildId": {
                "type": "string"
              },
              "defaultKeyValueStoreId": {
                "type": "string"
              },
              "defaultDatasetId": {
                "type": "string"
              },
              "defaultRequestQueueId": {
                "type": "string"
              },
              "buildNumber": {
                "type": "string",
                "example": "1.0.0"
              },
              "containerUrl": {
                "type": "string"
              },
              "usage": {
                "type": "object",
                "properties": {
                  "ACTOR_COMPUTE_UNITS": {
                    "type": "integer",
                    "example": 0
                  },
                  "DATASET_READS": {
                    "type": "integer",
                    "example": 0
                  },
                  "DATASET_WRITES": {
                    "type": "integer",
                    "example": 0
                  },
                  "KEY_VALUE_STORE_READS": {
                    "type": "integer",
                    "example": 0
                  },
                  "KEY_VALUE_STORE_WRITES": {
                    "type": "integer",
                    "example": 1
                  },
                  "KEY_VALUE_STORE_LISTS": {
                    "type": "integer",
                    "example": 0
                  },
                  "REQUEST_QUEUE_READS": {
                    "type": "integer",
                    "example": 0
                  },
                  "REQUEST_QUEUE_WRITES": {
                    "type": "integer",
                    "example": 0
                  },
                  "DATA_TRANSFER_INTERNAL_GBYTES": {
                    "type": "integer",
                    "example": 0
                  },
                  "DATA_TRANSFER_EXTERNAL_GBYTES": {
                    "type": "integer",
                    "example": 0
                  },
                  "PROXY_RESIDENTIAL_TRANSFER_GBYTES": {
                    "type": "integer",
                    "example": 0
                  },
                  "PROXY_SERPS": {
                    "type": "integer",
                    "example": 0
                  }
                }
              },
              "usageTotalUsd": {
                "type": "number",
                "example": 0.00005
              },
              "usageUsd": {
                "type": "object",
                "properties": {
                  "ACTOR_COMPUTE_UNITS": {
                    "type": "integer",
                    "example": 0
                  },
                  "DATASET_READS": {
                    "type": "integer",
                    "example": 0
                  },
                  "DATASET_WRITES": {
                    "type": "integer",
                    "example": 0
                  },
                  "KEY_VALUE_STORE_READS": {
                    "type": "integer",
                    "example": 0
                  },
                  "KEY_VALUE_STORE_WRITES": {
                    "type": "number",
                    "example": 0.00005
                  },
                  "KEY_VALUE_STORE_LISTS": {
                    "type": "integer",
                    "example": 0
                  },
                  "REQUEST_QUEUE_READS": {
                    "type": "integer",
                    "example": 0
                  },
                  "REQUEST_QUEUE_WRITES": {
                    "type": "integer",
                    "example": 0
                  },
                  "DATA_TRANSFER_INTERNAL_GBYTES": {
                    "type": "integer",
                    "example": 0
                  },
                  "DATA_TRANSFER_EXTERNAL_GBYTES": {
                    "type": "integer",
                    "example": 0
                  },
                  "PROXY_RESIDENTIAL_TRANSFER_GBYTES": {
                    "type": "integer",
                    "example": 0
                  },
                  "PROXY_SERPS": {
                    "type": "integer",
                    "example": 0
                  }
                }
              }
            }
          }
        }
      }
    }
  }
}