{
  "openapi": "3.0.1",
  "info": {
    "title": "SEC Form D Scraper - Startup Funding & Private Placement Leads",
    "description": "Find newly funded companies and private offerings from official SEC EDGAR Form D filings. Filter startup funding leads by issuer, date, state, industry, entity, security, exemption, offering amount, amount sold, investor count, and amendment status.",
    "version": "0.1",
    "x-build-id": "9Thq57BT5L348DKDh"
  },
  "servers": [
    {
      "url": "https://api.apify.com/v2"
    }
  ],
  "paths": {
    "/acts/pink_comic~sec-form-d-startup-funding-leads/run-sync-get-dataset-items": {
      "post": {
        "operationId": "run-sync-get-dataset-items-pink_comic-sec-form-d-startup-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/pink_comic~sec-form-d-startup-funding-leads/runs": {
      "post": {
        "operationId": "runs-sync-pink_comic-sec-form-d-startup-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/pink_comic~sec-form-d-startup-funding-leads/run-sync": {
      "post": {
        "operationId": "run-sync-pink_comic-sec-form-d-startup-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": {
          "query": {
            "title": "Issuer, Person, Intermediary, or Filing Keyword",
            "type": "string",
            "description": "SEC full-text search across Form D filings, such as a company, executive, intermediary, technology, or other disclosed keyword. Empty returns the newest filings."
          },
          "cik": {
            "title": "Exact SEC CIK",
            "pattern": "^[0-9]{0,10}$",
            "type": "string",
            "description": "Exact 1-10 digit SEC Central Index Key for one issuer."
          },
          "accessionNumber": {
            "title": "Exact Filing Accession Number",
            "pattern": "^$|^[0-9]{10}-[0-9]{2}-[0-9]{6}$",
            "type": "string",
            "description": "Exact SEC filing accession in 0000000000-00-000000 format. This bypasses broad search and fetches the linked filing directly."
          },
          "startDate": {
            "title": "Filing Start Date",
            "pattern": "^$|^[0-9]{4}-[0-9]{2}-[0-9]{2}$",
            "type": "string",
            "description": "Optional inclusive YYYY-MM-DD filing date. When omitted, daysBack defines the rolling window."
          },
          "endDate": {
            "title": "Filing End Date",
            "pattern": "^$|^[0-9]{4}-[0-9]{2}-[0-9]{2}$",
            "type": "string",
            "description": "Optional inclusive YYYY-MM-DD filing date. Defaults to today."
          },
          "daysBack": {
            "title": "Rolling Filing Window (Days)",
            "minimum": 1,
            "maximum": 366,
            "type": "integer",
            "description": "Used only when startDate is omitted. Seven days makes the default resilient across weekends and holidays.",
            "default": 7
          },
          "states": {
            "title": "Issuer States",
            "type": "array",
            "description": "Optional two-letter issuer address state codes. Empty means all states and countries.",
            "items": {
              "type": "string",
              "pattern": "^[A-Za-z]{2}$"
            },
            "default": []
          },
          "industries": {
            "title": "Industry Keywords",
            "type": "array",
            "description": "Case-insensitive Form D industry/fund-type substrings, such as Computers, Health Care, Real Estate, or Venture Capital Fund.",
            "items": {
              "type": "string"
            },
            "default": []
          },
          "entityTypes": {
            "title": "Issuer Entity Types",
            "type": "array",
            "description": "Exact entity types such as Corporation, Limited Liability Company, or Limited Partnership.",
            "items": {
              "type": "string"
            },
            "default": []
          },
          "securityTypes": {
            "title": "Security Types",
            "type": "array",
            "description": "Security-type substrings such as Equity, Debt, Pooled Investment Fund Interest, or Other.",
            "items": {
              "type": "string"
            },
            "default": []
          },
          "exemptions": {
            "title": "Federal Exemptions",
            "type": "array",
            "description": "Exemption substrings such as 06b, 3C, or 3C. Every result must match at least one selected value.",
            "items": {
              "type": "string"
            },
            "default": []
          },
          "amendmentFilter": {
            "title": "Amendment Status",
            "enum": [
              "any",
              "no",
              "yes"
            ],
            "type": "string",
            "description": "Include all filings, only new Form D notices, or only amendments to earlier notices.",
            "default": "any"
          },
          "nonAccreditedFilter": {
            "title": "Non-Accredited Investors Reported",
            "enum": [
              "any",
              "yes",
              "no"
            ],
            "type": "string",
            "description": "Filter the issuer's answer about whether any non-accredited investors have invested.",
            "default": "any"
          },
          "minOfferingAmount": {
            "title": "Minimum Total Offering Amount (USD)",
            "minimum": 0,
            "type": "integer",
            "description": "Minimum issuer-reported total offering amount. Indefinite offerings do not pass a positive minimum.",
            "default": 0
          },
          "minAmountSold": {
            "title": "Minimum Amount Sold (USD)",
            "minimum": 0,
            "type": "integer",
            "description": "Minimum issuer-reported amount sold as of the filing. This is not independent proof that proceeds closed or were retained.",
            "default": 0
          },
          "minInvestors": {
            "title": "Minimum Investors Already Invested",
            "minimum": 0,
            "type": "integer",
            "description": "Minimum reported investor count. Form D does not identify those investors.",
            "default": 0
          },
          "sortBy": {
            "title": "Sort Results",
            "enum": [
              "latest",
              "oldest",
              "amount_sold_desc",
              "offering_amount_desc",
              "first_sale_desc"
            ],
            "type": "string",
            "description": "Order matches after document-level filters are applied within the disclosed scan window.",
            "default": "latest"
          },
          "maxResults": {
            "title": "Maximum Results",
            "minimum": 1,
            "maximum": 1000,
            "type": "integer",
            "description": "Total output cap after all filters and sorting.",
            "default": 25
          },
          "maxFilingsScanned": {
            "title": "Maximum Newest Filings to Scan",
            "minimum": 1,
            "maximum": 1000,
            "type": "integer",
            "description": "Bounds SEC filing-document requests for deep industry, security, amount, and investor filters. Increase it for broader coverage; output discloses when the scan limit applies.",
            "default": 250
          }
        }
      },
      "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
                  }
                }
              }
            }
          }
        }
      }
    }
  }
}