{
  "openapi": "3.0.1",
  "info": {
    "title": "Wellfound Jobs Scraper — Salary, Stage, Investors & Ratings",
    "description": "Scrape Wellfound (AngelList) startup jobs by role, location or URL. Each row carries salary min/max, equity, remote policy, ATS source and the full description, plus the startup's size, stage, YC / top-investor / recently-funded flags and Glassdoor rating. Detail mode adds funding raised and geo.",
    "version": "0.1",
    "x-build-id": "RAc8WOPWKKwPWVv5b"
  },
  "servers": [
    {
      "url": "https://api.apify.com/v2"
    }
  ],
  "paths": {
    "/acts/scrapersdelight~wellfound-jobs-scraper/run-sync-get-dataset-items": {
      "post": {
        "operationId": "run-sync-get-dataset-items-scrapersdelight-wellfound-jobs-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/scrapersdelight~wellfound-jobs-scraper/runs": {
      "post": {
        "operationId": "runs-sync-scrapersdelight-wellfound-jobs-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/scrapersdelight~wellfound-jobs-scraper/run-sync": {
      "post": {
        "operationId": "run-sync-scrapersdelight-wellfound-jobs-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",
        "properties": {
          "roles": {
            "title": "Role slugs",
            "type": "array",
            "description": "Wellfound role slugs, e.g. `software-engineer`, `product-manager`, `data-scientist`, `sales-manager`, `growth-marketer`. These are the URL segments from wellfound.com/role/<slug>. Live sizes measured 2026-09-02: software-engineer 4,964 jobs · product-manager 4,434 · sales-manager 2,849 · operations-manager 2,527 · account-manager 1,830 · data-analyst 1,022 · product-designer 754 · hr-manager 455 · growth-marketer 301 · financial-analyst 299 · ui-ux-designer 290 · graphic-designer 189. Slugs outside that list work too (`data-scientist`, `frontend-engineer`).",
            "default": [],
            "items": {
              "type": "string"
            }
          },
          "locations": {
            "title": "Location slugs",
            "type": "array",
            "description": "Wellfound location slugs, e.g. `san-francisco`, `new-york`, `austin`, `boston`, `seattle`, `denver`, `chicago`, `district-of-columbia`, `india`, `united-states`. Combined with the roles above as a cross product: 3 roles x 4 locations = 12 searches. Leave empty to scrape a role across every location.",
            "default": [],
            "items": {
              "type": "string"
            }
          },
          "remoteOnly": {
            "title": "Remote jobs only",
            "type": "boolean",
            "description": "Use Wellfound's remote-only landing page (`/role/r/<slug>`) instead of the all-locations one. Applies only when a role is given without a location. The remote route is a smaller corpus — 1,913 remote software-engineer jobs versus 4,964 overall.",
            "default": false
          },
          "startUrls": {
            "title": "Start URLs (power user)",
            "type": "array",
            "description": "Paste Wellfound landing-page URLs directly — `/role/<role>`, `/role/r/<role>`, `/role/l/<role>/<location>` or `/location/<location>`. Use this for combinations the fields above do not build. Any `?page=` is stripped; pagination is handled for you.",
            "default": [],
            "items": {
              "type": "object",
              "required": [
                "url"
              ],
              "properties": {
                "url": {
                  "type": "string",
                  "title": "URL of a web page",
                  "format": "uri"
                }
              }
            }
          },
          "maxItems": {
            "title": "Max jobs",
            "minimum": 0,
            "type": "integer",
            "description": "Stop after this many unique jobs across all seeds. Duplicates removed across pages are never counted or charged. 0 = no limit (a single role slug can hold ~5,000 jobs, so set this deliberately).",
            "default": 200
          },
          "maxPagesPerSeed": {
            "title": "Max pages per seed",
            "minimum": 0,
            "type": "integer",
            "description": "Cap how deep each seed is crawled. 20 jobs per page. 0 = crawl to the seed's own last page, which the page payload reports (90 pages for /role/software-engineer, 37 for /location/san-francisco).",
            "default": 0
          },
          "fetchJobDetails": {
            "title": "Fetch job detail pages (adds funding, geo, benefits)",
            "type": "boolean",
            "description": "Adds one request per job to open its detail page, which carries the startup's FUNDING card (total raised, number of rounds, latest round name/date/amount), the company's own website URL, structured salary min/max with its period, the exact ISO posting date, industry, perks, visa-sponsorship and relocation policy and geo coordinates. Billed as a separate cheaper event. Off by default because it multiplies the request count.",
            "default": false
          },
          "detailConcurrency": {
            "title": "Detail fetch concurrency",
            "minimum": 1,
            "maximum": 15,
            "type": "integer",
            "description": "Parallel detail-page requests. Only used when detail fetching is on. Higher is faster but leans harder on the proxy pool.",
            "default": 5
          },
          "includeDescription": {
            "title": "Include the full job description",
            "type": "boolean",
            "description": "Wellfound ships the complete markdown job description on the list route at no extra request — typically 2-4 KB per job. Switch off for a lean dataset.",
            "default": true
          },
          "postedWithinDays": {
            "title": "Posted within (days)",
            "minimum": 0,
            "type": "integer",
            "description": "Only jobs whose live-start date is inside the last N days. 0 = any age.",
            "default": 0
          },
          "minSalary": {
            "title": "Minimum salary",
            "minimum": 0,
            "type": "integer",
            "description": "Only jobs whose top-of-range salary is at least this. Compared in the currency Wellfound printed (most listings are USD; some are EUR or INR), so use it on single-currency searches. 0 = no minimum.",
            "default": 0
          },
          "onlyWithSalary": {
            "title": "Only jobs that publish a salary",
            "type": "boolean",
            "description": "Drop listings with no compensation range. About 91% of listings publish one.",
            "default": false
          },
          "remoteFilter": {
            "title": "Remote / onsite",
            "enum": [
              "any",
              "remote",
              "onsite"
            ],
            "type": "string",
            "description": "Filter the returned rows by the job's own remote flag. Independent of the remote-only landing page above.",
            "default": "any"
          },
          "companyStage": {
            "title": "Company stage",
            "enum": [
              "any",
              "early_stage",
              "growth_stage",
              "scale_stage"
            ],
            "type": "string",
            "description": "Wellfound's own stage badge on the hiring startup. Measured fill: 85% of jobs carry a stage.",
            "default": "any"
          },
          "onlyRecentlyFunded": {
            "title": "Only recently funded startups",
            "type": "boolean",
            "description": "Keep only jobs at companies carrying Wellfound's `Recently funded` badge — 'raised funding in the past six months'. A hiring trigger for GTM lists.",
            "default": false
          },
          "onlyYcFunded": {
            "title": "Only Y Combinator startups",
            "type": "boolean",
            "description": "Keep only jobs at companies carrying the `YC Funded` badge.",
            "default": false
          },
          "proxyConfiguration": {
            "title": "Proxy configuration",
            "type": "object",
            "description": "RESIDENTIAL + US is the default and is the measured-correct choice: over 12 fresh sessions on one URL, datacenter proxies came back clean 3 times out of 12 (75% Cloudflare 403) while residential came back clean 10 out of 12 with zero 403s. Datacenter or no proxy will mostly be blocked. Your own proxy URLs work too.",
            "default": {
              "useApifyProxy": true,
              "apifyProxyGroups": [
                "RESIDENTIAL"
              ],
              "apifyProxyCountry": "US"
            }
          }
        }
      },
      "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
                  }
                }
              }
            }
          }
        }
      }
    }
  }
}