{
  "openapi": "3.0.1",
  "info": {
    "title": "Startup Scraper",
    "description": "Collect source-linked startup profiles, jobs, and financing filings. Search profiles by keyword, URL, or ID, then filter jobs by pay or work setting and filings by reported amount.",
    "version": "0.0",
    "x-build-id": "HJpIdycqcYKPTAfgw"
  },
  "servers": [
    {
      "url": "https://api.apify.com/v2"
    }
  ],
  "paths": {
    "/acts/maximedupre~startup-scraper/run-sync-get-dataset-items": {
      "post": {
        "operationId": "run-sync-get-dataset-items-maximedupre-startup-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/maximedupre~startup-scraper/runs": {
      "post": {
        "operationId": "runs-sync-maximedupre-startup-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/maximedupre~startup-scraper/run-sync": {
      "post": {
        "operationId": "run-sync-maximedupre-startup-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": [
          "target"
        ],
        "properties": {
          "target": {
            "title": "Target",
            "enum": [
              "startupProfiles",
              "startupJobs",
              "financingFilings"
            ],
            "type": "string",
            "description": "Choose the kind of public startup data to collect in this run."
          },
          "profileKeyword": {
            "title": "Keyword",
            "type": "string",
            "description": "Find startups whose name or description contains this word or phrase. Leave it empty when using profile URLs or IDs."
          },
          "startupUrlsOrIds": {
            "title": "Startup profile URLs or IDs",
            "type": "array",
            "description": "Add one startup profile URL or source ID per line for direct lookups. Use this for a large list of startups.",
            "items": {
              "type": "string"
            }
          },
          "batches": {
            "title": "Batches",
            "type": "array",
            "description": "Keep startups from these batch names. Add one batch name per line.",
            "items": {
              "type": "string"
            }
          },
          "hiringState": {
            "title": "Current hiring",
            "enum": [
              "any",
              "hiring",
              "notHiring"
            ],
            "type": "string",
            "description": "Keep startups with this current-hiring state. Choose Any to turn off this filter."
          },
          "lifecycleStatuses": {
            "title": "Lifecycle statuses",
            "type": "array",
            "description": "Keep startups with one of these source status values. Add one value per line.",
            "items": {
              "type": "string"
            }
          },
          "companySizes": {
            "title": "Company sizes",
            "type": "array",
            "description": "Keep startups with one of these source company-size values. Add one value per line.",
            "items": {
              "type": "string"
            }
          },
          "topCompanyOnly": {
            "title": "Top companies only",
            "type": "boolean",
            "description": "Keep only startups that the source marks as top companies."
          },
          "locations": {
            "title": "Locations",
            "type": "array",
            "description": "Keep startups whose source location matches one of these values. Add one value per line.",
            "items": {
              "type": "string"
            }
          },
          "regions": {
            "title": "Regions",
            "type": "array",
            "description": "Keep startups whose source region matches one of these values. Add one value per line.",
            "items": {
              "type": "string"
            }
          },
          "markets": {
            "title": "Markets",
            "type": "array",
            "description": "Keep startups that match one of these source market values. Add one value per line.",
            "items": {
              "type": "string"
            }
          },
          "technologies": {
            "title": "Technologies",
            "type": "array",
            "description": "Keep startups that match one of these source technology values. Add one value per line.",
            "items": {
              "type": "string"
            }
          },
          "tags": {
            "title": "Tags",
            "type": "array",
            "description": "Keep startups with one of these source tags. Add one tag per line.",
            "items": {
              "type": "string"
            }
          },
          "remoteStatus": {
            "title": "Remote status",
            "enum": [
              "any",
              "remote",
              "hybrid",
              "onsite"
            ],
            "type": "string",
            "description": "Keep jobs with this work setting. Job results can include the role, pay, company, and posting time when the source provides them."
          },
          "minimumSalary": {
            "title": "Minimum salary",
            "minimum": 0,
            "type": "number",
            "description": "Keep jobs with pay at or above this amount. Use the amount shown by the source."
          },
          "maximumSalary": {
            "title": "Maximum salary",
            "minimum": 0,
            "type": "number",
            "description": "Keep jobs with pay at or below this amount. Use the amount shown by the source."
          },
          "filingDateFrom": {
            "title": "Filing date from",
            "pattern": "^\\d{4}-\\d{2}-\\d{2}$",
            "type": "string",
            "description": "Keep filings dated on or after this date. Use YYYY-MM-DD. Results are ordered by reported amount, highest first."
          },
          "filingDateTo": {
            "title": "Filing date to",
            "pattern": "^\\d{4}-\\d{2}-\\d{2}$",
            "type": "string",
            "description": "Keep filings dated on or before this date. Use YYYY-MM-DD."
          },
          "issuers": {
            "title": "Issuers",
            "type": "array",
            "description": "Keep filings from these issuer names. Add one name per line.",
            "items": {
              "type": "string"
            }
          },
          "states": {
            "title": "Issuer states",
            "type": "array",
            "description": "Keep filings from issuers in these states. Add one state per line.",
            "items": {
              "type": "string"
            }
          },
          "securityTypes": {
            "title": "Security types",
            "type": "array",
            "description": "Keep filings with one of these source security types. Add one value per line.",
            "items": {
              "type": "string"
            }
          },
          "exemptions": {
            "title": "Exemptions",
            "type": "array",
            "description": "Keep filings with one of these source exemptions. Add one value per line.",
            "items": {
              "type": "string"
            }
          },
          "amendmentStatus": {
            "title": "Amendment status",
            "enum": [
              "any",
              "original",
              "amended"
            ],
            "type": "string",
            "description": "Choose original or amended filings, or choose Any to skip this filter."
          },
          "minimumReportedAmount": {
            "title": "Minimum reported amount",
            "minimum": 0,
            "type": "number",
            "description": "Keep filings with a reported amount at or above this value."
          },
          "minimumInvestorCount": {
            "title": "Minimum reported investors",
            "minimum": 0,
            "type": "integer",
            "description": "Keep filings with at least this many reported investors."
          },
          "maximumInvestorCount": {
            "title": "Maximum reported investors",
            "minimum": 0,
            "type": "integer",
            "description": "Keep filings with no more than this many reported investors."
          },
          "industries": {
            "title": "Industries",
            "type": "array",
            "description": "For Startup profiles and Financing filings, keep results that match at least one industry. Add one industry per line.",
            "items": {
              "type": "string"
            }
          },
          "maxItems": {
            "title": "Actor Work Limit",
            "minimum": 1,
            "type": "integer",
            "description": "Stop after this many records. Leave it empty to return all available results until the source is exhausted."
          },
          "__isDebug": {
            "title": "Debug mode",
            "type": "boolean",
            "description": "Internal debug switch."
          },
          "__concurrency": {
            "title": "Concurrency",
            "minimum": 1,
            "type": "integer",
            "description": "Internal concurrency setting.",
            "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
                  }
                }
              }
            }
          }
        }
      }
    }
  }
}