# Jobicy Remote Jobs Scraper (`hipersoft/jobicy-scraper`) Actor

Scrape remote job listings from Jobicy: job title, company, industry, type, level, location/region, salary, description and post date. Filter by keyword tag, region and industry. One row per job as JSON, CSV or Excel.

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

## Pricing

from $0.00075 / 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?

An Actor is a serverless cloud program that runs on the Apify platform. It has two run modes.
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.

Apify vocabulary and the platform model are defined once, in the agent quickstart at https://apify.com/agents.md.

## 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.

Do not guess an integration path. Every one of them is in the agent quickstart at https://apify.com/agents.md: the Apify MCP server, Agent Skills with the Apify CLI, the JavaScript and Python clients, the REST API, and the account-free path for an agent with no human to sign in. It also carries the rule on stating cost before the first paid run.

For examples already wired to this Actor's own input schema, see the [API](#api) section below.

Each client library has reference documentation the quickstart does not restate: [JavaScript/TypeScript](https://docs.apify.com/api/client/js/docs.md) (`npm install apify-client`) and [Python](https://docs.apify.com/api/client/python/docs.md) (`pip install apify-client`).

# README

## Jobicy Remote Jobs Scraper

Collect **remote job listings from Jobicy** with the **Jobicy Remote Jobs Scraper**. Filter by keyword, region and industry and export each job's **title, company, industry, type, level, location, salary, description and post date** — one clean row per job as **JSON, CSV or Excel**.

Built for **job boards, remote-work aggregators, recruiters and job-market research**, it turns Jobicy's remote job feed into a structured, filterable dataset.

### What it does

- 🌍 **Remote jobs** — worldwide remote roles across many industries.
- 🔎 **Filter by keyword, region & industry** — target the exact roles you want.
- 🧾 **Rich fields** — title, company, logo, industry, job type, level, region, salary range and full description.
- 📅 **Freshness** — each job includes its publish date.
- 📤 **Export anywhere** — JSON, CSV or Excel, or straight into a job board, sheet or dashboard.

### Example output

```json
{
  "title": "Forward Deployed Engineer, Python",
  "company": "Socket",
  "industry": "Cybersecurity",
  "jobType": "Full-Time",
  "location": "USA",
  "salaryMin": 125000,
  "salaryMax": 200000,
  "salaryCurrency": "USD",
  "url": "https://jobicy.com/jobs/..."
}
```

### How to use it

1. Add one or more **keyword tags** (e.g. `python`, `marketing`).
2. Optionally filter by **region** and **industry**.
3. Set **Max jobs** and run. Download the results as **JSON, CSV or Excel**.

### Input fields

| Field | Description |
|-------|-------------|
| **Keyword tags** | Keywords to filter jobs by; each runs its own query. |
| **Region** | Region filter (usa, europe, uk, apac, latam…). |
| **Industry** | Industry filter (engineering, marketing, design…). |
| **Max jobs** | Maximum jobs per query (feed returns up to 50 latest matches). |

### Output fields

`id`, `title`, `company`, `companyLogo`, `industry`, `jobType`, `jobLevel`, `location`, `excerpt`, `description`, `salaryMin`, `salaryMax`, `salaryCurrency`, `salaryPeriod`, `publishedAt`, `url`.

### Popular use cases

- **Remote job boards** — feed fresh remote roles into your own site.
- **Recruiting** — track remote openings by keyword and region.
- **Market research** — analyse remote hiring by industry and salary.
- **Aggregators** — combine with other job sources into one feed.

### FAQ

**Do I need an account or key?**
No. Add your filters and run.

**How many jobs can I get?**
The feed returns up to 50 of the latest matching jobs per query; use several keyword tags to widen coverage.

**Can I filter to a region or industry?**
Yes — set the region and industry filters to narrow the results.

**Can I export to Excel or Google Sheets?**
Yes — results download as JSON, CSV or Excel and integrate with Sheets and dashboards.

***

Structured **remote job listings** — title, company, salary, region and description — filterable and export-ready for boards, recruiting and research.

# Actor input Schema

## `searchTags` (type: `array`):

Keywords to filter jobs by — e.g. 'python', 'marketing', 'design'. Each runs its own query. Leave empty for the latest jobs.

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

Filter by region — e.g. 'usa', 'europe', 'uk', 'apac', 'latam'. Leave blank for worldwide.

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

Filter by industry — e.g. 'engineering', 'marketing', 'design', 'sales', 'customer-support'.

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

Maximum jobs to collect per query (the feed returns up to 50 of the latest matching jobs).

## Actor input object example

```json
{
  "searchTags": [
    "python"
  ],
  "maxItems": 50
}
```

# Actor output Schema

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

The 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 = {
    "searchTags": [
        "python"
    ]
};

// Run the Actor and wait for it to finish
const run = await client.actor("hipersoft/jobicy-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 = { "searchTags": ["python"] }

# Run the Actor and wait for it to finish
run = client.actor("hipersoft/jobicy-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 '{
  "searchTags": [
    "python"
  ]
}' |
apify call hipersoft/jobicy-scraper --silent --output-dataset

```

## MCP server setup

```json
{
    "mcpServers": {
        "apify": {
            "type": "http",
            "url": "https://mcp.apify.com/?tools=fetch-actor-details,hipersoft/jobicy-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/5y2BfH03cKt289XoN/builds/VgoDBtFO6D7wkW2Et/openapi.json
