{
  "openapi": "3.0.1",
  "info": {
    "title": "TheHub.io Scraper: Startup & Investor Database",
    "description": "Extract 10,000+ Nordic startups and 1,000+ investors from TheHub.io. Get contact details, funding stages, team size, industries, and SDG goals. Perfect for lead gen and VC research.",
    "version": "0.1",
    "x-build-id": "DBX0QvdeOgqqvuThy"
  },
  "servers": [
    {
      "url": "https://api.apify.com/v2"
    }
  ],
  "paths": {
    "/acts/alaricus~the-hub-io-scraper/run-sync-get-dataset-items": {
      "post": {
        "operationId": "run-sync-get-dataset-items-alaricus-the-hub-io-scraper",
        "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/alaricus~the-hub-io-scraper/runs": {
      "post": {
        "operationId": "runs-sync-alaricus-the-hub-io-scraper",
        "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/alaricus~the-hub-io-scraper/run-sync": {
      "post": {
        "operationId": "run-sync-alaricus-the-hub-io-scraper",
        "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",
          "max_results"
        ],
        "properties": {
          "mode": {
            "title": "Scrape Mode",
            "enum": [
              "startups",
              "investors"
            ],
            "type": "string",
            "description": "Choose whether you want to collect Startups or Investors.",
            "default": "startups"
          },
          "max_results": {
            "title": "Max Results",
            "minimum": 1,
            "type": "integer",
            "description": "Maximum number of items to scrape.",
            "default": 100
          },
          "startup_section": {
            "title": "Startup Filter Section",
            "type": "string",
            "description": "Filters used only for Startup mode."
          },
          "startup_countries": {
            "title": "Startup Countries",
            "type": "array",
            "description": "Select countries for startups.",
            "items": {
              "type": "string",
              "enum": [
                "Denmark",
                "Finland",
                "Iceland",
                "Norway",
                "Sweden"
              ],
              "enumTitles": [
                "Denmark",
                "Finland",
                "Iceland",
                "Norway",
                "Sweden"
              ]
            }
          },
          "startup_industries": {
            "title": "Industries",
            "type": "array",
            "description": "Business sectors for startups.",
            "items": {
              "type": "string",
              "enum": [
                "advertising",
                "agriculture",
                "blockchain",
                "consumer_goods",
                "education",
                "green_tech",
                "fashion",
                "fintech",
                "food",
                "gaming",
                "healthcare",
                "hospitality",
                "it_software",
                "iot",
                "jobs",
                "legal",
                "manufacturing",
                "maritime",
                "marketplace",
                "entertainment",
                "music",
                "retail",
                "robotics",
                "saas",
                "sales",
                "science",
                "service",
                "sports",
                "telecommunications",
                "travel"
              ],
              "enumTitles": [
                "Advertising",
                "Agriculture",
                "Blockchain",
                "Consumer Goods",
                "Education",
                "Energy & GreenTech",
                "Fashion & Living",
                "Fintech",
                "Food & Beverage",
                "Gaming",
                "Healthcare & Life Science",
                "Hospitality, Hosting",
                "IT & Software",
                "IoT",
                "Jobs & Recruitment",
                "Legal",
                "Manufacturing",
                "Maritime & Transport",
                "Marketplace & eCommerce",
                "Media & Entertainment",
                "Music & Audio",
                "Retail",
                "Robotics",
                "SaaS",
                "Sales & Marketing",
                "Science & Engineering",
                "Service",
                "Sports",
                "Telecommunications",
                "Travel & Tourism"
              ]
            }
          },
          "startup_stage": {
            "title": "Development / Investment Stage",
            "type": "array",
            "description": "Filter by maturity (Idea to Growth).",
            "items": {
              "type": "string",
              "enum": [
                "idea",
                "prototype",
                "go_to_market",
                "growth"
              ],
              "enumTitles": [
                "Idea",
                "Prototype",
                "Go to Market",
                "Growth"
              ]
            }
          },
          "number_of_employees": {
            "title": "Number of Employees",
            "type": "array",
            "description": "Filter by team size.",
            "items": {
              "type": "string",
              "enum": [
                "employees_1_10",
                "employees_11_50",
                "employees_51_100",
                "employees_101_200",
                "employees_200_or_more"
              ],
              "enumTitles": [
                "1-10 Employees",
                "11-50 Employees",
                "51-100 Employees",
                "101-200 Employees",
                "200+ Employees"
              ]
            }
          },
          "funding": {
            "title": "Funding Status",
            "type": "array",
            "description": "Is the startup looking for investment?",
            "items": {
              "type": "string",
              "enum": [
                "looking",
                "not_looking"
              ],
              "enumTitles": [
                "Looking for funding",
                "Currently not looking for funding"
              ]
            }
          },
          "sustainable_development_goals": {
            "title": "Sustainable Development Goals (SDGs)",
            "type": "array",
            "description": "Filter by impact goals.",
            "items": {
              "type": "string",
              "enum": [
                "no_poverty",
                "zero_hunger",
                "good_health",
                "quality_education",
                "gender_equality",
                "clean_water",
                "clean_energy",
                "economic_growth",
                "industry",
                "reduced_inequalities",
                "sustainable_cities",
                "responsible_consumption",
                "climate_action",
                "life_below_water",
                "life_on_land",
                "peace",
                "partnerships"
              ],
              "enumTitles": [
                "No poverty",
                "Zero hunger",
                "Good health",
                "Quality education",
                "Gender equality",
                "Clean water",
                "Clean energy",
                "Economic growth",
                "Industry/Innovation",
                "Reduced inequalities",
                "Sustainable cities",
                "Responsible consumption",
                "Climate action",
                "Life below water",
                "Life on land",
                "Peace/Justice",
                "Partnerships"
              ]
            }
          },
          "investor_section": {
            "title": "Investor Filter Section",
            "type": "string",
            "description": "Filters used only for Investor mode."
          },
          "investor_countries": {
            "title": "Target Regions",
            "type": "array",
            "description": "Select countries for investors.",
            "items": {
              "type": "string",
              "enum": [
                "Denmark",
                "Finland",
                "Iceland",
                "Norway",
                "Sweden",
                "Other_Europe"
              ],
              "enumTitles": [
                "Denmark",
                "Finland",
                "Iceland",
                "Norway",
                "Sweden",
                "Other Europe"
              ]
            }
          },
          "investor_industries": {
            "title": "Investment Industries",
            "type": "array",
            "description": "Sectors the investor targets.",
            "items": {
              "type": "string",
              "enum": [
                "advertising",
                "agriculture",
                "blockchain",
                "consumer_goods",
                "education",
                "green_tech",
                "fashion",
                "fintech",
                "food",
                "gaming",
                "healthcare",
                "hospitality",
                "it_software",
                "iot",
                "jobs",
                "legal",
                "manufacturing",
                "maritime",
                "marketplace",
                "entertainment",
                "music",
                "retail",
                "robotics",
                "saas",
                "sales",
                "science",
                "service",
                "sports",
                "telecommunications",
                "travel"
              ],
              "enumTitles": [
                "Advertising",
                "Agriculture",
                "Blockchain",
                "Consumer Goods",
                "Education",
                "Energy & GreenTech",
                "Fashion & Living",
                "Fintech",
                "Food & Beverage",
                "Gaming",
                "Healthcare & Life Science",
                "Hospitality",
                "IT & Software",
                "IoT",
                "Jobs & Recruitment",
                "Legal",
                "Manufacturing",
                "Maritime & Transport",
                "Marketplace & eCommerce",
                "Media & Entertainment",
                "Music & Audio",
                "Retail",
                "Robotics",
                "SaaS",
                "Sales & Marketing",
                "Science & Engineering",
                "Service",
                "Sports",
                "Telecommunications",
                "Travel & Tourism"
              ]
            }
          },
          "investor_stage": {
            "title": "Investment Stage",
            "type": "array",
            "description": "Maturity levels the investor funds.",
            "items": {
              "type": "string",
              "enum": [
                "idea",
                "prototype",
                "go_to_market",
                "growth"
              ],
              "enumTitles": [
                "Idea",
                "Prototype",
                "Go to Market",
                "Growth"
              ]
            }
          },
          "investor_type": {
            "title": "Investor Type",
            "type": "array",
            "description": "Filter by type of investment entity.",
            "items": {
              "type": "string",
              "enum": [
                "accelerators",
                "angel",
                "angels",
                "applied_research",
                "bank",
                "crowdfunding",
                "public_funding",
                "ventures",
                "private",
                "family_office",
                "startup_studio"
              ],
              "enumTitles": [
                "Accelerator/Incubator",
                "Angel Investor",
                "Angel Group",
                "Research Funding",
                "Bank Financing",
                "Crowdfunding",
                "Public Funding",
                "VC",
                "Private Funds",
                "Family Office",
                "Startup Studio"
              ]
            }
          },
          "investment_ranges": {
            "title": "Investment Ranges",
            "type": "array",
            "description": "Typical ticket size.",
            "items": {
              "type": "string",
              "enum": [
                "range_under_25k",
                "range_25k_50k",
                "range_50k_100k",
                "range_100k_500k",
                "range_500k_1m",
                "range_1m_5m",
                "range_over_5m"
              ],
              "enumTitles": [
                "€ < 25K",
                "€ 25-50K",
                "€ 50-100K",
                "€ 100-500K",
                "€ 0.5-1M",
                "€ 1-5M",
                "€ > 5M"
              ]
            }
          }
        }
      },
      "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
                  }
                }
              }
            }
          }
        }
      }
    }
  }
}