{
  "openapi": "3.0.1",
  "info": {
    "title": "SEC Form D Funding Radar & Sales Leads",
    "description": "Find fresh SEC Form D funding leads and D/A amendments. Export offering amounts, amount sold, investor counts, issuer contacts, people, and amendment deltas.",
    "version": "0.0",
    "x-build-id": "XpSNzIuWIB7LQJOvk"
  },
  "servers": [
    {
      "url": "https://api.apify.com/v2"
    }
  ],
  "paths": {
    "/acts/signalfoundryhq~sec-form-d-funding-radar/run-sync-get-dataset-items": {
      "post": {
        "operationId": "run-sync-get-dataset-items-signalfoundryhq-sec-form-d-funding-radar",
        "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/signalfoundryhq~sec-form-d-funding-radar/runs": {
      "post": {
        "operationId": "runs-sync-signalfoundryhq-sec-form-d-funding-radar",
        "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/signalfoundryhq~sec-form-d-funding-radar/run-sync": {
      "post": {
        "operationId": "run-sync-signalfoundryhq-sec-form-d-funding-radar",
        "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": [
          "userAgent"
        ],
        "properties": {
          "lookbackDays": {
            "title": "Lookback days",
            "minimum": 0,
            "maximum": 31,
            "type": "integer",
            "description": "Scan daily SEC indexes from today through this many calendar days ago.",
            "default": 7
          },
          "includeAmendments": {
            "title": "Include Form D amendments",
            "type": "boolean",
            "description": "Include D/A filings and calculate changes against the prior filing when available.",
            "default": true
          },
          "fetchPreviousForAmendments": {
            "title": "Calculate amendment deltas",
            "type": "boolean",
            "description": "Fetch each amendment's previous filing to calculate changes in amount sold, investors, offering size, and minimum investment.",
            "default": true
          },
          "excludePooledInvestmentFunds": {
            "title": "Exclude pooled investment funds",
            "type": "boolean",
            "description": "Focus on operating-company leads by excluding hedge funds, private-equity funds, and other pooled investment vehicles.",
            "default": true
          },
          "states": {
            "title": "Issuer states",
            "type": "array",
            "description": "Optional two-letter issuer address codes, for example CA, NY, or TX. Leave empty for all locations.",
            "default": [],
            "items": {
              "type": "string"
            }
          },
          "industries": {
            "title": "Industries",
            "type": "array",
            "description": "Optional case-insensitive industry phrases such as Biotechnology, Technology, or Health Care.",
            "default": [],
            "items": {
              "type": "string"
            }
          },
          "entityTypes": {
            "title": "Entity types",
            "type": "array",
            "description": "Optional exact entity types such as Corporation or Limited Liability Company.",
            "default": [],
            "items": {
              "type": "string"
            }
          },
          "minimumAmountSoldUsd": {
            "title": "Minimum amount sold (USD)",
            "minimum": 0,
            "type": "integer",
            "description": "Return only filings reporting at least this much already sold.",
            "default": 0
          },
          "minimumOfferingAmountUsd": {
            "title": "Minimum offering amount (USD)",
            "minimum": 0,
            "type": "integer",
            "description": "Return only numeric offerings at or above this size. Indefinite offerings are retained.",
            "default": 0
          },
          "maxFilingsScanned": {
            "title": "Maximum filings scanned",
            "minimum": 1,
            "maximum": 500,
            "type": "integer",
            "description": "Safety cap on SEC filing documents fetched before filters are applied.",
            "default": 100
          },
          "userAgent": {
            "title": "SEC user agent",
            "type": "string",
            "description": "Identify your app and contact route for SEC fair-access compliance. Replace the profile URL with your company email for recurring production use.",
            "default": "Signal Foundry https://apify.com/signalfoundryhq"
          },
          "stateKey": {
            "title": "Monitor state key",
            "type": "string",
            "description": "Keep this unchanged across scheduled runs; use another key for a separate lead feed.",
            "default": "default"
          },
          "onlyNew": {
            "title": "Only unseen filings",
            "type": "boolean",
            "description": "Skip accession numbers already delivered under this state key.",
            "default": false
          },
          "resetState": {
            "title": "Reset saved filing history",
            "type": "boolean",
            "description": "Forget saved accession numbers before this run and replay the lookback window.",
            "default": false
          },
          "maxItems": {
            "title": "Maximum delivered leads",
            "minimum": 1,
            "maximum": 500,
            "type": "integer",
            "description": "Stop after this many paid dataset rows.",
            "default": 25
          }
        }
      },
      "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
                  }
                }
              }
            }
          }
        }
      }
    }
  }
}