{
  "openapi": "3.0.1",
  "info": {
    "title": "startup-job-scraper",
    "description": "Scrape and normalize startup jobs from Wellfound and Y Combinator’s Work at a Startup. Filter by role, title, location, employment type, experience, salary, and more. Get clean, structured job data for recruiting, job boards, market research, and AI pipelines.",
    "version": "0.0",
    "x-build-id": "N9pSiOYwx3MXxvxrq"
  },
  "servers": [
    {
      "url": "https://api.apify.com/v2"
    }
  ],
  "paths": {
    "/acts/oseni03~startup-job-scraper/run-sync-get-dataset-items": {
      "post": {
        "operationId": "run-sync-get-dataset-items-oseni03-startup-job-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/oseni03~startup-job-scraper/runs": {
      "post": {
        "operationId": "runs-sync-oseni03-startup-job-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/oseni03~startup-job-scraper/run-sync": {
      "post": {
        "operationId": "run-sync-oseni03-startup-job-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": [
          "sources",
          "maxJobs"
        ],
        "properties": {
          "role": {
            "title": "Role",
            "enum": [
              "Backend Engineer",
              "Frontend Engineer",
              "Full Stack Engineer",
              "Mobile Engineer",
              "DevOps / SRE",
              "Data Engineer",
              "Machine Learning Engineer",
              "Engineering Manager",
              "Product Manager",
              "Designer",
              "Sales",
              "Marketing",
              "Support"
            ],
            "type": "string",
            "description": "Broad role category. Mapped internally to each site's own filter vocabulary. Leave unset to search all roles."
          },
          "titleKeyword": {
            "title": "Title keyword (optional refinement)",
            "type": "string",
            "description": "Additional substring match against the job title, applied on top of the Role filter. Useful for narrowing further, e.g. 'Senior' or 'Founding'."
          },
          "location": {
            "title": "Location",
            "type": "string",
            "description": "City or region, e.g. 'New York'. Used directly in Wellfound's URL path; used as a substring match against job location for Work at a Startup."
          },
          "remote": {
            "title": "Remote",
            "enum": [
              "any",
              "yes",
              "no"
            ],
            "type": "string",
            "description": "Filter for remote roles. Only affects Work at a Startup — Wellfound's remote filtering isn't wired up yet.",
            "default": "any"
          },
          "employmentType": {
            "title": "Employment type",
            "enum": [
              "full-time",
              "part-time",
              "internship",
              "contract"
            ],
            "type": "string",
            "description": "Type of employment to filter for. Applies to Work at a Startup only."
          },
          "minExperience": {
            "title": "Min. years experience",
            "minimum": 0,
            "maximum": 30,
            "type": "integer",
            "description": "Minimum years of experience required. Applies to Work at a Startup only.",
            "default": 0
          },
          "companyStage": {
            "title": "Company stage",
            "type": "string",
            "description": "Company funding stage filter, e.g. 'seed', 'series-a', or 'any'. Applies to Work at a Startup only.",
            "default": "any"
          },
          "companySize": {
            "title": "Company size",
            "type": "string",
            "description": "Company size filter, e.g. 'seed' or 'any'. Applies to Work at a Startup only.",
            "default": "any"
          },
          "visaSponsorshipNotRequired": {
            "title": "Exclude jobs requiring US visa sponsorship",
            "type": "boolean",
            "description": "If true, restricts results to roles that don't require US visa sponsorship. Applies to Work at a Startup only.",
            "default": false
          },
          "hasSalary": {
            "title": "Only jobs with salary listed",
            "type": "boolean",
            "description": "If true, restricts results to postings that list a salary range. Applies to Work at a Startup only.",
            "default": false
          },
          "hasEquity": {
            "title": "Only jobs with equity listed",
            "type": "boolean",
            "description": "If true, restricts results to postings that list equity. Applies to Work at a Startup only.",
            "default": false
          },
          "sortBy": {
            "title": "Sort order",
            "enum": [
              "created_desc",
              "created_asc"
            ],
            "type": "string",
            "description": "Sort order applied to results. Applies to Work at a Startup only.",
            "default": "created_desc"
          },
          "sources": {
            "title": "Sources",
            "type": "array",
            "description": "Which job boards to search.",
            "items": {
              "type": "string",
              "enum": [
                "workatastartup",
                "wellfound"
              ]
            },
            "default": [
              "workatastartup",
              "wellfound"
            ]
          },
          "maxJobs": {
            "title": "Max jobs",
            "minimum": 1,
            "maximum": 1000,
            "type": "integer",
            "description": "Maximum number of jobs to return across all selected sources combined.",
            "default": 50
          },
          "proxyConfiguration": {
            "title": "Proxy configuration",
            "type": "object",
            "description": "Optional proxy settings. Recommended for Wellfound if you're getting blocked; usually unnecessary for Work at a Startup.",
            "default": {
              "useApifyProxy": false
            }
          },
          "startPage": {
            "title": "Start page",
            "minimum": 1,
            "type": "integer",
            "description": "Which result page to begin crawling from. Use this to skip pages already covered by a previous run, e.g. set to 6 if a prior run with maxPages=5 already covered pages 1-5. Applies to Wellfound only — ignored by Work at a Startup, which has no real pagination.",
            "default": 1
          },
          "maxPages": {
            "title": "Max pages to crawl",
            "minimum": 1,
            "maximum": 20,
            "type": "integer",
            "description": "How many result pages to paginate through. Hard-capped at 20 regardless of value, to limit blocking risk and cost. Applies to Wellfound only — ignored by Work at a Startup, which has no real pagination.",
            "default": 5
          },
          "skipDuplicates": {
            "title": "Skip jobs seen in previous runs",
            "type": "boolean",
            "description": "If true (default), jobs already returned by a prior run of this actor are excluded from output. If false, all jobs are returned with an added 'is_new' flag.",
            "default": true
          }
        }
      },
      "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
                  }
                }
              }
            }
          }
        }
      }
    }
  }
}