# Jobicy Remote Jobs Scraper – Listings, Salary & Apply Links (`ninhothedev/jobicy-remote-jobs-scraper`) Actor

$0.5/1K 🔥 Fast Jobicy remote jobs scraper! Title, company, geo, industry, salary & link — no key. JSON, CSV, Excel or API in seconds. Filter by geo & industry & pull remote jobs for boards & recruiting ⚡

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

## Pricing

from $0.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.

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

## Jobicy Remote Jobs Scraper

Scrape fresh **remote job listings from [Jobicy](https://jobicy.com/)** — one of the most active remote-work job boards — into clean, structured JSON, CSV, or Excel. No login, no API key, no cookies. Filter by **region, industry, or keyword** and get job title, company, geo, industry, job type, seniority level, salary range, full description, and a direct apply URL.

Perfect for **remote job aggregation, recruiting pipelines, and labor-market research**.

### Features

- ✅ **No API key / no login** — runs on the public Jobicy API, datacenter-proxy friendly (cheap to run).
- 🌍 **Filter by geo** — `usa`, `europe`, `uk`, `canada`, `apac`, and more.
- 🏷️ **Filter by industry & keyword** — e.g. `engineering`, `marketing`, `design`, plus free-text tags like `python` or `react`.
- 🧾 **Rich, normalized output** — salary min/max/currency, seniority level, clean plain-text description (HTML stripped), ISO timestamps.
- 🧱 **Fully nullable schema** — every field is safe to consume; missing values are `null`, never crashes.

### Input

| Field | Type | Description |
|-------|------|-------------|
| `mode` | select | `jobs` — fetch remote job listings (default). |
| `geo` | string | Optional region, e.g. `usa`, `europe`, `uk`, `canada`. Empty = worldwide. |
| `industry` | string | Optional industry, e.g. `engineering`, `marketing`, `design`, `sales`. |
| `tag` | string | Optional keyword matched against titles/content, e.g. `python`, `senior`. |
| `count` | integer | Number of jobs to fetch, 1–50 (default 50). |

#### Example input

```json
{
  "mode": "jobs",
  "geo": "usa",
  "industry": "engineering",
  "count": 50
}
```

> **Note on `count`:** the Jobicy API returns at most **50 jobs per request** when filters are applied, so `count` is capped at 50. To collect more jobs, run the actor multiple times with different `geo` / `industry` / `tag` combinations.

### Output

Each dataset item is one job:

```json
{
  "title": "System Developer",
  "company": "Ericsson",
  "company_logo": "https://jobicy.com/data/logo-221.png",
  "geo": "Canada",
  "industry": ["Software Engineering"],
  "job_type": ["Full-Time"],
  "level": "Senior",
  "description": "We are looking for a System Developer...",
  "excerpt": "Join our team building...",
  "salary_min": 81700,
  "salary_max": 105735,
  "salary_currency": "CAD",
  "url": "https://jobicy.com/jobs/147186-system-developer",
  "posted_at": "2026-07-20T03:20:06+00:00",
  "source": "jobicy",
  "job_id": "147186",
  "scraped_at": "2026-07-20T12:00:00+00:00"
}
```

### Use cases

- **Remote job aggregation** — feed a job board, newsletter, or Slack alert with fresh remote roles.
- **Recruiting & sourcing** — monitor competitor hiring and open roles by industry and region.
- **Market research** — analyze remote hiring trends, salary ranges, and in-demand skills over time.

### Pricing

Runs on cheap datacenter proxies — roughly **~$1 per 1,000 jobs** scraped. Pay only for what you use on the Apify platform.

### Related actors

- [Himalayas Jobs Scraper](https://apify.com/ninhothedev/himalayas-jobs-scraper)
- [RemoteOK Jobs Scraper](https://apify.com/ninhothedev/remoteok-jobs-scraper)
- [We Work Remotely Jobs Scraper](https://apify.com/ninhothedev/weworkremotely-jobs-scraper)
- [The Muse Jobs Scraper](https://apify.com/ninhothedev/muse-jobs-scraper)

### Keywords

jobicy scraper, remote jobs scraper, remote work api, job board scraper, remote job aggregator, jobs data, recruiting data, remote engineering jobs, work from home jobs, jobicy api, apify jobs scraper

***

*This actor uses only publicly available data from Jobicy's open API. It does not collect personal data. Use responsibly and in accordance with Jobicy's terms.*

# Actor input Schema

## `mode` (type: `string`):

What to scrape. Currently 'jobs' fetches remote job listings from the Jobicy API, optionally narrowed by the geo, industry and tag filters below.

## `geo` (type: `string`):

Optional region filter as used by Jobicy, e.g. 'usa', 'europe', 'uk', 'canada', 'apac'. Leave empty for worldwide remote jobs.

## `industry` (type: `string`):

Optional industry/category filter, e.g. 'engineering', 'marketing', 'design', 'sales', 'copywriting', 'supporting'. Leave empty for all industries.

## `tag` (type: `string`):

Optional free-text keyword to match against job titles and content, e.g. 'react', 'python', 'senior'. Leave empty to skip keyword filtering.

## `count` (type: `integer`):

How many jobs to fetch (1-50). The Jobicy API returns at most 50 jobs per request when filters are applied, so this is capped at 50. To gather more, run again with different geo/industry/tag filters.

## Actor input object example

```json
{
  "mode": "jobs",
  "geo": "usa",
  "industry": "engineering",
  "tag": "python",
  "count": 50
}
```

# 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 = {};

// Run the Actor and wait for it to finish
const run = await client.actor("ninhothedev/jobicy-remote-jobs-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 = {}

# Run the Actor and wait for it to finish
run = client.actor("ninhothedev/jobicy-remote-jobs-scraper").call(run_input=run_input)

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

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

```

## CLI example

```bash
echo '{}' |
apify call ninhothedev/jobicy-remote-jobs-scraper --silent --output-dataset

```

## MCP server setup

```json
{
    "mcpServers": {
        "apify": {
            "command": "npx",
            "args": [
                "mcp-remote",
                "https://mcp.apify.com/?tools=ninhothedev/jobicy-remote-jobs-scraper",
                "--header",
                "Authorization: Bearer <YOUR_API_TOKEN>"
            ]
        }
    }
}

```

## OpenAPI specification

Download the OpenAPI definition: https://api.apify.com/v2/actors/T8PlzXAJqC2oVBmwG/builds/23cem0ozxrsDrocid/openapi.json
