
AI Linkedin Jobs Scraper
Pricing
Pay per event

AI Linkedin Jobs Scraper
Extract structured data from LinkedIn job listings with AI-powered analysis. Filter by job type, experience level, location, and posting date. Get detailed information including responsibilities, skills required, and application methods. Supports proxy and provides clean JSON output.
5.0 (1)
Pricing
Pay per event
0
Total users
2
Monthly users
2
Last modified
7 hours ago
You can access the AI Linkedin Jobs 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": "1.0",
5 "x-build-id": "bRSRnJ0rKDPrYR1p5"
6 },
7 "servers": [
8 {
9 "url": "https://api.apify.com/v2"
10 }
11 ],
12 "paths": {
13 "/acts/x5ud0kn1gh7x~ai-linkedin-jobs-scraper/run-sync-get-dataset-items": {
14 "post": {
15 "operationId": "run-sync-get-dataset-items-x5ud0kn1gh7x-ai-linkedin-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/x5ud0kn1gh7x~ai-linkedin-jobs-scraper/runs": {
50 "post": {
51 "operationId": "runs-sync-x5ud0kn1gh7x-ai-linkedin-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/x5ud0kn1gh7x~ai-linkedin-jobs-scraper/run-sync": {
93 "post": {
94 "operationId": "run-sync-x5ud0kn1gh7x-ai-linkedin-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 "keywords",
135 "li_at"
136 ],
137 "properties": {
138 "keywords": {
139 "title": "Search Keywords",
140 "type": "string",
141 "description": "Keywords to search for job listings (e.g., 'software engineer')"
142 },
143 "li_at": {
144 "title": "LinkedIn li_at Cookie",
145 "type": "string",
146 "description": "LinkedIn authentication cookie (li_at) for user session"
147 },
148 "JSESSIONID": {
149 "title": "LinkedIn JSESSIONID Cookie",
150 "type": "string",
151 "description": "LinkedIn JSESSIONID cookie for session tracking"
152 },
153 "extractJobDetails": {
154 "title": "Extract Job Details using ChatGPT",
155 "type": "boolean",
156 "description": "Convert job description into structured job details using AI"
157 },
158 "geoId": {
159 "title": "Location ID",
160 "type": "string",
161 "description": "LinkedIn Location geographic ID for location filtering"
162 },
163 "timePostedRange": {
164 "title": "Time Posted Range",
165 "enum": [
166 "LAST_1_HOUR",
167 "LAST_4_HOURS",
168 "LAST_8_HOURS",
169 "LAST_12_HOURS",
170 "LAST_24_HOURS",
171 "LAST_3_DAYS",
172 "LAST_5_DAYS",
173 "LAST_WEEK",
174 "LAST_10_DAYS",
175 "LAST_2_WEEKS",
176 "LAST_3_WEEKS",
177 "LAST_MONTH",
178 "LAST_2_MONTHS"
179 ],
180 "type": "string",
181 "description": "Time range for job postings"
182 },
183 "experienceLevels": {
184 "title": "Experience Levels",
185 "type": "array",
186 "description": "Experience levels to filter by",
187 "items": {
188 "type": "string",
189 "enum": [
190 "INTERN",
191 "ENTRY_LEVEL",
192 "ASSOCIATE",
193 "MID_SENIOR",
194 "DIRECTOR",
195 "EXECUTIVE"
196 ],
197 "enumTitles": [
198 "Intern",
199 "Entry-level",
200 "Associate",
201 "Mid-senior",
202 "Director",
203 "Executive"
204 ]
205 }
206 },
207 "jobTypes": {
208 "title": "Job Types",
209 "type": "array",
210 "description": "Job types to filter by (e.g., 'F' for Full-time, 'C' for Contract)",
211 "items": {
212 "type": "string",
213 "enum": [
214 "FULL_TIME",
215 "PART_TIME",
216 "CONTRACT",
217 "TEMPORARY",
218 "INTERN",
219 "VOLUNTEER"
220 ],
221 "enumTitles": [
222 "Full-time",
223 "Part-time",
224 "Contract",
225 "Temporary",
226 "Intern",
227 "Volunteer"
228 ]
229 }
230 },
231 "workplaceTypes": {
232 "title": "Workplace Types",
233 "type": "array",
234 "description": "Workplace types to filter by (e.g., 'REMOTE', 'HYBRID')",
235 "items": {
236 "type": "string",
237 "enum": [
238 "REMOTE",
239 "HYBRID",
240 "ON_SITE"
241 ],
242 "enumTitles": [
243 "Remote",
244 "Hybrid",
245 "On-site"
246 ]
247 }
248 },
249 "sortBy": {
250 "title": "Sort Results By",
251 "enum": [
252 "R",
253 "DD"
254 ],
255 "type": "string",
256 "description": "Sort criteria for job results"
257 },
258 "applyWithLinkedin": {
259 "title": "Apply with LinkedIn",
260 "type": "boolean",
261 "description": "Apply with LinkedIn"
262 },
263 "earlyApplicant": {
264 "title": "Early Applicant",
265 "type": "boolean",
266 "description": "Early Applicant"
267 },
268 "fairChanceEmployer": {
269 "title": "Fair Chance Employer",
270 "type": "boolean",
271 "description": "Fair Chance Employer"
272 },
273 "jobInYourNetwork": {
274 "title": "Job in Your Network",
275 "type": "boolean",
276 "description": "Job in Your Network"
277 },
278 "verifiedJob": {
279 "title": "Verified Job",
280 "type": "boolean",
281 "description": "Verified Job"
282 },
283 "startPosition": {
284 "title": "Page Number",
285 "minimum": 0,
286 "maximum": 100,
287 "type": "integer",
288 "description": "Page number to start scraping from"
289 },
290 "maxResults": {
291 "title": "Number of Jobs per Page",
292 "minimum": 1,
293 "maximum": 100,
294 "type": "integer",
295 "description": "Number of jobs to scrape per page"
296 },
297 "proxySettings": {
298 "title": "Proxy configuration",
299 "type": "object",
300 "description": "Select proxies to be used by your crawler."
301 }
302 }
303 },
304 "runsResponseSchema": {
305 "type": "object",
306 "properties": {
307 "data": {
308 "type": "object",
309 "properties": {
310 "id": {
311 "type": "string"
312 },
313 "actId": {
314 "type": "string"
315 },
316 "userId": {
317 "type": "string"
318 },
319 "startedAt": {
320 "type": "string",
321 "format": "date-time",
322 "example": "2025-01-08T00:00:00.000Z"
323 },
324 "finishedAt": {
325 "type": "string",
326 "format": "date-time",
327 "example": "2025-01-08T00:00:00.000Z"
328 },
329 "status": {
330 "type": "string",
331 "example": "READY"
332 },
333 "meta": {
334 "type": "object",
335 "properties": {
336 "origin": {
337 "type": "string",
338 "example": "API"
339 },
340 "userAgent": {
341 "type": "string"
342 }
343 }
344 },
345 "stats": {
346 "type": "object",
347 "properties": {
348 "inputBodyLen": {
349 "type": "integer",
350 "example": 2000
351 },
352 "rebootCount": {
353 "type": "integer",
354 "example": 0
355 },
356 "restartCount": {
357 "type": "integer",
358 "example": 0
359 },
360 "resurrectCount": {
361 "type": "integer",
362 "example": 0
363 },
364 "computeUnits": {
365 "type": "integer",
366 "example": 0
367 }
368 }
369 },
370 "options": {
371 "type": "object",
372 "properties": {
373 "build": {
374 "type": "string",
375 "example": "latest"
376 },
377 "timeoutSecs": {
378 "type": "integer",
379 "example": 300
380 },
381 "memoryMbytes": {
382 "type": "integer",
383 "example": 1024
384 },
385 "diskMbytes": {
386 "type": "integer",
387 "example": 2048
388 }
389 }
390 },
391 "buildId": {
392 "type": "string"
393 },
394 "defaultKeyValueStoreId": {
395 "type": "string"
396 },
397 "defaultDatasetId": {
398 "type": "string"
399 },
400 "defaultRequestQueueId": {
401 "type": "string"
402 },
403 "buildNumber": {
404 "type": "string",
405 "example": "1.0.0"
406 },
407 "containerUrl": {
408 "type": "string"
409 },
410 "usage": {
411 "type": "object",
412 "properties": {
413 "ACTOR_COMPUTE_UNITS": {
414 "type": "integer",
415 "example": 0
416 },
417 "DATASET_READS": {
418 "type": "integer",
419 "example": 0
420 },
421 "DATASET_WRITES": {
422 "type": "integer",
423 "example": 0
424 },
425 "KEY_VALUE_STORE_READS": {
426 "type": "integer",
427 "example": 0
428 },
429 "KEY_VALUE_STORE_WRITES": {
430 "type": "integer",
431 "example": 1
432 },
433 "KEY_VALUE_STORE_LISTS": {
434 "type": "integer",
435 "example": 0
436 },
437 "REQUEST_QUEUE_READS": {
438 "type": "integer",
439 "example": 0
440 },
441 "REQUEST_QUEUE_WRITES": {
442 "type": "integer",
443 "example": 0
444 },
445 "DATA_TRANSFER_INTERNAL_GBYTES": {
446 "type": "integer",
447 "example": 0
448 },
449 "DATA_TRANSFER_EXTERNAL_GBYTES": {
450 "type": "integer",
451 "example": 0
452 },
453 "PROXY_RESIDENTIAL_TRANSFER_GBYTES": {
454 "type": "integer",
455 "example": 0
456 },
457 "PROXY_SERPS": {
458 "type": "integer",
459 "example": 0
460 }
461 }
462 },
463 "usageTotalUsd": {
464 "type": "number",
465 "example": 0.00005
466 },
467 "usageUsd": {
468 "type": "object",
469 "properties": {
470 "ACTOR_COMPUTE_UNITS": {
471 "type": "integer",
472 "example": 0
473 },
474 "DATASET_READS": {
475 "type": "integer",
476 "example": 0
477 },
478 "DATASET_WRITES": {
479 "type": "integer",
480 "example": 0
481 },
482 "KEY_VALUE_STORE_READS": {
483 "type": "integer",
484 "example": 0
485 },
486 "KEY_VALUE_STORE_WRITES": {
487 "type": "number",
488 "example": 0.00005
489 },
490 "KEY_VALUE_STORE_LISTS": {
491 "type": "integer",
492 "example": 0
493 },
494 "REQUEST_QUEUE_READS": {
495 "type": "integer",
496 "example": 0
497 },
498 "REQUEST_QUEUE_WRITES": {
499 "type": "integer",
500 "example": 0
501 },
502 "DATA_TRANSFER_INTERNAL_GBYTES": {
503 "type": "integer",
504 "example": 0
505 },
506 "DATA_TRANSFER_EXTERNAL_GBYTES": {
507 "type": "integer",
508 "example": 0
509 },
510 "PROXY_RESIDENTIAL_TRANSFER_GBYTES": {
511 "type": "integer",
512 "example": 0
513 },
514 "PROXY_SERPS": {
515 "type": "integer",
516 "example": 0
517 }
518 }
519 }
520 }
521 }
522 }
523 }
524 }
525 }
526}
AI Linkedin 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 AI Linkedin 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: