Wellfound Premium Jobs Scraper avatar

Wellfound Premium Jobs Scraper

Try for free

3 days trial then $24.99/month - No credit card required now

Go to Store
Wellfound Premium Jobs Scraper

Wellfound Premium Jobs Scraper

radeance/wellfound-job-listings-scraper
Try for free

3 days trial then $24.99/month - No credit card required now

Wellfound jobs scraper - Extract data like job title, description, salary range, location, job link and company socials. Specify the search based on job title, location or customized via URL. Supports search and URL lists. Download your data as HTML Table, JSON, JSON-L, CSV, Excel, XML, RSS

You can access the Wellfound Premium Jobs Scraper programmatically from your own applications by using the Apify API. You can choose the language preference from below. To use the Apify API, you’ll need an Apify account and your API token, found in Integrations settings in Apify Console.

1{
2  "openapi": "3.0.1",
3  "info": {
4    "version": "0.0",
5    "x-build-id": "gxu39Ry2ZM2xIIsOX"
6  },
7  "servers": [
8    {
9      "url": "https://api.apify.com/v2"
10    }
11  ],
12  "paths": {
13    "/acts/radeance~wellfound-job-listings-scraper/run-sync-get-dataset-items": {
14      "post": {
15        "operationId": "run-sync-get-dataset-items-radeance-wellfound-job-listings-scraper",
16        "x-openai-isConsequential": false,
17        "summary": "Executes an Actor, waits for its completion, and returns Actor's dataset items in response.",
18        "tags": [
19          "Run Actor"
20        ],
21        "requestBody": {
22          "required": true,
23          "content": {
24            "application/json": {
25              "schema": {
26                "$ref": "#/components/schemas/inputSchema"
27              }
28            }
29          }
30        },
31        "parameters": [
32          {
33            "name": "token",
34            "in": "query",
35            "required": true,
36            "schema": {
37              "type": "string"
38            },
39            "description": "Enter your Apify token here"
40          }
41        ],
42        "responses": {
43          "200": {
44            "description": "OK"
45          }
46        }
47      }
48    },
49    "/acts/radeance~wellfound-job-listings-scraper/runs": {
50      "post": {
51        "operationId": "runs-sync-radeance-wellfound-job-listings-scraper",
52        "x-openai-isConsequential": false,
53        "summary": "Executes an Actor and returns information about the initiated run in response.",
54        "tags": [
55          "Run Actor"
56        ],
57        "requestBody": {
58          "required": true,
59          "content": {
60            "application/json": {
61              "schema": {
62                "$ref": "#/components/schemas/inputSchema"
63              }
64            }
65          }
66        },
67        "parameters": [
68          {
69            "name": "token",
70            "in": "query",
71            "required": true,
72            "schema": {
73              "type": "string"
74            },
75            "description": "Enter your Apify token here"
76          }
77        ],
78        "responses": {
79          "200": {
80            "description": "OK",
81            "content": {
82              "application/json": {
83                "schema": {
84                  "$ref": "#/components/schemas/runsResponseSchema"
85                }
86              }
87            }
88          }
89        }
90      }
91    },
92    "/acts/radeance~wellfound-job-listings-scraper/run-sync": {
93      "post": {
94        "operationId": "run-sync-radeance-wellfound-job-listings-scraper",
95        "x-openai-isConsequential": false,
96        "summary": "Executes an Actor, waits for completion, and returns the OUTPUT from Key-value store in response.",
97        "tags": [
98          "Run Actor"
99        ],
100        "requestBody": {
101          "required": true,
102          "content": {
103            "application/json": {
104              "schema": {
105                "$ref": "#/components/schemas/inputSchema"
106              }
107            }
108          }
109        },
110        "parameters": [
111          {
112            "name": "token",
113            "in": "query",
114            "required": true,
115            "schema": {
116              "type": "string"
117            },
118            "description": "Enter your Apify token here"
119          }
120        ],
121        "responses": {
122          "200": {
123            "description": "OK"
124          }
125        }
126      }
127    }
128  },
129  "components": {
130    "schemas": {
131      "inputSchema": {
132        "type": "object",
133        "properties": {
134          "job_title": {
135            "title": "Job Title",
136            "enum": [
137              "software-engineer",
138              "data-scientist",
139              "data-engineer",
140              "data-analyst",
141              "engineering-manager",
142              "artificial-intelligence-engineer",
143              "machine-learning-engineer",
144              "product-manager",
145              "backend-engineer",
146              "mobile-engineer",
147              "product-designer",
148              "frontend-engineer",
149              "full-stack-engineer",
150              "designer",
151              "software-architect",
152              "devops-engineer"
153            ],
154            "type": "string",
155            "description": "Select desired job title",
156            "default": "software-engineer"
157          },
158          "job_location": {
159            "title": "Job Location",
160            "enum": [
161              "remote",
162              "new-york",
163              "san-francisco",
164              "los-angeles",
165              "berlin",
166              "amsterdam",
167              "paris",
168              "madrid",
169              "barcelona",
170              "london",
171              "dublin",
172              "austin",
173              "seattle",
174              "boston",
175              "chicago",
176              "denver",
177              "district-of-columbia"
178            ],
179            "type": "string",
180            "description": "Select desired job location",
181            "default": "new-york"
182          },
183          "custom_job_title": {
184            "title": "Custom Job Title",
185            "type": "string",
186            "description": "Enter a custom job title to search for. If you leave this field empty, the actor will use the job title selected above."
187          },
188          "custom_job_location": {
189            "title": "Custom Job Location",
190            "type": "string",
191            "description": "Enter a custom job location to search for. If you leave this field empty, the actor will use the job location selected above."
192          },
193          "last_x_days": {
194            "title": "Scrape last x days",
195            "minimum": 1,
196            "maximum": 1000,
197            "type": "integer",
198            "description": "Returns only the jobs that got posted the last x days. Make sure to use a high max_page number if you use a high value here. Defaults to 365",
199            "default": 365
200          },
201          "max_items": {
202            "title": "Max Items",
203            "minimum": 1,
204            "maximum": 10000,
205            "type": "integer",
206            "description": "The maximum number of items to scrape. Defaults to 100. If there are no more items to scrape, the actor will stop even if this number is not reached. If you want to scrape all pages, set it to a high number like 1000.",
207            "default": 100
208          },
209          "us_date_format": {
210            "title": "Use US date formats",
211            "type": "boolean",
212            "description": "If checked, dates will be formatted in US date-time format. If unchecked, the date format will be in the international format.",
213            "default": true
214          },
215          "url": {
216            "title": "URL of the page",
217            "type": "string",
218            "description": "Specific job listings URL from wellfound.com"
219          },
220          "max_pages": {
221            "title": "Max pages",
222            "minimum": 1,
223            "maximum": 1000,
224            "type": "integer",
225            "description": "The maximum number pages to crawl. It includes the start URLs, pagination pages. The crawler will automatically finish after reaching this number. If not provided, the crawler will only scrape from the start URL. Defaults to 5",
226            "default": 5
227          },
228          "page_offset": {
229            "title": "Offset pages",
230            "minimum": 1,
231            "maximum": 1000,
232            "type": "integer",
233            "description": "The page number the scraper should scrape from. Defaults to 1",
234            "default": 1
235          },
236          "proxySettings": {
237            "title": "Proxy configuration",
238            "type": "object",
239            "description": "Select proxies to be used by your crawler.",
240            "default": {
241              "apifyProxyGroups": [
242                "RESIDENTIAL"
243              ]
244            }
245          }
246        }
247      },
248      "runsResponseSchema": {
249        "type": "object",
250        "properties": {
251          "data": {
252            "type": "object",
253            "properties": {
254              "id": {
255                "type": "string"
256              },
257              "actId": {
258                "type": "string"
259              },
260              "userId": {
261                "type": "string"
262              },
263              "startedAt": {
264                "type": "string",
265                "format": "date-time",
266                "example": "2025-01-08T00:00:00.000Z"
267              },
268              "finishedAt": {
269                "type": "string",
270                "format": "date-time",
271                "example": "2025-01-08T00:00:00.000Z"
272              },
273              "status": {
274                "type": "string",
275                "example": "READY"
276              },
277              "meta": {
278                "type": "object",
279                "properties": {
280                  "origin": {
281                    "type": "string",
282                    "example": "API"
283                  },
284                  "userAgent": {
285                    "type": "string"
286                  }
287                }
288              },
289              "stats": {
290                "type": "object",
291                "properties": {
292                  "inputBodyLen": {
293                    "type": "integer",
294                    "example": 2000
295                  },
296                  "rebootCount": {
297                    "type": "integer",
298                    "example": 0
299                  },
300                  "restartCount": {
301                    "type": "integer",
302                    "example": 0
303                  },
304                  "resurrectCount": {
305                    "type": "integer",
306                    "example": 0
307                  },
308                  "computeUnits": {
309                    "type": "integer",
310                    "example": 0
311                  }
312                }
313              },
314              "options": {
315                "type": "object",
316                "properties": {
317                  "build": {
318                    "type": "string",
319                    "example": "latest"
320                  },
321                  "timeoutSecs": {
322                    "type": "integer",
323                    "example": 300
324                  },
325                  "memoryMbytes": {
326                    "type": "integer",
327                    "example": 1024
328                  },
329                  "diskMbytes": {
330                    "type": "integer",
331                    "example": 2048
332                  }
333                }
334              },
335              "buildId": {
336                "type": "string"
337              },
338              "defaultKeyValueStoreId": {
339                "type": "string"
340              },
341              "defaultDatasetId": {
342                "type": "string"
343              },
344              "defaultRequestQueueId": {
345                "type": "string"
346              },
347              "buildNumber": {
348                "type": "string",
349                "example": "1.0.0"
350              },
351              "containerUrl": {
352                "type": "string"
353              },
354              "usage": {
355                "type": "object",
356                "properties": {
357                  "ACTOR_COMPUTE_UNITS": {
358                    "type": "integer",
359                    "example": 0
360                  },
361                  "DATASET_READS": {
362                    "type": "integer",
363                    "example": 0
364                  },
365                  "DATASET_WRITES": {
366                    "type": "integer",
367                    "example": 0
368                  },
369                  "KEY_VALUE_STORE_READS": {
370                    "type": "integer",
371                    "example": 0
372                  },
373                  "KEY_VALUE_STORE_WRITES": {
374                    "type": "integer",
375                    "example": 1
376                  },
377                  "KEY_VALUE_STORE_LISTS": {
378                    "type": "integer",
379                    "example": 0
380                  },
381                  "REQUEST_QUEUE_READS": {
382                    "type": "integer",
383                    "example": 0
384                  },
385                  "REQUEST_QUEUE_WRITES": {
386                    "type": "integer",
387                    "example": 0
388                  },
389                  "DATA_TRANSFER_INTERNAL_GBYTES": {
390                    "type": "integer",
391                    "example": 0
392                  },
393                  "DATA_TRANSFER_EXTERNAL_GBYTES": {
394                    "type": "integer",
395                    "example": 0
396                  },
397                  "PROXY_RESIDENTIAL_TRANSFER_GBYTES": {
398                    "type": "integer",
399                    "example": 0
400                  },
401                  "PROXY_SERPS": {
402                    "type": "integer",
403                    "example": 0
404                  }
405                }
406              },
407              "usageTotalUsd": {
408                "type": "number",
409                "example": 0.00005
410              },
411              "usageUsd": {
412                "type": "object",
413                "properties": {
414                  "ACTOR_COMPUTE_UNITS": {
415                    "type": "integer",
416                    "example": 0
417                  },
418                  "DATASET_READS": {
419                    "type": "integer",
420                    "example": 0
421                  },
422                  "DATASET_WRITES": {
423                    "type": "integer",
424                    "example": 0
425                  },
426                  "KEY_VALUE_STORE_READS": {
427                    "type": "integer",
428                    "example": 0
429                  },
430                  "KEY_VALUE_STORE_WRITES": {
431                    "type": "number",
432                    "example": 0.00005
433                  },
434                  "KEY_VALUE_STORE_LISTS": {
435                    "type": "integer",
436                    "example": 0
437                  },
438                  "REQUEST_QUEUE_READS": {
439                    "type": "integer",
440                    "example": 0
441                  },
442                  "REQUEST_QUEUE_WRITES": {
443                    "type": "integer",
444                    "example": 0
445                  },
446                  "DATA_TRANSFER_INTERNAL_GBYTES": {
447                    "type": "integer",
448                    "example": 0
449                  },
450                  "DATA_TRANSFER_EXTERNAL_GBYTES": {
451                    "type": "integer",
452                    "example": 0
453                  },
454                  "PROXY_RESIDENTIAL_TRANSFER_GBYTES": {
455                    "type": "integer",
456                    "example": 0
457                  },
458                  "PROXY_SERPS": {
459                    "type": "integer",
460                    "example": 0
461                  }
462                }
463              }
464            }
465          }
466        }
467      }
468    }
469  }
470}

Wellfound Premium Jobs Scraper OpenAPI definition

OpenAPI is a standard for designing and describing RESTful APIs, allowing developers to define API structure, endpoints, and data formats in a machine-readable way. It simplifies API development, integration, and documentation.

OpenAPI is effective when used with AI agents and GPTs by standardizing how these systems interact with various APIs, for reliable integrations and efficient communication.

By defining machine-readable API specifications, OpenAPI allows AI models like GPTs to understand and use varied data sources, improving accuracy. This accelerates development, reduces errors, and provides context-aware responses, making OpenAPI a core component for AI applications.

You can download the OpenAPI definitions for Wellfound Premium Jobs Scraper from the options below:

If you’d like to learn more about how OpenAPI powers GPTs, read our blog post.

You can also check out our other API clients:

Developer
Maintained by Community

Actor Metrics

  • 24 monthly users

  • 8 stars

  • 99% runs succeeded

  • 21 hours response time

  • Created in Jun 2024

  • Modified 2 months ago

Categories