
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
Total users
9
Monthly users
8
Runs succeeded
>99%
Last modified
14 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.
1import { ApifyClient } from 'apify-client';2
3// Initialize the ApifyClient with your Apify API token4// Replace the '<YOUR_API_TOKEN>' with your token5const client = new ApifyClient({6 token: '<YOUR_API_TOKEN>',7});8
9// Prepare Actor input10const input = {11 "keyword": "data science",12 "location": "New York, NY, USA",13 "radius": 30,14 "unit": "mi",15 "job_entries": 100,16 "posted_date": "ANY",17 "employment_type": [18 "FULLTIME"19 ],20 "employer_type": [21 "Direct Hire"22 ],23 "work_settings": [24 "On-site",25 "Hybrid"26 ],27 "easy_apply": true,28 "willing_to_sponsor": false29};30
31// Run the Actor and wait for it to finish32const run = await client.actor("worldunboxer/dice-jobs-scraper").call(input);33
34// Fetch and print Actor results from the run's dataset (if any)35console.log('Results from dataset');36console.log(`💾 Check your data here: https://console.apify.com/storage/datasets/${run.defaultDatasetId}`);37const { items } = await client.dataset(run.defaultDatasetId).listItems();38items.forEach((item) => {39 console.dir(item);40});41
42// 📚 Want to learn more 📖? Go to → https://docs.apify.com/api/client/js/docs
Dice Jobs Scraper API in JavaScript
The Apify API client for JavaScript is the official library that allows you to use Dice Jobs Scraper API in JavaScript or TypeScript, providing convenience functions and automatic retries on errors.
Install the apify-client
$npm install apify-client
Other API clients include: