# Dice Job Scraper — Tech Jobs, Salaries & Descriptions (`hipersoft/dice-scraper`) Actor

Scrape tech job listings from Dice.com: title, company, location, salary, remote/visa flags, and full job descriptions. Fast, reliable.

- **URL**: https://apify.com/hipersoft/dice-scraper.md
- **Developed by:** [hiper soft](https://apify.com/hipersoft) (community)
- **Categories:** Jobs, Lead generation
- **Stats:** 3 total users, 1 monthly users, 100.0% runs succeeded, 0 bookmarks
- **User rating**: No ratings yet

## Pricing

from $0.0005 / job scraped

This Actor is paid per event. You are not charged for the Apify platform usage, but only a fixed price for specific events.
Since this Actor supports Apify Store discounts, the price gets lower the higher subscription plan you have.

Learn more: https://docs.apify.com/actors/running/actors-in-store.md#pay-per-event

## What's an Apify Actor?

Actors are web data automations that power AI and operations. They run on the Apify platform to scrape websites, process data, connect APIs, and automate workflows.
In Batch mode, an Actor accepts a well-defined JSON input, performs an action which can take anything from a few seconds to a few hours,
and optionally produces a well-defined JSON output, datasets with results, or files in key-value store.
In Standby mode, an Actor provides a web server which can be used as a website, API, or an MCP server.
Actors are written with capital "A".

## How to integrate an Actor?

If asked about integration, you help developers integrate Actors into their projects.
You adapt to their stack and deliver integrations that are safe, well-documented, and production-ready.
The best way to integrate Actors is as follows.

- **AI agents and MCP clients** — the [Apify MCP server](https://docs.apify.com/integrations/mcp.md) at `https://mcp.apify.com` (remote, streamable HTTP, OAuth on first use).
- **Agentic workflows and local Actor development** — [Agent Skills](https://apify.com/.well-known/agent-skills/index.json) with the [Apify CLI](https://docs.apify.com/cli/docs.md): `npm install -g apify-cli`, then `apify login`.
- **JavaScript/TypeScript projects** — the official [JS/TS client](https://docs.apify.com/api/client/js/docs.md): `npm install apify-client`.
- **Python projects** — the official [Python client](https://docs.apify.com/api/client/python/docs.md): `pip install apify-client`.
- **Any other language** — the [REST API](https://docs.apify.com/api/v2.md).

For usage examples, see the [API](#api) section below.

For more details, see Apify documentation as [Markdown index](https://docs.apify.com/llms.txt) and [Markdown full-text](https://docs.apify.com/llms-full.txt).

# README

## Dice Jobs Scraper — Tech Jobs with Salaries in Clean JSON

Dice Jobs Scraper extracts tech job listings from Dice.com by keyword and location and returns clean, structured JSON — **title, company, location, salary, employment type, posted date, sponsored flag and the apply link**. Export to JSON, CSV, Excel or XML. Fast and reliable, with no account or API key to set up. Built for recruiters, job-board operators and anyone researching the tech labor market.

![Dice Jobs Scraper input — search terms, page depth and item cap in the Apify Console](https://api.apify.com/v2/key-value-stores/SUfvnaFLd9z9eBCtV/records/dice-scraper-input.png?v=2)

### What does the Dice Scraper do?

This Dice crawler walks each search across multiple pages, de-duplicates by Dice's `jobId`, and returns every matching role as a structured record. Give it keywords and locations and export a fresh tech-jobs dataset for your board, CRM or research pipeline.

### What data can you scrape from Dice?

| Data point | Description |
| --- | --- |
| Role | `title`, `employmentType`, `summary` |
| Company | `company` |
| Location | `location` |
| Pay | `salary` |
| Posting | `posted`, `featured` |
| Links | `url` |
| Source | `jobId` |

### What you get

Every job becomes one clean dataset record. Export the full table to JSON, CSV, Excel or XML.

![Dice Jobs Scraper output example — job rows with title, company, salary and posted date as structured JSON](https://api.apify.com/v2/key-value-stores/SUfvnaFLd9z9eBCtV/records/dice-scraper-output.png?v=5)

```json
{
  "jobId": "a1b2c3d4-0000-1111-2222-333344445555",
  "title": "Senior Software Engineer",
  "company": "Acme Technologies",
  "location": "Remote",
  "salary": "$140,000 - $170,000",
  "employmentType": "Full-time",
  "posted": "2 days ago",
  "featured": false,
  "summary": "We're hiring a senior engineer to build and scale our backend platform...",
  "url": "https://www.dice.com/job-detail/a1b2c3d4-0000-1111-2222-333344445555"
}
```

#### Output schema

| Field | Type | Description |
| --- | --- | --- |
| `jobId` | string | Dice's unique identifier for the job, used to de-duplicate results. |
| `title` | string | Job title. |
| `company` | string | Hiring company name. |
| `location` | string | Location of the role (city, state or Remote). |
| `salary` | string | Salary or pay range as listed on the card, when available. |
| `employmentType` | string | Employment type such as full-time or contract. |
| `posted` | string | How long ago the job was posted (e.g. `2 days ago`). |
| `featured` | boolean | Whether the listing is a sponsored/paid placement. |
| `summary` | string | Short description snippet from the job card. |
| `url` | string (URL) | Direct link to the job detail and apply page. |

### Use cases

- Build or refresh a tech job board with fresh, salaried Dice listings.
- Source candidates by collecting roles for a specific stack in a target city.
- Track tech salary ranges and employment types across markets over time.
- Feed a labor-market or compensation dashboard with structured hiring data.
- Monitor how many roles a competitor is posting on Dice.

### How to scrape Dice data

1. Add the Dice Jobs Scraper to your Apify account and open its input.
2. Enter searches as `"keyword|location"` under `searches`, or paste a full Dice jobs URL.
3. Set `maxPagesPerSearch` and `maxItems` to control depth and total volume.
4. Click **Run** and let it paginate through every search.
5. Export the results as JSON, CSV, Excel or XML, or pull them via the Apify API.

### Input

```json
{
  "searches": ["software engineer|Remote", "data scientist|New York, NY"],
  "maxItems": 200,
  "maxPagesPerSearch": 10
}
```

| Field | Description |
| --- | --- |
| `searches` | Keyword + optional location as `"keyword|location"`, or a full Dice jobs URL. One per line. |
| `startUrls` | Advanced alternative: a request list of `{"url":"..."}` Dice jobs URLs. |
| `maxItems` | Cap on total jobs across all searches (0 = no cap). |
| `maxPagesPerSearch` | Pages (~20 jobs each) to crawl per search. |
| `proxyConfiguration` | Optional proxy settings for the run. |

### Need more jobs data?

- [Company Careers Job Scraper](https://apify.com/hipersoft/company-jobs-scraper) — open roles from Greenhouse, Lever and Ashby career pages.
- [Reed Job Scraper](https://apify.com/hipersoft/reed-scraper) — UK jobs from Reed.co.uk with salaries and full descriptions.
- [RemoteOK Job Scraper](https://apify.com/hipersoft/remoteok-scraper) — remote roles with tags and salary ranges.
- [Remote Jobs Aggregator](https://apify.com/hipersoft/remote-jobs-aggregator) — five remote boards merged and de-duplicated.

### FAQ

**Do I need a Dice account or API key?**
No. Just add your search terms or a Dice jobs URL and run — no login or API key.

**How many jobs can I get per run?**
Each Dice search page holds roughly 20 jobs. Use `maxPagesPerSearch` to control how deep it paginates and `maxItems` to cap the total across all your searches.

**Can I filter by location or keyword?**
Yes. Pass `searches` as `"keyword|location"` (e.g. `"software engineer|Remote"`), or drop in a full `dice.com/jobs` URL with the filters you want.

**What export formats are supported?**
JSON, CSV, Excel and XML, plus programmatic access through the Apify API.

**How does billing work?**
You pay per item you get, so cost scales with the number of jobs you actually collect. See the **Pricing** tab for current rates.

**Can I connect this to other tools?**
The Dice Jobs Scraper can be connected with almost any cloud service or web app thanks to [integrations on the Apify platform](https://apify.com/integrations). It works with [Make](https://apify.com/integrations/make), [Zapier](https://apify.com/integrations/zapier), [Slack](https://docs.apify.com/platform/integrations/slack), [Airbyte](https://docs.apify.com/platform/integrations/airbyte), [GitHub](https://docs.apify.com/platform/integrations/github), [Google Drive](https://docs.apify.com/platform/integrations/drive) and [many more](https://apify.com/integrations), plus the [Apify API](https://docs.apify.com/api/v2), JavaScript/Python clients and MCP. Or use [webhooks](https://docs.apify.com/platform/integrations/webhooks) to trigger an action whenever a run finishes.

**Is scraping Dice legal?**
The scraper only reads publicly available listings that Dice serves to any visitor. You are responsible for reviewing Dice's Terms of Service and your local regulations for your use case.

### Related Actors

- [Company Careers Job Scraper](https://apify.com/hipersoft/company-jobs-scraper)
- [Reed Job Scraper](https://apify.com/hipersoft/reed-scraper)
- [RemoteOK Job Scraper](https://apify.com/hipersoft/remoteok-scraper)
- [Remote Jobs Aggregator](https://apify.com/hipersoft/remote-jobs-aggregator)

### Notes

Original clean-room implementation. Returns only public listings Dice serves to any visitor. Not affiliated with Dice or DHI Group; "Dice" is a trademark of its respective owner.

# Actor input Schema

## `searches` (type: `array`):

Keyword + optional location as "keyword|location" (e.g. "software engineer|Remote"), or a full dice.com/jobs URL. One per line.

## `startUrls` (type: `array`):

Alternative to searches: a request list of {"url":"..."} Dice jobs URLs.

## `maxItems` (type: `integer`):

Cap total jobs across all searches (0 = no cap).

## `maxPagesPerSearch` (type: `integer`):

Pages (~20 jobs each) to crawl per search.

## `proxyConfiguration` (type: `object`):

Optional. Dice works without a proxy; enable one only if you hit rate limits at scale.

## Actor input object example

```json
{
  "searches": [
    "software engineer|Remote"
  ],
  "maxItems": 0,
  "maxPagesPerSearch": 10,
  "proxyConfiguration": {
    "useApifyProxy": false
  }
}
```

# Actor output Schema

## `results` (type: `string`):

The scraped results as dataset items.

# API

You can run this Actor programmatically using our API. Below are code examples in JavaScript, Python, and CLI, as well as the OpenAPI specification and MCP server setup.

## JavaScript example

```javascript
import { ApifyClient } from 'apify-client';

// Initialize the ApifyClient with your Apify API token
// Replace the '<YOUR_API_TOKEN>' with your token
const client = new ApifyClient({
    token: '<YOUR_API_TOKEN>',
});

// Prepare Actor input
const input = {
    "searches": [
        "software engineer|Remote"
    ]
};

// Run the Actor and wait for it to finish
const run = await client.actor("hipersoft/dice-scraper").call(input);

// Fetch and print Actor results from the run's dataset (if any)
console.log('Results from dataset');
console.log(`💾 Check your data here: https://console.apify.com/storage/datasets/${run.defaultDatasetId}`);
const { items } = await client.dataset(run.defaultDatasetId).listItems();
items.forEach((item) => {
    console.dir(item);
});

// 📚 Want to learn more 📖? Go to → https://docs.apify.com/api/client/js/docs

```

## Python example

```python
from apify_client import ApifyClient

# Initialize the ApifyClient with your Apify API token
# Replace '<YOUR_API_TOKEN>' with your token.
client = ApifyClient("<YOUR_API_TOKEN>")

# Prepare the Actor input
run_input = { "searches": ["software engineer|Remote"] }

# Run the Actor and wait for it to finish
run = client.actor("hipersoft/dice-scraper").call(run_input=run_input)

# Fetch and print Actor results from the run's dataset (if there are any)
print(f"💾 Check your data here: https://console.apify.com/storage/datasets/{run.default_dataset_id}")
for item in client.dataset(run.default_dataset_id).iterate_items():
    print(item)

# 📚 Want to learn more 📖? Go to → https://docs.apify.com/api/client/python/docs/quick-start

```

## CLI example

```bash
echo '{
  "searches": [
    "software engineer|Remote"
  ]
}' |
apify call hipersoft/dice-scraper --silent --output-dataset

```

## MCP server setup

```json
{
    "mcpServers": {
        "apify": {
            "type": "http",
            "url": "https://mcp.apify.com/?tools=fetch-actor-details,hipersoft/dice-scraper"
        }
    }
}

```

The hosted server signs you in with OAuth on first connect, so no API token belongs in this config. Clients without OAuth support can send an `Authorization: Bearer <APIFY_API_TOKEN>` header instead, using a token from API & Integrations in Apify Console (https://console.apify.com/settings/integrations).

## OpenAPI specification

Download the OpenAPI definition: https://api.apify.com/v2/actors/Zlo6pt1TKfZa1w8N5/builds/eokPU2uqJaPuNpAQd/openapi.json
