{
  "openapi": "3.0.1",
  "info": {
    "title": "SEC Form D Funding Leads - Newly Funded Companies, New Filings",
    "description": "Companies that just raised private capital, from official SEC EDGAR Form D filings: issuer, industry, amount raised, investors, executives, first sale date. Investment funds filtered out by default; scheduled runs deliver only filings new since the last one. Pay per lead.",
    "version": "0.1",
    "x-build-id": "8GAcyxrfjES3eXsra"
  },
  "servers": [
    {
      "url": "https://api.apify.com/v2"
    }
  ],
  "paths": {
    "/acts/bruco3~sec-form-d-funding-leads/run-sync-get-dataset-items": {
      "post": {
        "operationId": "run-sync-get-dataset-items-bruco3-sec-form-d-funding-leads",
        "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/bruco3~sec-form-d-funding-leads/runs": {
      "post": {
        "operationId": "runs-sync-bruco3-sec-form-d-funding-leads",
        "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/bruco3~sec-form-d-funding-leads/run-sync": {
      "post": {
        "operationId": "run-sync-bruco3-sec-form-d-funding-leads",
        "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": {
          "onlyNew": {
            "title": "Only filings new since the last run",
            "type": "boolean",
            "description": "The Actor remembers which filings it has delivered (in a named key-value store). Keep this on and schedule it daily: every run returns exactly the Form D filings that appeared since the previous run.",
            "default": true
          },
          "lookbackDays": {
            "title": "First run: how many days back",
            "minimum": 1,
            "maximum": 90,
            "type": "integer",
            "description": "Used only on the very first run (no memory yet) when no date range is given. 3 = the last three days of filings.",
            "default": 3
          },
          "startDate": {
            "title": "Or: from date",
            "type": "string",
            "description": "Explicit range for a one-off pull or a backfill, e.g. <code>2026-09-01</code>. Weekends are skipped automatically. With 'only new' on, filings already delivered are still skipped."
          },
          "endDate": {
            "title": "To date",
            "type": "string",
            "description": "Inclusive. Leave empty for 'until today'."
          },
          "excludePooledFunds": {
            "title": "Exclude investment funds",
            "type": "boolean",
            "description": "About 60% of Form D filings are private equity, venture and hedge funds raising capital, not companies. On = deliver operating companies only. Turn off to get every filing.",
            "default": true
          },
          "includeAmendments": {
            "title": "Include amendments (Form D/A)",
            "type": "boolean",
            "description": "Amendments update an earlier filing (new amount sold, new investors). Off = new offerings only.",
            "default": false
          },
          "industryGroups": {
            "title": "Industry groups",
            "type": "array",
            "description": "Form D Item 4 industry groups. Empty = all.",
            "items": {
              "type": "string",
              "enum": [
                "Agriculture",
                "Commercial Banking",
                "Insurance",
                "Investing",
                "Investment Banking",
                "Pooled Investment Fund",
                "Other Banking and Financial Services",
                "Business Services",
                "Coal Mining",
                "Electric Utilities",
                "Energy Conservation",
                "Environmental Services",
                "Oil and Gas",
                "Other Energy",
                "Biotechnology",
                "Health Insurance",
                "Hospitals and Physicians",
                "Pharmaceuticals",
                "Other Health Care",
                "Manufacturing",
                "Commercial",
                "Construction",
                "REITS and Finance",
                "Residential",
                "Other Real Estate",
                "Retailing",
                "Restaurants",
                "Computers",
                "Telecommunications",
                "Other Technology",
                "Airlines and Airports",
                "Lodging and Conventions",
                "Tourism and Travel Services",
                "Other Travel",
                "Other"
              ],
              "enumTitles": [
                "Agriculture",
                "Commercial Banking",
                "Insurance",
                "Investing",
                "Investment Banking",
                "Pooled Investment Fund",
                "Other Banking & Financial Services",
                "Business Services",
                "Coal Mining",
                "Electric Utilities",
                "Energy Conservation",
                "Environmental Services",
                "Oil & Gas",
                "Other Energy",
                "Biotechnology",
                "Health Insurance",
                "Hospitals & Physicians",
                "Pharmaceuticals",
                "Other Health Care",
                "Manufacturing",
                "Real Estate: Commercial",
                "Real Estate: Construction",
                "Real Estate: REITs & Finance",
                "Real Estate: Residential",
                "Other Real Estate",
                "Retailing",
                "Restaurants",
                "Technology: Computers",
                "Technology: Telecommunications",
                "Other Technology",
                "Airlines & Airports",
                "Lodging & Conventions",
                "Tourism & Travel Services",
                "Other Travel",
                "Other"
              ]
            }
          },
          "states": {
            "title": "Issuer states",
            "type": "array",
            "description": "Two-letter US state codes of the issuer's address, e.g. <code>CA</code>, <code>NY</code>, <code>TX</code>. Empty = all.",
            "items": {
              "type": "string"
            }
          },
          "entityTypes": {
            "title": "Entity types",
            "type": "array",
            "description": "E.g. <code>Corporation</code>, <code>Limited Liability Company</code>, <code>Limited Partnership</code>. Empty = all.",
            "items": {
              "type": "string"
            }
          },
          "minOfferingAmount": {
            "title": "Minimum total offering amount (USD)",
            "minimum": 0,
            "type": "integer",
            "description": "Filings with an indefinite offering amount always pass."
          },
          "minAmountSold": {
            "title": "Minimum amount already sold (USD)",
            "minimum": 0,
            "type": "integer",
            "description": "E.g. <code>1000000</code> for companies that have already closed at least $1M."
          },
          "maxAmountSold": {
            "title": "Maximum amount already sold (USD)",
            "minimum": 0,
            "type": "integer",
            "description": "<code>0</code> = no limit."
          },
          "maxFilings": {
            "title": "Maximum leads per run",
            "minimum": 0,
            "type": "integer",
            "description": "<code>0</code> = no limit.",
            "default": 0
          },
          "stateStoreName": {
            "title": "Memory store name",
            "type": "string",
            "description": "Named key-value store that remembers delivered filings. Use different names to run independent trackers (e.g. one per filter set).",
            "default": "sec-form-d-leads-state"
          },
          "requestsPerSecond": {
            "title": "Requests per second to EDGAR",
            "minimum": 1,
            "maximum": 10,
            "type": "integer",
            "description": "The SEC asks automated clients to stay under 10. Default 8.",
            "default": 8
          },
          "contactEmail": {
            "title": "Contact e-mail for the User-Agent",
            "type": "string",
            "description": "The SEC requires automated clients to identify themselves with a contact address. Optional: your own address instead of the Actor's."
          }
        }
      },
      "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
                  },
                  "PROXY_UNBLOCKER_UNITS": {
                    "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
                  },
                  "PROXY_UNBLOCKER_UNITS": {
                    "type": "integer",
                    "example": 0
                  }
                }
              }
            }
          }
        }
      }
    }
  }
}