🔥Dice.com FULL Job Scraper🔥 avatar

🔥Dice.com FULL Job Scraper🔥

Try for free

2 hours trial then $30.00/month - No credit card required now

Go to Store
🔥Dice.com FULL Job Scraper🔥

🔥Dice.com FULL Job Scraper🔥

mohamedgb00714/dicecom-job-scraper
Try for free

2 hours trial then $30.00/month - No credit card required now

Scrapes job listings from Dice.com, including detailed information, and handles pagination. Supports keyword search, location search, and various filters (employment type, employer type, workplace type, posted date, easy apply, willing to sponsor).

1# Dice.com Job Scraper Actor
2
3This Apify actor scrapes job listings from Dice.com. It allows you to search for jobs based on keywords, location, and various filters, and it extracts detailed information about each job listing.  It handles pagination by clicking the "Next Page" button, even if the navigation is handled by JavaScript.
4
5## Input
6
7The actor accepts the following input parameters:
8
9| Parameter        | Type    | Description                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        | Required |
10| ---------------- | ------- | ------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------ | :------: |
11| `query`          | String  | The search query (keywords).                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        |    No    |
12| `location`       | String  | The search location.                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               |    No    |
13| `postedDate`     | String  | Filter jobs by posted date (e.g., "Any Date", "Today", "Last 3 Days", "Last 7 Days").                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                |    No    |
14| `FULLTIME`       | Boolean | Filter for full-time jobs.                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      |    No    |
15| `PARTTIME`       | Boolean | Filter for part-time jobs.                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      |    No    |
16| `CONTRACTS`      | Boolean | Filter for contract jobs.                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     |    No    |
17| `THIRD_PARTY`    | Boolean | Filter for third-party jobs.                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    |    No    |
18| `Direct Hire`    | Boolean | Filter for direct hire jobs.                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   |    No    |
19| `Recruiter`      | Boolean | Filter for recruiter jobs.                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     |    No    |
20| `Other`          | Boolean | Filter for other job types.                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     |    No    |
21| `On-Site`        | Boolean | Filter for on-site jobs.                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     |    No    |
22| `Remote`         | Boolean | Filter for remote jobs.                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       |    No    |
23| `Hybrid`         | Boolean | Filter for hybrid jobs.                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       |    No    |
24| `easyApply`      | Boolean | Filter for easy apply jobs.                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    |    No    |
25| `willingToSponsor` | Boolean | Filter for jobs where the employer is willing to sponsor.                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                |    No    |
26| `limit`          | Number  | The maximum number of job listings to scrape (optional). If not provided, it defaults to 100.  This is important for preventing your actor from running for too long and to respect website rate limits.                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                |    No    |
27
28**Important:** If both `query` and `location` are not provided, the actor will perform a general search (equivalent to searching with empty keywords and location).
29
30## Output
31
32The actor's output is a dataset containing an array of job listing objects. Each object has the following structure:
33
34```json
35{
36  "id": "job_id_string",
37  "title": "Job Title",
38  "jobLocation": { /* Job Location Object */ },
39  "postedDate": "Date string (ISO 8601 format)",
40  "detailsPageUrl": "URL to the job details page",
41  "companyPageUrl": "URL to the company page",
42  "companyLogoUrl": "URL to the company logo",
43  "companyLogoUrlOptimized": "URL to optimized company logo",
44  "salary": "Salary range (string)",
45  "clientBrandId": "Company ID",
46  "companyName": "Company Name",
47  "employmentType": "Employment Type (e.g., Full-time, Part-time)",
48  "summary": "Job Summary",
49  "jobId": "Job ID",
50  "score": "Relevance Score",
51  "easyApply": "Boolean (true if easy apply)",
52  "willingToSponsor": "Boolean (true if willing to sponsor)",
53  "employerType": "Employer Type",
54  "workFromHomeAvailability": "Boolean",
55  "isRemote": "Boolean",
56  "modifiedDate": "Date string (ISO 8601 format)",
57  "guid": "Job GUID",
58  "workplaceTypes": ["Workplace Type 1", "Workplace Type 2", ...],
59  "isFeatured": "Boolean"
60}

Running the Actor

You can run this actor on the Apify platform or locally using the Apify CLI. See the Apify documentation for instructions on how to deploy and run actors.

Limitations

  • This actor is designed to scrape data from Dice.com. Changes to the Dice.com website structure may require updates to the actor's code.
  • The limit input parameter is crucial for controlling the execution time and preventing excessive requests. It is highly recommended to use it.
  • Always respect the website's terms of service and robots.txt when scraping data.
Developer
Maintained by Community

Actor Metrics

  • 2 monthly users

  • 2 bookmarks

  • >99% runs succeeded

  • Created in Feb 2025

  • Modified 2 days ago