{
  "openapi": "3.0.1",
  "info": {
    "title": "Venture Capital & Investor Data: VC Firms, Funds",
    "description": "Get investor and VC data: firm name, type (VC, PE, corporate VC, accelerator, family office), HQ country, and website. Filter to only investors with firmographics resolved. A self-serve investor database and VC data API.",
    "version": "0.1",
    "x-build-id": "D64vah3bl52amEUQn"
  },
  "servers": [
    {
      "url": "https://api.apify.com/v2"
    }
  ],
  "paths": {
    "/acts/datahyena~investor-vc-data/run-sync-get-dataset-items": {
      "post": {
        "operationId": "run-sync-get-dataset-items-datahyena-investor-vc-data",
        "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/datahyena~investor-vc-data/runs": {
      "post": {
        "operationId": "runs-sync-datahyena-investor-vc-data",
        "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/datahyena~investor-vc-data/run-sync": {
      "post": {
        "operationId": "run-sync-datahyena-investor-vc-data",
        "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": {
          "maxItems": {
            "title": "Max records",
            "minimum": 1,
            "type": "integer",
            "description": "Maximum records to fetch. You are charged per record returned.",
            "default": 100
          },
          "search": {
            "title": "Search keyword",
            "type": "string",
            "description": "Search by name or domain."
          },
          "country": {
            "title": "HQ country",
            "enum": [
              "AE",
              "AR",
              "AT",
              "AU",
              "BD",
              "BE",
              "BR",
              "BS",
              "CA",
              "CH",
              "CL",
              "CN",
              "CO",
              "CY",
              "CZ",
              "DE",
              "DK",
              "EE",
              "EG",
              "ES",
              "FI",
              "FR",
              "GB",
              "GR",
              "HK",
              "HU",
              "ID",
              "IE",
              "IL",
              "IN",
              "IT",
              "JP",
              "KE",
              "KR",
              "LT",
              "LU",
              "LV",
              "MX",
              "MY",
              "NG",
              "NL",
              "NO",
              "NZ",
              "PH",
              "PK",
              "PL",
              "PT",
              "RO",
              "RU",
              "SA",
              "SE",
              "SG",
              "TH",
              "TR",
              "TW",
              "UA",
              "US",
              "VN",
              "ZA",
              "unknown"
            ],
            "type": "string",
            "description": "Filter by company HQ country. Pick \"Not disclosed\" for companies whose HQ country we never established. They are excluded from any other country filter."
          },
          "type": {
            "title": "Investor type",
            "enum": [
              "vc",
              "angel",
              "cvc",
              "pe",
              "growth",
              "accelerator",
              "family_office",
              "syndicate",
              "unknown"
            ],
            "type": "string",
            "description": "Filter by investor type."
          },
          "hasFirmographics": {
            "title": "Only investors with firmographics",
            "type": "boolean",
            "description": "Return only investors we have resolved a website and type for. Excludes individual angels and firms we could not identify."
          },
          "minRoundUsd": {
            "title": "Minimum round participated in (USD)",
            "type": "integer",
            "description": "Only investors that have backed at least one round at or above this amount. Finds investors writing cheques at your size, including the ones we hold no type label for."
          },
          "minRounds": {
            "title": "Minimum rounds participated in",
            "type": "integer",
            "description": "Only investors that have participated in at least this many rounds. Separates repeat backers from one-offs."
          },
          "activeSince": {
            "title": "Active since",
            "type": "string",
            "description": "Only investors whose most recent round was announced on or after this date (YYYY-MM-DD)."
          },
          "investsIn": {
            "title": "Invests in (countries)",
            "uniqueItems": true,
            "type": "array",
            "description": "Only investors that have funded companies headquartered in these countries. Filters on where an investor actually deploys rather than where it is registered, and covers far more of the database.",
            "items": {
              "type": "string",
              "enum": [
                "AE",
                "AR",
                "AT",
                "AU",
                "BD",
                "BE",
                "BR",
                "BS",
                "CA",
                "CH",
                "CL",
                "CN",
                "CO",
                "CY",
                "CZ",
                "DE",
                "DK",
                "EE",
                "EG",
                "ES",
                "FI",
                "FR",
                "GB",
                "GR",
                "HK",
                "HU",
                "ID",
                "IE",
                "IL",
                "IN",
                "IT",
                "JP",
                "KE",
                "KR",
                "LT",
                "LU",
                "LV",
                "MX",
                "MY",
                "NG",
                "NL",
                "NO",
                "NZ",
                "PH",
                "PK",
                "PL",
                "PT",
                "RO",
                "RU",
                "SA",
                "SE",
                "SG",
                "TH",
                "TR",
                "TW",
                "UA",
                "US",
                "VN",
                "ZA"
              ],
              "enumTitles": [
                "United Arab Emirates",
                "Argentina",
                "Austria",
                "Australia",
                "Bangladesh",
                "Belgium",
                "Brazil",
                "Bahamas",
                "Canada",
                "Switzerland",
                "Chile",
                "China",
                "Colombia",
                "Cyprus",
                "Czechia",
                "Germany",
                "Denmark",
                "Estonia",
                "Egypt",
                "Spain",
                "Finland",
                "France",
                "United Kingdom",
                "Greece",
                "Hong Kong",
                "Hungary",
                "Indonesia",
                "Ireland",
                "Israel",
                "India",
                "Italy",
                "Japan",
                "Kenya",
                "South Korea",
                "Lithuania",
                "Luxembourg",
                "Latvia",
                "Mexico",
                "Malaysia",
                "Nigeria",
                "Netherlands",
                "Norway",
                "New Zealand",
                "Philippines",
                "Pakistan",
                "Poland",
                "Portugal",
                "Romania",
                "Russia",
                "Saudi Arabia",
                "Sweden",
                "Singapore",
                "Thailand",
                "Turkey",
                "Taiwan",
                "Ukraine",
                "United States",
                "Vietnam",
                "South Africa"
              ]
            }
          },
          "cursor": {
            "title": "Resume cursor",
            "type": "string",
            "description": "Resume from a previous run's NEXT_CURSOR (saved in the run's key-value store) to paginate ahead. Leave empty to start from the newest records."
          }
        }
      },
      "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
                  }
                }
              }
            }
          }
        }
      }
    }
  }
}