๐ฅ Google Jobs Scraper (with highlights)
This Actor is unavailable because the developer has decided to deprecate it. Would you like to try a similar Actor instead?
See alternative Actors๐ฅ Google Jobs Scraper (with highlights)
โน๏ธ Discover the power of automation with Bebity's Google Jobs Scraper, an innovative Apify actor that retrieves job listings from Google Jobs in seconds. Tailored to your needs, it filters jobs by title, employment type, location, language, and domain, giving you access to global job opportunities.
You can access the ๐ฅ Google Jobs Scraper (with highlights) 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": "jm0Ld1Pa5zFnCjJJ3"
6 },
7 "servers": [
8 {
9 "url": "https://api.apify.com/v2"
10 }
11 ],
12 "paths": {
13 "/acts/bebity~google-jobs-scraper/run-sync-get-dataset-items": {
14 "post": {
15 "operationId": "run-sync-get-dataset-items-bebity-google-jobs-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/bebity~google-jobs-scraper/runs": {
50 "post": {
51 "operationId": "runs-sync-bebity-google-jobs-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/bebity~google-jobs-scraper/run-sync": {
93 "post": {
94 "operationId": "run-sync-bebity-google-jobs-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 "required": [
134 "query",
135 "domain"
136 ],
137 "properties": {
138 "query": {
139 "title": "๐ Query",
140 "type": "string",
141 "description": "Enter a query to search",
142 "default": "developer"
143 },
144 "maxRows": {
145 "title": "๐ข Max rows",
146 "minimum": 1,
147 "type": "integer",
148 "description": "Enter a number of max rows",
149 "default": 30
150 },
151 "domain": {
152 "title": "๐ Domain",
153 "enum": [
154 "com",
155 "fr",
156 "de",
157 "es",
158 "it",
159 "nl",
160 "pl",
161 "ru",
162 "uk",
163 "br",
164 "ca",
165 "cn",
166 "hk",
167 "in",
168 "jp",
169 "mx",
170 "tw",
171 "vn",
172 "ar",
173 "au",
174 "at",
175 "be",
176 "bg",
177 "cl",
178 "co",
179 "cr",
180 "hr",
181 "cz",
182 "dk",
183 "ec",
184 "eg",
185 "ee",
186 "fi",
187 "gr",
188 "hu",
189 "id",
190 "ie",
191 "il",
192 "lv",
193 "lt"
194 ],
195 "type": "string",
196 "description": "Select an domain",
197 "default": "com"
198 },
199 "language": {
200 "title": "๐ Job language",
201 "enum": [
202 "en",
203 "fr",
204 "de",
205 "es",
206 "it",
207 "nl",
208 "pl",
209 "ru",
210 "uk",
211 "br",
212 "ca",
213 "cn",
214 "hk",
215 "in",
216 "jp",
217 "mx",
218 "tw",
219 "vn",
220 "ar",
221 "au",
222 "at",
223 "be",
224 "bg",
225 "cl",
226 "co",
227 "cr",
228 "hr",
229 "cz",
230 "dk",
231 "ec",
232 "eg",
233 "ee",
234 "fi",
235 "gr",
236 "hu",
237 "id",
238 "ie",
239 "il",
240 "lv",
241 "lt"
242 ],
243 "type": "string",
244 "description": "Select language",
245 "default": "en"
246 },
247 "employmentType": {
248 "title": "โ Employment type",
249 "enum": [
250 "FULLTIME",
251 "CONTRACTOR",
252 "INTERN",
253 "PARTTIME"
254 ],
255 "type": "string",
256 "description": "Select type of employment"
257 },
258 "datePosted": {
259 "title": "๐
Date posted",
260 "enum": [
261 "today",
262 "3days",
263 "week",
264 "month"
265 ],
266 "type": "string",
267 "description": "Select date posted"
268 },
269 "location": {
270 "title": "๐ Location (country, city, region ...)",
271 "type": "string",
272 "description": "Enter a location"
273 },
274 "radius": {
275 "title": "๐ Radius",
276 "enum": [
277 "2",
278 "10",
279 "25",
280 "50",
281 "100",
282 "300",
283 "1000"
284 ],
285 "type": "string",
286 "description": "Select radius"
287 }
288 }
289 },
290 "runsResponseSchema": {
291 "type": "object",
292 "properties": {
293 "data": {
294 "type": "object",
295 "properties": {
296 "id": {
297 "type": "string"
298 },
299 "actId": {
300 "type": "string"
301 },
302 "userId": {
303 "type": "string"
304 },
305 "startedAt": {
306 "type": "string",
307 "format": "date-time",
308 "example": "2025-01-08T00:00:00.000Z"
309 },
310 "finishedAt": {
311 "type": "string",
312 "format": "date-time",
313 "example": "2025-01-08T00:00:00.000Z"
314 },
315 "status": {
316 "type": "string",
317 "example": "READY"
318 },
319 "meta": {
320 "type": "object",
321 "properties": {
322 "origin": {
323 "type": "string",
324 "example": "API"
325 },
326 "userAgent": {
327 "type": "string"
328 }
329 }
330 },
331 "stats": {
332 "type": "object",
333 "properties": {
334 "inputBodyLen": {
335 "type": "integer",
336 "example": 2000
337 },
338 "rebootCount": {
339 "type": "integer",
340 "example": 0
341 },
342 "restartCount": {
343 "type": "integer",
344 "example": 0
345 },
346 "resurrectCount": {
347 "type": "integer",
348 "example": 0
349 },
350 "computeUnits": {
351 "type": "integer",
352 "example": 0
353 }
354 }
355 },
356 "options": {
357 "type": "object",
358 "properties": {
359 "build": {
360 "type": "string",
361 "example": "latest"
362 },
363 "timeoutSecs": {
364 "type": "integer",
365 "example": 300
366 },
367 "memoryMbytes": {
368 "type": "integer",
369 "example": 1024
370 },
371 "diskMbytes": {
372 "type": "integer",
373 "example": 2048
374 }
375 }
376 },
377 "buildId": {
378 "type": "string"
379 },
380 "defaultKeyValueStoreId": {
381 "type": "string"
382 },
383 "defaultDatasetId": {
384 "type": "string"
385 },
386 "defaultRequestQueueId": {
387 "type": "string"
388 },
389 "buildNumber": {
390 "type": "string",
391 "example": "1.0.0"
392 },
393 "containerUrl": {
394 "type": "string"
395 },
396 "usage": {
397 "type": "object",
398 "properties": {
399 "ACTOR_COMPUTE_UNITS": {
400 "type": "integer",
401 "example": 0
402 },
403 "DATASET_READS": {
404 "type": "integer",
405 "example": 0
406 },
407 "DATASET_WRITES": {
408 "type": "integer",
409 "example": 0
410 },
411 "KEY_VALUE_STORE_READS": {
412 "type": "integer",
413 "example": 0
414 },
415 "KEY_VALUE_STORE_WRITES": {
416 "type": "integer",
417 "example": 1
418 },
419 "KEY_VALUE_STORE_LISTS": {
420 "type": "integer",
421 "example": 0
422 },
423 "REQUEST_QUEUE_READS": {
424 "type": "integer",
425 "example": 0
426 },
427 "REQUEST_QUEUE_WRITES": {
428 "type": "integer",
429 "example": 0
430 },
431 "DATA_TRANSFER_INTERNAL_GBYTES": {
432 "type": "integer",
433 "example": 0
434 },
435 "DATA_TRANSFER_EXTERNAL_GBYTES": {
436 "type": "integer",
437 "example": 0
438 },
439 "PROXY_RESIDENTIAL_TRANSFER_GBYTES": {
440 "type": "integer",
441 "example": 0
442 },
443 "PROXY_SERPS": {
444 "type": "integer",
445 "example": 0
446 }
447 }
448 },
449 "usageTotalUsd": {
450 "type": "number",
451 "example": 0.00005
452 },
453 "usageUsd": {
454 "type": "object",
455 "properties": {
456 "ACTOR_COMPUTE_UNITS": {
457 "type": "integer",
458 "example": 0
459 },
460 "DATASET_READS": {
461 "type": "integer",
462 "example": 0
463 },
464 "DATASET_WRITES": {
465 "type": "integer",
466 "example": 0
467 },
468 "KEY_VALUE_STORE_READS": {
469 "type": "integer",
470 "example": 0
471 },
472 "KEY_VALUE_STORE_WRITES": {
473 "type": "number",
474 "example": 0.00005
475 },
476 "KEY_VALUE_STORE_LISTS": {
477 "type": "integer",
478 "example": 0
479 },
480 "REQUEST_QUEUE_READS": {
481 "type": "integer",
482 "example": 0
483 },
484 "REQUEST_QUEUE_WRITES": {
485 "type": "integer",
486 "example": 0
487 },
488 "DATA_TRANSFER_INTERNAL_GBYTES": {
489 "type": "integer",
490 "example": 0
491 },
492 "DATA_TRANSFER_EXTERNAL_GBYTES": {
493 "type": "integer",
494 "example": 0
495 },
496 "PROXY_RESIDENTIAL_TRANSFER_GBYTES": {
497 "type": "integer",
498 "example": 0
499 },
500 "PROXY_SERPS": {
501 "type": "integer",
502 "example": 0
503 }
504 }
505 }
506 }
507 }
508 }
509 }
510 }
511 }
512}
๐ฅ Google Jobs Scraper (with highlights) 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 ๐ฅ Google Jobs Scraper (with highlights) 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: