# Dynamite Jobs Scraper (`rl1987/dynamitejobs-scraper`) Actor

Scrapes remote job listings from dynamitejobs.com with support for search and filtering by category, location, skills, job type and salary.

- **URL**: https://apify.com/rl1987/dynamitejobs-scraper.md
- **Developed by:** [R.L.](https://apify.com/rl1987) (community)
- **Categories:** Jobs
- **Stats:** 3 total users, 2 monthly users, 100.0% runs succeeded, 0 bookmarks
- **User rating**: No ratings yet

## Pricing

from $1.00 / 1,000 job listings

This Actor is paid per event and usage. You are charged both the fixed price for specific events and for Apify platform usage.

Learn more: https://docs.apify.com/platform/actors/running/actors-in-store#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

### What does Dynamite Jobs Scraper do?

**Dynamite Jobs Scraper** extracts remote job listings from [dynamitejobs.com](https://dynamitejobs.com/), a curated board for 100% remote, work-from-anywhere jobs. Give it a search term and any combination of filters, and it returns structured data for every matching job — title, company, salary, category, skills, location eligibility, and full description — ready to download, pipe into another Actor, or sync to your own systems via the Apify API.

Instead of driving a headless browser through the site's JavaScript app, the Actor talks directly to the same search backend the site's own search box uses, so runs are fast and don't need browser/proxy overhead for normal use.

#### Why use Dynamite Jobs Scraper?

- **Lead generation** — build a list of remote-first companies actively hiring for outreach or recruiting-tool sales.
- **Market research** — track salary ranges and in-demand skills for a role or category over time.
- **Job alerts** — schedule the Actor on Apify and feed new matches into Slack, email, or a spreadsheet.
- **Aggregation** — merge Dynamite Jobs listings into your own remote-job board or newsletter.

#### How to use Dynamite Jobs Scraper

1. Click **Try for free** or **Start** on the Actor page.
2. In the **Input** tab, optionally enter a search term and any filters (category, location, skills, job type, salary range).
3. Set **Max results**, or leave it to fetch everything that matches.
4. Click **Start** and wait for the run to finish.
5. Open the **Output** / **Dataset** tab to view, download, or export the results (JSON, CSV, Excel, etc.), or fetch them programmatically via the Apify API.

### Input

All fields are optional — leave them blank to fetch every currently published job. See the **Input** tab for the full form.

| Field | Type | Description |
| --- | --- | --- |
| `search` | string | Free-text search across job title, company name and description. |
| `categorySlug` | string | Category slug, e.g. `development`, `marketing`. See [all categories](https://dynamitejobs.com/remote-jobs-categories). |
| `subcategorySlug` | string | Subcategory slug, e.g. `fullstack`. |
| `locationSlugs` | array | Candidate location eligibility, e.g. `US`, `CA`, `worldwide`, `latinamerica`, `europe`. Combined with OR. |
| `skillSlugs` | array | Required skill slugs, e.g. `react-js`, `python`. Combined with OR. |
| `jobTypeSlug` | string | `full-time`, `part-time`, `contract`, or `internship`. |
| `salaryRange` | string | Advertised salary bucket, e.g. `3kTo6k` (only applies to jobs with a public salary). |
| `includeClosedJobs` | boolean | By default only open (published, non-expired) jobs are scraped. Set `true` to also include closed listings. |
| `maxItems` | integer | Maximum number of jobs to return. `0` = no limit. |
| `proxyConfiguration` | object | Optional Apify Proxy settings. Not required for normal-sized runs. |

Example input:

```json
{
    "search": "react developer",
    "locationSlugs": ["US", "worldwide"],
    "jobTypeSlug": "full-time",
    "maxItems": 100
}
```

### Output

Each dataset item is one job listing:

```json
{
    "url": "https://dynamitejobs.com/company/levelupleads/remote-job/head-of-client-delivery",
    "title": "Head of Client Delivery",
    "companyName": "LevelUp Leads",
    "companyUrl": "https://levelupleads.io",
    "categorySlug": "management-operations",
    "categoryName": "Management and Operations",
    "locationSlugs": ["latinamerica", "CA", "US"],
    "skills": ["Leadership", "Operations", "KPIs"],
    "jobTypeSlug": "full-time",
    "jobTypeName": "Full Time",
    "salaryFrom": 6500,
    "salaryTo": 8500,
    "salaryCurrency": "USD",
    "salaryPeriod": "monthly",
    "description": "Salary Range: $6500-$8500/month ...",
    "publishedAt": "2026-08-11T12:30:56+00:00"
}
```

You can download the dataset in various formats such as JSON, HTML, CSV, or Excel.

#### Data table

| Field | Description |
| --- | --- |
| `url` | Public URL of the job listing. |
| `title` | Job title. |
| `companyName` / `companyUrl` / `companyUsername` | Hiring company details. |
| `categorySlug` / `categoryName` | Primary job category. |
| `subcategorySlug` / `subcategoryName` | Job subcategory, if set. |
| `locationSlugs` | Candidate locations eligible for the role. |
| `skills` | Listed required/relevant skills. |
| `jobTypeSlug` / `jobTypeName` | Employment type. |
| `salaryFrom` / `salaryTo` / `salaryCurrency` / `salaryPeriod` / `salaryPublic` | Salary details, when disclosed. |
| `description` / `descriptionHtml` | Full job description, plain text and HTML. |
| `applyType` | How candidates apply (e.g. through the platform). |
| `isFeatured` | Whether the listing is a featured/promoted job. |
| `publishedAt` / `updatedAt` / `expiresAt` | Listing lifecycle timestamps (ISO 8601). |

### Pricing

This Actor uses the **Pay per event** model: **$1 per 1,000 job listings** returned (i.e. $0.001 per result row). You are only charged for jobs actually delivered to the dataset — a run that finds 250 matching jobs costs $0.25. There's no separate platform/compute fee on top.

This Actor makes a small number of lightweight JSON API calls per run (no browser, no per-page HTML downloads), so runs are fast even for large result sets.

### Tips

- Leave `maxItems` at `0` only if you really want the full result set — the board can contain tens of thousands of listings.
- Combine `search` with facet filters (`categorySlug`, `skillSlugs`, etc.) to narrow results precisely, the same way the site's own filters work.
- Schedule the Actor on Apify and compare dataset runs to detect newly posted jobs.

### FAQ

**Is this legal?** The Actor only reads data that dynamitejobs.com already serves publicly to any visitor's browser. You're responsible for using the extracted data in line with dynamitejobs.com's Terms of Service and applicable law.

**The site's filters changed and results look off.** dynamitejobs.com may change its search backend or field names over time. Please open an issue on the Actor's Issues tab with details so it can be updated.

Need a custom version of this scraper or a different job board covered? Reach out — [Apify Custom Solutions](https://apify.com/custom-solutions) can help.

### Job search toolkit

Part of the **Job search toolkit** — job listing data across major tech employers and niche job boards:

- [FAANG Job Search Scraper](https://apify.com/rl1987/faang-jobs) — Scrapes job listings by search query and location from Meta, Amazon, Apple, Netflix, and Google.
- [OSINT Jobs Scraper](https://apify.com/rl1987/osint-jobs-scraper) — Scrapes job listings (title, company, location, salary, description) from osint-jobs.com.
- [TokyoDev Jobs Scraper](https://apify.com/rl1987/tokyodev-jobs-scraper) — Scrapes IT job listings for English speakers in Japan from TokyoDev.com.

### Did you find this useful?

⭐ Rate this actor on Apify! Your feedback helps other users find it and helps us keep improving it.

# Actor input Schema

## `search` (type: `string`):

Free-text search, matched against job title, company name and description (same as the search box on dynamitejobs.com).

## `categorySlug` (type: `string`):

Filter by job category slug, e.g. "development", "marketing", "management-operations". See https://dynamitejobs.com/remote-jobs-categories for the full list of slugs.

## `subcategorySlug` (type: `string`):

Filter by job subcategory slug, e.g. "business-manager".

## `locationSlugs` (type: `array`):

Filter by allowed candidate location slugs, e.g. "US", "CA", "worldwide", "latinamerica", "europe". Multiple values are combined with OR.

## `skillSlugs` (type: `array`):

Filter by required skill slugs, e.g. "react-js", "python", "copywriting". Multiple values are combined with OR.

## `jobTypeSlug` (type: `string`):

Filter by employment type.

## `salaryRange` (type: `string`):

Filter by advertised salary bucket (only applies to jobs with a public salary).

## `includeClosedJobs` (type: `boolean`):

By default only currently published, non-expired jobs are scraped. Enable this to also include closed (expired or unpublished) listings.

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

Maximum number of job listings to scrape. Set to 0 to scrape all matching results.

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

Optional proxy settings. Not required for normal operation since the Actor talks to a public JSON search API, but can help if you scrape very large volumes.

## Actor input object example

```json
{
  "search": "developer",
  "locationSlugs": [],
  "skillSlugs": [],
  "includeClosedJobs": false,
  "maxItems": 200,
  "proxyConfiguration": {
    "useApifyProxy": false
  }
}
```

# Actor output Schema

## `jobs` (type: `string`):

Job listings matching the given search and filters.

# 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 = {
    "search": "developer"
};

// Run the Actor and wait for it to finish
const run = await client.actor("rl1987/dynamitejobs-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 = { "search": "developer" }

# Run the Actor and wait for it to finish
run = client.actor("rl1987/dynamitejobs-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 '{
  "search": "developer"
}' |
apify call rl1987/dynamitejobs-scraper --silent --output-dataset

```

## MCP server setup

```json
{
    "mcpServers": {
        "apify": {
            "type": "http",
            "url": "https://mcp.apify.com/?tools=fetch-actor-details,rl1987/dynamitejobs-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/9BaVlXW670isvZhXs/builds/aQshsHzoW6w0l1FQq/openapi.json
