# FlexJobs Scraper - Remote & Flexible Job Listings (`haketa/flexjobs-scraper`) Actor

Scrape remote and flexible jobs from FlexJobs: title, remote level (100% remote/hybrid), schedule, career level, salary range, benefits, categories, location and posting date. Search by keyword. Export to JSON, CSV or Excel.

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

## Pricing

from $1.50 / 1,000 results

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/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

## FlexJobs Scraper 💼🌎

**Extract remote & flexible job listings from FlexJobs — a leading marketplace for work-from-home and flexible jobs — into clean, structured data.** Search by keyword and export thousands of jobs with **remote level, schedule, career level, salary range, benefits, category, location and posting date**. Built for remote-work market research, job aggregation, salary benchmarking and hiring-trend analytics.

[![Actor](https://img.shields.io/badge/Apify-Actor-00b04f?style=flat-square\&logo=apify)](https://apify.com)
[![Focus](https://img.shields.io/badge/Focus-Remote%20%26%20Flexible-brightgreen?style=flat-square)](https://apify.com)
[![Remote level](https://img.shields.io/badge/Remote%20level-100%25%20%7C%20Hybrid-success?style=flat-square)](https://apify.com)
[![Salary](https://img.shields.io/badge/Salary-Range%20parsed-blue?style=flat-square)](https://apify.com)
[![Benefits](https://img.shields.io/badge/Benefits-Included-orange?style=flat-square)](https://apify.com)
[![Output](https://img.shields.io/badge/Output-JSON%20%7C%20CSV%20%7C%20Excel-2b7489?style=flat-square)](https://apify.com)
[![Pagination](https://img.shields.io/badge/Pagination-Automatic-9cf?style=flat-square)](https://apify.com)
[![No code](https://img.shields.io/badge/No--code-Friendly-blueviolet?style=flat-square)](https://apify.com)
[![Maintained](https://img.shields.io/badge/Maintained-Yes-brightgreen?style=flat-square)](https://apify.com)

***

### 🎯 What does FlexJobs Scraper do?

FlexJobs specializes in **remote and flexible job listings** across hundreds of categories. This actor turns any FlexJobs search into a structured dataset you can download or feed into your own tools.

Give it a **search keyword** (or a **FlexJobs search URL**) and it will:

- 🔎 Read every job on the search results and **paginate automatically**
- 🏠 Capture the **remote level** — 100% Remote, Hybrid, or on-site flexibility
- 💰 Parse the **salary range** (min / max / currency / period)
- 🎁 Include the **benefits** package and **career level**
- 🗂️ Add **categories, schedule, job type and location**
- 🗓️ Include the **posting date** and a job summary
- 🧹 Deliver **clean, deduplicated, structured records** — no HTML, no clutter
- ⬇️ Export to **JSON, CSV, Excel, HTML or via API** in one click

No login, no browser extensions, no manual copy-paste.

***

### ✨ Key features

| Feature | Description |
| --- | --- |
| **Remote-level detection** | Every job tagged as 100% Remote, Hybrid, or flexible. |
| **Salary parsing** | Salary min, max, currency and period extracted from the listing. |
| **Benefits & career level** | Benefits package and required career level per job. |
| **Rich taxonomy** | Categories, schedule (full/part-time), job type and location. |
| **Keyword or URL input** | Search by keyword, or paste a filtered FlexJobs search URL. |
| **Automatic pagination** | Walks through all result pages up to your `maxItems` limit. |
| **Flexibility flags** | Freelance/contract, flexible-schedule and telecommute indicators. |
| **Deduplicated output** | Each job appears once, identified by its unique ID. |
| **Clean exports** | JSON, CSV, Excel, HTML table, RSS or JSON API. |

***

### 📥 Input

The actor accepts a simple, no-code input form.

#### Option A — by keyword (easiest)

```json
{
    "searchQueries": ["developer", "marketing"],
    "maxItems": 300
}
```

#### Option B — by search URL (with filters)

```json
{
    "startUrls": [
        { "url": "https://www.flexjobs.com/search?searchkeyword=data%20analyst" }
    ],
    "maxItems": 500
}
```

#### Input parameters

| Field | Type | Description |
| --- | --- | --- |
| `searchQueries` | array | Job keywords to search. |
| `startUrls` | array | FlexJobs search URLs (filters in the URL are respected). |
| `maxItems` | integer | Maximum number of jobs to collect. Default `200`. |
| `proxyConfiguration` | object | Proxy settings. Apify Proxy is recommended and on by default. |

***

### 📤 Output

Each job is returned as a clean JSON object:

```json
{
    "id": "b5973469-9e3d-461d-a272-7b03cdfab3cd",
    "title": "Senior Software Developer",
    "url": "https://www.flexjobs.com/publicjobs/senior-software-developer-b5973469-...",
    "summary": "Develop high-quality software, collaborate with cross-functional teams…",
    "remoteOptions": ["100% Remote Work"],
    "jobSchedules": ["Full-Time"],
    "jobTypes": ["Employee"],
    "careerLevel": ["Experienced"],
    "educationLevels": ["Bachelor's Degree"],
    "salaryMin": 89600,
    "salaryMax": 176300,
    "salaryCurrency": "USD",
    "salaryPeriod": "Annually",
    "salaryText": "89,600.00 - 176,300.00 USD Annually",
    "locations": ["Washington, DC"],
    "states": ["DC"],
    "countries": ["United States"],
    "categories": ["Software Development", "Engineering"],
    "benefits": ["Health/Medical Insurance", "Dental Insurance", "401k Matching"],
    "isFlexibleSchedule": false,
    "isFreelancingContract": false,
    "isTelecommute": true,
    "postedDate": "2026-08-17T05:29:02Z"
}
```

#### Output fields

| Field | Type | Description |
| --- | --- | --- |
| `id` | string | Unique FlexJobs job ID. |
| `title` | string | Job title. |
| `url` | string | Job page URL. |
| `summary` | string | Job summary. |
| `remoteOptions` | array | Remote level (100% Remote, Hybrid…). |
| `jobSchedules` / `jobTypes` | array | Schedule and employment type. |
| `careerLevel` / `educationLevels` | array | Required experience and education. |
| `salaryMin` / `salaryMax` / `salaryCurrency` / `salaryPeriod` | | Parsed salary range. |
| `salaryText` | string | Original salary text. |
| `locations` / `states` / `countries` | array | Location details. |
| `categories` | array | Job categories. |
| `benefits` | array | Benefits package. |
| `isFlexibleSchedule` / `isFreelancingContract` / `isTelecommute` | boolean | Flexibility flags. |
| `postedDate` | string | Posting date. |

You can download the dataset as **JSON, CSV, Excel, HTML, RSS or XML**, or fetch it programmatically through the Apify API.

***

### 🚀 How to use FlexJobs Scraper (step by step)

1. Click **Try for free** / **Start**.
2. Type one or more **search keywords** — or paste a **FlexJobs search URL**.
3. Set **maxItems** to how many jobs you want.
4. Click **Save & Start**.
5. When the run finishes, open the **Dataset** tab and **Export** to your preferred format — or grab it via API.

That's it. No code required.

***

### 💡 Use cases

- **Remote-work market research** — Analyze remote vs hybrid demand, salaries and categories at scale.
- **Salary benchmarking** — Aggregate parsed salary ranges by role, category and remote level.
- **Job boards & aggregators** — Feed fresh remote & flexible listings into your own portal.
- **Hiring-trend analytics** — Track which categories and career levels are hiring remotely.
- **Benefits analysis** — See which benefits packages employers offer for remote roles.
- **Recruitment intelligence** — Monitor the remote-jobs landscape by keyword and schedule.

***

### 🏠 Why the remote & salary data matters

FlexJobs is built around **flexible work**, so this actor surfaces exactly what remote-work analysts need: the **remote level** (100% Remote vs Hybrid), the **parsed salary range**, the **schedule and career level**, and the **benefits** — for every listing. That's a focused remote-jobs dataset, not a generic job dump.

***

### ⏱️ How many jobs can I collect?

A single keyword can span hundreds of pages of listings. Set `maxItems` to control the volume, and run several keywords or filtered URLs for broad coverage. Schedule regular runs to keep the data current.

***

### 🔌 Integrations & automation

Because this runs on Apify, you can:

- 📅 **Schedule** runs (daily, weekly) to keep a live remote-jobs feed.
- 🔗 Push results to **Google Sheets, Airtable, Slack, Zapier, Make, or any webhook**.
- 🧩 Call it from your backend with the **Apify API** and SDKs (JavaScript / Python).
- 🔔 Use **webhooks** to trigger downstream workflows the moment a run completes.

#### Call via API (example)

```bash
curl -X POST "https://api.apify.com/v2/acts/YOUR_ACTOR_ID/runs?token=YOUR_TOKEN" \
  -H "Content-Type: application/json" \
  -d '{
        "searchQueries": ["developer"],
        "maxItems": 300
      }'
```

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

const client = new ApifyClient({ token: 'YOUR_TOKEN' });
const run = await client.actor('YOUR_ACTOR_ID').call({
    searchQueries: ['marketing'],
    maxItems: 500,
});
const { items } = await client.dataset(run.defaultDatasetId).listItems();
console.log(items);
```

***

### ❓ FAQ

**Do I need a FlexJobs account or API key?**
No. Just provide a search keyword or a FlexJobs search URL.

**Does it detect remote vs hybrid?**
Yes — `remoteOptions` tags each job as 100% Remote, Hybrid, or flexible.

**Does it include salary?**
Yes, when the listing states it. The salary range is parsed into `salaryMin`, `salaryMax`, `salaryCurrency` and `salaryPeriod`, plus the original `salaryText`.

**Does it include benefits and career level?**
Yes — `benefits`, `careerLevel` and `educationLevels` are included where provided.

**Can I filter by remote level, schedule or category?**
Yes. Apply filters on FlexJobs itself, then paste the resulting URL into `startUrls`.

**Are results deduplicated?**
Yes. Each job is uniquely identified and appears once per run.

**What formats can I export?**
JSON, CSV, Excel, HTML, RSS and XML — via the dashboard or the API.

**How do I keep data fresh?**
Schedule the actor to run on the interval you need; each run returns the current live listings.

***

### 📌 Tips for best results

- **Start narrow, then widen.** Test one keyword with a small `maxItems`, confirm the fields, then scale up.
- **Use search URLs for filters.** FlexJobs' own filters (remote level, schedule, category) give you exactly the segment you want.
- **Compare on remote level.** Segment by `remoteOptions` to analyze 100% Remote vs Hybrid demand.
- **Schedule for freshness.** The remote market moves daily; a scheduled run keeps your dataset current.

***

### ⚖️ Legal & responsible use

This actor is intended for lawful data collection such as market research, analytics and recruitment. You are responsible for how you use the collected data. Only collect publicly available information, respect the target website's Terms of Service and `robots.txt`, and comply with all applicable laws and regulations. Do not use the data for spam or any unlawful purpose. This actor is an independent tool and is **not affiliated with, endorsed by, or connected to FlexJobs** or its parent companies. All trademarks belong to their respective owners.

***

### 🛟 Support

Questions, feature requests or an issue with the data? Open an issue on the actor's page — feedback is welcome and helps improve the tool.

***

⭐ **If this actor saves you time, please leave a review — it really helps!**

# Actor input Schema

## `searchQueries` (type: `array`):

Job keywords to search on FlexJobs (e.g. developer, marketing, customer service, data analyst). The scraper paginates automatically.

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

Paste FlexJobs search URLs with filters applied (e.g. https://www.flexjobs.com/search?searchkeyword=marketing\&remoteoptions=100%25%20Remote%20Work). Scraped in addition to the search queries.

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

Maximum number of job listings to collect across all queries and URLs.

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

Proxy settings. Apify Proxy is enabled by default and recommended for reliable, uninterrupted results.

## Actor input object example

```json
{
  "searchQueries": [
    "developer"
  ],
  "maxItems": 200,
  "proxyConfiguration": {
    "useApifyProxy": true
  }
}
```

# Actor output Schema

## `id` (type: `string`):

FlexJobs job ID

## `title` (type: `string`):

Job title

## `url` (type: `string`):

Job page URL

## `summary` (type: `string`):

Job summary

## `remoteOptions` (type: `string`):

Remote work options

## `careerLevel` (type: `string`):

Career level

## `salaryMin` (type: `string`):

Minimum salary

## `salaryMax` (type: `string`):

Maximum salary

## `salaryText` (type: `string`):

Salary text

## `locations` (type: `string`):

Job locations

## `categories` (type: `string`):

Job categories

## `postedDate` (type: `string`):

Posting date

# 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 = {
    "searchQueries": [
        "developer"
    ],
    "maxItems": 200
};

// Run the Actor and wait for it to finish
const run = await client.actor("haketa/flexjobs-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 = {
    "searchQueries": ["developer"],
    "maxItems": 200,
}

# Run the Actor and wait for it to finish
run = client.actor("haketa/flexjobs-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 '{
  "searchQueries": [
    "developer"
  ],
  "maxItems": 200
}' |
apify call haketa/flexjobs-scraper --silent --output-dataset

```

## MCP server setup

```json
{
    "mcpServers": {
        "apify": {
            "type": "http",
            "url": "https://mcp.apify.com/?tools=fetch-actor-details,haketa/flexjobs-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/sC1CjePiM7euZJVXu/builds/B5mdu0eCFfvwlDjVa/openapi.json
