{
  "openapi": "3.0.1",
  "info": {
    "title": "Startup Funding & Investor Intel - Form D Rounds, Investors",
    "description": "Fresh startup funding rounds and investor intel synthesized from SEC Form D filings, EDGAR full-text search, and press coverage. A Crunchbase-style feed rebuilt from primary sources. For VC/PE deal sourcing, B2B sales (a fresh raise = budget), and recruiters. Public data only.",
    "version": "0.1",
    "x-build-id": "fCnaBaEGX6QBAaS4a"
  },
  "servers": [
    {
      "url": "https://api.apify.com/v2"
    }
  ],
  "paths": {
    "/acts/seibs.co~startup-funding-intel/run-sync-get-dataset-items": {
      "post": {
        "operationId": "run-sync-get-dataset-items-seibs.co-startup-funding-intel",
        "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/seibs.co~startup-funding-intel/runs": {
      "post": {
        "operationId": "runs-sync-seibs.co-startup-funding-intel",
        "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/seibs.co~startup-funding-intel/run-sync": {
      "post": {
        "operationId": "run-sync-seibs.co-startup-funding-intel",
        "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",
        "required": [
          "mode",
          "user_agent_contact"
        ],
        "properties": {
          "mode": {
            "title": "Mode",
            "enum": [
              "recent_rounds",
              "company_funding",
              "investor_search",
              "funding_monitor"
            ],
            "type": "string",
            "description": "recent_rounds = all Form D / D/A filings in a lookback window (optionally filtered by industry, state, min offering). company_funding = named companies -> their Form D history + press corroboration. investor_search = investor/person names -> Form D filings where they appear as related persons, rolled into an investor graph. funding_monitor = a company watchlist for Apify Schedules (monitor-mode delta of NEW rounds since last run).",
            "default": "recent_rounds"
          },
          "user_agent_contact": {
            "title": "Contact email (REQUIRED - SEC fair-access)",
            "type": "string",
            "description": "A real contact email. The SEC fair-access policy requires every automated request to identify itself with a contact email or the IP gets banned. We send it in the User-Agent header. This is intentionally NOT prefilled - a placeholder would send a fake identity to the SEC, so a missing or example.com value triggers demo mode instead. Example: 'you@company.com'.",
            "default": ""
          },
          "companies": {
            "title": "Companies (for company_funding / funding_monitor)",
            "maxItems": 50,
            "type": "array",
            "description": "Company legal or common names to look up in Form D filings, e.g. ['Acme Robotics', 'Northwind AI']. The actor resolves each to an SEC issuer via full-text search and fuzzy name matching (rapidfuzz). Names that match weakly are still returned but carry a match_confidence caveat. Hard cap of 50.",
            "default": [],
            "items": {
              "type": "string"
            }
          },
          "investors": {
            "title": "Investors / people (for investor_search)",
            "maxItems": 25,
            "type": "array",
            "description": "Investor or person names to search Form D 'related persons' for (executive officers, directors, promoters), e.g. ['Jane Smith', 'Reid Hoffman']. Builds an investor graph per name: companies backed, co-investors seen on the same filings, total disclosed amounts, date range. Form D does NOT name LP/VC funds, so this finds disclosed control persons, not fund investors. Hard cap of 25.",
            "default": [],
            "items": {
              "type": "string"
            }
          },
          "lookback_days": {
            "title": "Lookback window (days) for recent_rounds",
            "minimum": 1,
            "maximum": 365,
            "type": "integer",
            "description": "How far back to pull Form D filings in recent_rounds mode. Default 14 (the last two weeks of fresh raises). Hard cap of 365.",
            "default": 14
          },
          "industry_groups": {
            "title": "Industry-group filter (Form D categories)",
            "maxItems": 15,
            "type": "array",
            "description": "Keep only filings whose Form D industry group contains one of these (case-insensitive substring), e.g. ['Technology', 'Pooled Investment Fund', 'Biotechnology', 'Health Care']. Form D uses a fixed industry-group vocabulary. Leave empty for all. Hard cap of 15.",
            "default": [],
            "items": {
              "type": "string"
            }
          },
          "states": {
            "title": "State filter (2-letter issuer state)",
            "maxItems": 50,
            "type": "array",
            "description": "Keep only filings whose issuer business state matches one of these 2-letter codes, e.g. ['CA', 'NY', 'TX', 'DE']. Leave empty for all states. Hard cap of 50.",
            "default": [],
            "items": {
              "type": "string"
            }
          },
          "min_offering_amount_usd": {
            "title": "Minimum total offering amount (USD)",
            "minimum": 0,
            "maximum": 100000000000,
            "type": "integer",
            "description": "Keep only rounds whose disclosed total offering amount is at least this many dollars. Default 0 (no floor). Note: many Form D filings report 'Indefinite' (no numeric amount); when a floor > 0 is set, Indefinite-amount filings are excluded.",
            "default": 0
          },
          "max_rounds": {
            "title": "Max filings to process",
            "minimum": 1,
            "maximum": 1000,
            "type": "integer",
            "description": "Hard cap on the number of Form D filings fetched and parsed in a run (recent_rounds and per-name searches). Default 200. Hard cap of 1000.",
            "default": 200
          },
          "include_press": {
            "title": "Include press corroboration",
            "type": "boolean",
            "description": "Attach up to 5 recent (within 180 days) press mentions per company from Google News RSS, fuzzy-matched to the company name. Press files BEFORE Form D, so a fresh mention corroborates the round. Press errors never kill the run (soft-fail). No extra charge.",
            "default": true
          },
          "monitor_webhook_url": {
            "title": "Monitor webhook URL (Slack / email, optional)",
            "type": "string",
            "description": "When this actor runs under an Apify Schedule (monitor mode) or in funding_monitor mode, post the change digest of new rounds to this Slack-compatible webhook URL.",
            "default": ""
          },
          "use_apify_proxy": {
            "title": "Use Apify Proxy",
            "type": "boolean",
            "description": "Route SEC and news requests through Apify Proxy. DATACENTER is sufficient - the SEC is a government source with a fair-access throttle, not anti-bot.",
            "default": true
          },
          "apify_proxy_groups": {
            "title": "Proxy groups",
            "type": "array",
            "description": "Apify Proxy groups. DATACENTER is fine for SEC and Google News endpoints.",
            "default": [
              "DATACENTER"
            ],
            "items": {
              "type": "string"
            }
          },
          "concurrency": {
            "title": "Max concurrent SEC requests",
            "minimum": 1,
            "maximum": 8,
            "type": "integer",
            "description": "Parallel SEC requests. The SEC fair-access ceiling is 10 req/sec; this is capped at 8 with polite spacing. Default 4.",
            "default": 4
          }
        }
      },
      "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
                  }
                }
              }
            }
          }
        }
      }
    }
  }
}