
Dice Jobs Scraper
Pricing
Pay per usage

Dice Jobs Scraper
Boost your job search with our Dice Job Scraper! Easily extract job listings, company details, salaries, and full job descriptions from Dice.com. Automate job scraping with high accuracy and efficiency. Perfect for recruiters, analysts, and job seekers. Get real-time job data instantly!
5.0 (1)
Pricing
Pay per usage
0
Monthly users
5
Runs succeeded
>99%
Last modified
13 days ago
You can access the Dice 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": "0.0",
5 "x-build-id": "FrnG3UUIItrqcqIBk"
6 },
7 "servers": [
8 {
9 "url": "https://api.apify.com/v2"
10 }
11 ],
12 "paths": {
13 "/acts/worldunboxer~dice-jobs-scraper/run-sync-get-dataset-items": {
14 "post": {
15 "operationId": "run-sync-get-dataset-items-worldunboxer-dice-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/worldunboxer~dice-jobs-scraper/runs": {
50 "post": {
51 "operationId": "runs-sync-worldunboxer-dice-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/worldunboxer~dice-jobs-scraper/run-sync": {
93 "post": {
94 "operationId": "run-sync-worldunboxer-dice-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 "keyword"
135 ],
136 "properties": {
137 "keyword": {
138 "title": "Job Keyword",
139 "type": "string",
140 "description": "Enter the job title or keyword to search for."
141 },
142 "location": {
143 "title": "Job Location",
144 "type": "string",
145 "description": "Enter the city and state (e.g., New York, NY, USA)."
146 },
147 "radius": {
148 "title": "Search Radius",
149 "type": "integer",
150 "description": "Radius in miles around the location."
151 },
152 "unit": {
153 "title": "Distance Unit",
154 "enum": [
155 "mi",
156 "km"
157 ],
158 "type": "string",
159 "description": "Unit for the search radius."
160 },
161 "job_entries": {
162 "title": "Number of Jobs",
163 "type": "integer",
164 "description": "The number of job entries results to fetch."
165 },
166 "posted_date": {
167 "title": "Posted Date",
168 "enum": [
169 "ANY",
170 "ONE",
171 "THREE",
172 "SEVEN"
173 ],
174 "type": "string",
175 "description": "Select the job posting date filter."
176 },
177 "employment_type": {
178 "title": "Employment Type",
179 "type": "array",
180 "description": "Select one or more employment types.",
181 "items": {
182 "type": "string",
183 "enum": [
184 "FULLTIME",
185 "PARTTIME",
186 "CONTRACTS",
187 "THIRD_PARTY"
188 ],
189 "enumTitles": [
190 "Full-time",
191 "Part-time",
192 "Contract",
193 "Third Party"
194 ]
195 }
196 },
197 "employer_type": {
198 "title": "Employer Type",
199 "type": "array",
200 "description": "Select one or more employer types.",
201 "items": {
202 "type": "string",
203 "enum": [
204 "Direct Hire",
205 "Recruiter",
206 "Other"
207 ],
208 "enumTitles": [
209 "Direct Hire",
210 "Recruiter",
211 "Other"
212 ]
213 }
214 },
215 "work_settings": {
216 "title": "Work Settings",
217 "type": "array",
218 "description": "Select one or more workplace settings.",
219 "items": {
220 "type": "string",
221 "enum": [
222 "Remote",
223 "On-site",
224 "Hybrid"
225 ],
226 "enumTitles": [
227 "Remote",
228 "On-site",
229 "Hybrid"
230 ]
231 }
232 },
233 "easy_apply": {
234 "title": "Easy Apply",
235 "type": "boolean",
236 "description": "Include only jobs with 'Easy Apply' option."
237 },
238 "willing_to_sponsor": {
239 "title": "Work Authorization Sponsorship",
240 "type": "boolean",
241 "description": "Include only jobs where the employer is willing to sponsor visas."
242 }
243 }
244 },
245 "runsResponseSchema": {
246 "type": "object",
247 "properties": {
248 "data": {
249 "type": "object",
250 "properties": {
251 "id": {
252 "type": "string"
253 },
254 "actId": {
255 "type": "string"
256 },
257 "userId": {
258 "type": "string"
259 },
260 "startedAt": {
261 "type": "string",
262 "format": "date-time",
263 "example": "2025-01-08T00:00:00.000Z"
264 },
265 "finishedAt": {
266 "type": "string",
267 "format": "date-time",
268 "example": "2025-01-08T00:00:00.000Z"
269 },
270 "status": {
271 "type": "string",
272 "example": "READY"
273 },
274 "meta": {
275 "type": "object",
276 "properties": {
277 "origin": {
278 "type": "string",
279 "example": "API"
280 },
281 "userAgent": {
282 "type": "string"
283 }
284 }
285 },
286 "stats": {
287 "type": "object",
288 "properties": {
289 "inputBodyLen": {
290 "type": "integer",
291 "example": 2000
292 },
293 "rebootCount": {
294 "type": "integer",
295 "example": 0
296 },
297 "restartCount": {
298 "type": "integer",
299 "example": 0
300 },
301 "resurrectCount": {
302 "type": "integer",
303 "example": 0
304 },
305 "computeUnits": {
306 "type": "integer",
307 "example": 0
308 }
309 }
310 },
311 "options": {
312 "type": "object",
313 "properties": {
314 "build": {
315 "type": "string",
316 "example": "latest"
317 },
318 "timeoutSecs": {
319 "type": "integer",
320 "example": 300
321 },
322 "memoryMbytes": {
323 "type": "integer",
324 "example": 1024
325 },
326 "diskMbytes": {
327 "type": "integer",
328 "example": 2048
329 }
330 }
331 },
332 "buildId": {
333 "type": "string"
334 },
335 "defaultKeyValueStoreId": {
336 "type": "string"
337 },
338 "defaultDatasetId": {
339 "type": "string"
340 },
341 "defaultRequestQueueId": {
342 "type": "string"
343 },
344 "buildNumber": {
345 "type": "string",
346 "example": "1.0.0"
347 },
348 "containerUrl": {
349 "type": "string"
350 },
351 "usage": {
352 "type": "object",
353 "properties": {
354 "ACTOR_COMPUTE_UNITS": {
355 "type": "integer",
356 "example": 0
357 },
358 "DATASET_READS": {
359 "type": "integer",
360 "example": 0
361 },
362 "DATASET_WRITES": {
363 "type": "integer",
364 "example": 0
365 },
366 "KEY_VALUE_STORE_READS": {
367 "type": "integer",
368 "example": 0
369 },
370 "KEY_VALUE_STORE_WRITES": {
371 "type": "integer",
372 "example": 1
373 },
374 "KEY_VALUE_STORE_LISTS": {
375 "type": "integer",
376 "example": 0
377 },
378 "REQUEST_QUEUE_READS": {
379 "type": "integer",
380 "example": 0
381 },
382 "REQUEST_QUEUE_WRITES": {
383 "type": "integer",
384 "example": 0
385 },
386 "DATA_TRANSFER_INTERNAL_GBYTES": {
387 "type": "integer",
388 "example": 0
389 },
390 "DATA_TRANSFER_EXTERNAL_GBYTES": {
391 "type": "integer",
392 "example": 0
393 },
394 "PROXY_RESIDENTIAL_TRANSFER_GBYTES": {
395 "type": "integer",
396 "example": 0
397 },
398 "PROXY_SERPS": {
399 "type": "integer",
400 "example": 0
401 }
402 }
403 },
404 "usageTotalUsd": {
405 "type": "number",
406 "example": 0.00005
407 },
408 "usageUsd": {
409 "type": "object",
410 "properties": {
411 "ACTOR_COMPUTE_UNITS": {
412 "type": "integer",
413 "example": 0
414 },
415 "DATASET_READS": {
416 "type": "integer",
417 "example": 0
418 },
419 "DATASET_WRITES": {
420 "type": "integer",
421 "example": 0
422 },
423 "KEY_VALUE_STORE_READS": {
424 "type": "integer",
425 "example": 0
426 },
427 "KEY_VALUE_STORE_WRITES": {
428 "type": "number",
429 "example": 0.00005
430 },
431 "KEY_VALUE_STORE_LISTS": {
432 "type": "integer",
433 "example": 0
434 },
435 "REQUEST_QUEUE_READS": {
436 "type": "integer",
437 "example": 0
438 },
439 "REQUEST_QUEUE_WRITES": {
440 "type": "integer",
441 "example": 0
442 },
443 "DATA_TRANSFER_INTERNAL_GBYTES": {
444 "type": "integer",
445 "example": 0
446 },
447 "DATA_TRANSFER_EXTERNAL_GBYTES": {
448 "type": "integer",
449 "example": 0
450 },
451 "PROXY_RESIDENTIAL_TRANSFER_GBYTES": {
452 "type": "integer",
453 "example": 0
454 },
455 "PROXY_SERPS": {
456 "type": "integer",
457 "example": 0
458 }
459 }
460 }
461 }
462 }
463 }
464 }
465 }
466 }
467}
Dice 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 Dice 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:
Pricing
Pricing model
Pay per usageThis Actor is paid per platform usage. The Actor is free to use, and you only pay for the Apify platform usage.