Upwork Job Scraper avatar
Upwork Job Scraper

Pricing

$25.00/month + usage

Go to Store
Upwork Job Scraper

Upwork Job Scraper

Developed by

Neatrat

Maintained by Community

Scrape Upwork jobs without limits 🌟 Bypass CAPTCHAs & apply custom filters.

5.0 (2)

Pricing

$25.00/month + usage

5

Monthly users

18

Runs succeeded

>99%

Response time

22 hours

Last modified

a day ago

You can access the Upwork Job Scraper programmatically from your own applications by using the Apify API. You can also 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": "fcVqf6ofkcxuX5kOG"
6  },
7  "servers": [
8    {
9      "url": "https://api.apify.com/v2"
10    }
11  ],
12  "paths": {
13    "/acts/neatrat~upwork-job-scraper/run-sync-get-dataset-items": {
14      "post": {
15        "operationId": "run-sync-get-dataset-items-neatrat-upwork-job-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/neatrat~upwork-job-scraper/runs": {
50      "post": {
51        "operationId": "runs-sync-neatrat-upwork-job-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/neatrat~upwork-job-scraper/run-sync": {
93      "post": {
94        "operationId": "run-sync-neatrat-upwork-job-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          "query": {
135            "title": "Search Query",
136            "type": "string",
137            "description": "Keywords to search for in Upwork jobs"
138          },
139          "rawUrl": {
140            "title": "Raw URL",
141            "type": "string",
142            "description": "Directly use this Upwork search URL instead of constructing one (must be from upwork.com and include nx/search/jobs)"
143          },
144          "experienceLevel": {
145            "title": "Experience Level",
146            "type": "array",
147            "description": "Filter jobs by required experience level",
148            "items": {
149              "type": "string"
150            }
151          },
152          "jobType": {
153            "title": "Job Type",
154            "type": "array",
155            "description": "Filter jobs by payment type",
156            "items": {
157              "type": "string"
158            }
159          },
160          "fixedPriceRange": {
161            "title": "Fixed Price Range",
162            "minItems": 2,
163            "maxItems": 2,
164            "type": "array",
165            "description": "Range for fixed-price jobs (min and max in USD, e.g. [100, 1000])",
166            "items": {
167              "type": "string"
168            }
169          },
170          "hourlyRateRange": {
171            "title": "Hourly Rate Range",
172            "minItems": 2,
173            "maxItems": 2,
174            "type": "array",
175            "description": "Range for hourly rate jobs (min and max in USD/hour, e.g. [20, 50])",
176            "items": {
177              "type": "string"
178            }
179          },
180          "clientHistory": {
181            "title": "Client History",
182            "type": "array",
183            "description": "Filter by client hiring history",
184            "items": {
185              "type": "string"
186            }
187          },
188          "page": {
189            "title": "Page Number",
190            "minimum": 1,
191            "type": "integer",
192            "description": "Page number to start scraping from",
193            "default": 1
194          },
195          "perPage": {
196            "title": "Results Per Page",
197            "minimum": 10,
198            "type": "integer",
199            "description": "Number of results to display per page",
200            "default": 10
201          },
202          "sort": {
203            "title": "Sort Order",
204            "enum": [
205              "newest",
206              "relevance"
207            ],
208            "type": "string",
209            "description": "How to sort the job listings",
210            "default": "newest"
211          },
212          "maxJobAge": {
213            "title": "Maximum Job Age",
214            "type": "object",
215            "description": "Filter out jobs older than this time"
216          },
217          "cookies": {
218            "title": "Cookies",
219            "type": "array",
220            "description": "Cookies to use for requests (useful for bypassing Upwork's protection)"
221          },
222          "customFilters": {
223            "title": "Custom Filters",
224            "type": "array",
225            "description": "Custom filters to apply to job results"
226          }
227        }
228      },
229      "runsResponseSchema": {
230        "type": "object",
231        "properties": {
232          "data": {
233            "type": "object",
234            "properties": {
235              "id": {
236                "type": "string"
237              },
238              "actId": {
239                "type": "string"
240              },
241              "userId": {
242                "type": "string"
243              },
244              "startedAt": {
245                "type": "string",
246                "format": "date-time",
247                "example": "2025-01-08T00:00:00.000Z"
248              },
249              "finishedAt": {
250                "type": "string",
251                "format": "date-time",
252                "example": "2025-01-08T00:00:00.000Z"
253              },
254              "status": {
255                "type": "string",
256                "example": "READY"
257              },
258              "meta": {
259                "type": "object",
260                "properties": {
261                  "origin": {
262                    "type": "string",
263                    "example": "API"
264                  },
265                  "userAgent": {
266                    "type": "string"
267                  }
268                }
269              },
270              "stats": {
271                "type": "object",
272                "properties": {
273                  "inputBodyLen": {
274                    "type": "integer",
275                    "example": 2000
276                  },
277                  "rebootCount": {
278                    "type": "integer",
279                    "example": 0
280                  },
281                  "restartCount": {
282                    "type": "integer",
283                    "example": 0
284                  },
285                  "resurrectCount": {
286                    "type": "integer",
287                    "example": 0
288                  },
289                  "computeUnits": {
290                    "type": "integer",
291                    "example": 0
292                  }
293                }
294              },
295              "options": {
296                "type": "object",
297                "properties": {
298                  "build": {
299                    "type": "string",
300                    "example": "latest"
301                  },
302                  "timeoutSecs": {
303                    "type": "integer",
304                    "example": 300
305                  },
306                  "memoryMbytes": {
307                    "type": "integer",
308                    "example": 1024
309                  },
310                  "diskMbytes": {
311                    "type": "integer",
312                    "example": 2048
313                  }
314                }
315              },
316              "buildId": {
317                "type": "string"
318              },
319              "defaultKeyValueStoreId": {
320                "type": "string"
321              },
322              "defaultDatasetId": {
323                "type": "string"
324              },
325              "defaultRequestQueueId": {
326                "type": "string"
327              },
328              "buildNumber": {
329                "type": "string",
330                "example": "1.0.0"
331              },
332              "containerUrl": {
333                "type": "string"
334              },
335              "usage": {
336                "type": "object",
337                "properties": {
338                  "ACTOR_COMPUTE_UNITS": {
339                    "type": "integer",
340                    "example": 0
341                  },
342                  "DATASET_READS": {
343                    "type": "integer",
344                    "example": 0
345                  },
346                  "DATASET_WRITES": {
347                    "type": "integer",
348                    "example": 0
349                  },
350                  "KEY_VALUE_STORE_READS": {
351                    "type": "integer",
352                    "example": 0
353                  },
354                  "KEY_VALUE_STORE_WRITES": {
355                    "type": "integer",
356                    "example": 1
357                  },
358                  "KEY_VALUE_STORE_LISTS": {
359                    "type": "integer",
360                    "example": 0
361                  },
362                  "REQUEST_QUEUE_READS": {
363                    "type": "integer",
364                    "example": 0
365                  },
366                  "REQUEST_QUEUE_WRITES": {
367                    "type": "integer",
368                    "example": 0
369                  },
370                  "DATA_TRANSFER_INTERNAL_GBYTES": {
371                    "type": "integer",
372                    "example": 0
373                  },
374                  "DATA_TRANSFER_EXTERNAL_GBYTES": {
375                    "type": "integer",
376                    "example": 0
377                  },
378                  "PROXY_RESIDENTIAL_TRANSFER_GBYTES": {
379                    "type": "integer",
380                    "example": 0
381                  },
382                  "PROXY_SERPS": {
383                    "type": "integer",
384                    "example": 0
385                  }
386                }
387              },
388              "usageTotalUsd": {
389                "type": "number",
390                "example": 0.00005
391              },
392              "usageUsd": {
393                "type": "object",
394                "properties": {
395                  "ACTOR_COMPUTE_UNITS": {
396                    "type": "integer",
397                    "example": 0
398                  },
399                  "DATASET_READS": {
400                    "type": "integer",
401                    "example": 0
402                  },
403                  "DATASET_WRITES": {
404                    "type": "integer",
405                    "example": 0
406                  },
407                  "KEY_VALUE_STORE_READS": {
408                    "type": "integer",
409                    "example": 0
410                  },
411                  "KEY_VALUE_STORE_WRITES": {
412                    "type": "number",
413                    "example": 0.00005
414                  },
415                  "KEY_VALUE_STORE_LISTS": {
416                    "type": "integer",
417                    "example": 0
418                  },
419                  "REQUEST_QUEUE_READS": {
420                    "type": "integer",
421                    "example": 0
422                  },
423                  "REQUEST_QUEUE_WRITES": {
424                    "type": "integer",
425                    "example": 0
426                  },
427                  "DATA_TRANSFER_INTERNAL_GBYTES": {
428                    "type": "integer",
429                    "example": 0
430                  },
431                  "DATA_TRANSFER_EXTERNAL_GBYTES": {
432                    "type": "integer",
433                    "example": 0
434                  },
435                  "PROXY_RESIDENTIAL_TRANSFER_GBYTES": {
436                    "type": "integer",
437                    "example": 0
438                  },
439                  "PROXY_SERPS": {
440                    "type": "integer",
441                    "example": 0
442                  }
443                }
444              }
445            }
446          }
447        }
448      }
449    }
450  }
451}

Upwork Job 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 Upwork Job 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:

Pricing

Pricing model

Rental 

To use this Actor, you have to pay a monthly rental fee to the developer. The rent is subtracted from your prepaid usage every month after the free trial period. You also pay for the Apify platform usage.

Free trial

2 hours

Price

$25.00