# Jobicy.com Scraper (`hoholabs/jobicy-scraper`) Actor

Browse remote job listings from Jobicy.com by region, industry, and keyword. No API key required.

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

## Pricing

from $1.00 / 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.com Scraper

Browse remote job listings from [Jobicy.com](https://jobicy.com) by region, industry, and keyword. No API key required.

***

### Why this scraper?

- **No credentials needed** — Jobicy's public API requires no registration or API key
- **Global remote jobs** — filter by region (USA, UK, Europe, Canada, Australia, and more)
- **Industry filter** — narrow by engineering, marketing, design-multimedia, accounting-finance, and more
- **Keyword search** — search across job titles and descriptions
- **Salary data** — min/max salary with currency on many listings
- **Rich job data** — seniority level, employment type, full HTML description, company logo

***

### What you can fetch

| Mode | Description |
|------|-------------|
| `browse` | Browse remote jobs with optional geo, industry, and keyword filters |

***

### Usage

#### Browse all remote jobs

```json
{
  "queryType": "browse"
}
```

#### Filter by region

```json
{
  "queryType": "browse",
  "geo": "usa"
}
```

#### Filter by industry and keyword

```json
{
  "queryType": "browse",
  "industry": "engineering",
  "tag": "python"
}
```

#### Combine all filters

```json
{
  "queryType": "browse",
  "geo": "usa",
  "industry": "engineering",
  "tag": "react",
  "count": 20
}
```

***

### Input fields

| Field | Type | Default | Description |
|-------|------|---------|-------------|
| `queryType` | string | `browse` | Must be `browse` |
| `geo` | string | `usa` | Region filter — must be a valid Jobicy geo slug (e.g. usa, uk, europe, canada, australia, apac, emea, latam, germany, ukraine). Clear the field for all regions. See valid values below. |
| `industry` | string | — | Industry/category — must be a valid Jobicy industry slug (e.g. engineering, marketing, design-multimedia, accounting-finance, data-science, hr, seller). See valid values below. |
| `tag` | string | — | Keyword search across titles and descriptions (free text, e.g. python, react) |
| `count` | integer | `50` | Max results to return (1–100) |

#### Valid `industry` slugs

`admin-support`, `business`, `copywriting`, `design-multimedia`, `supporting`, `cybersecurity`, `data-science`, `admin`, `education`, `accounting-finance`, `healthcare`, `hr`, `legal`, `marketing`, `management`, `project-management`, `qa-testing`, `seller`, `seo`, `engineering`, `technical-support`, `web-app-design`

#### Valid `geo` slugs

Regions: `apac`, `emea`, `latam`, `europe`. Countries: `argentina`, `australia`, `austria`, `belgium`, `brazil`, `bulgaria`, `canada`, `china`, `costa-rica`, `croatia`, `cyprus`, `czechia`, `denmark`, `estonia`, `finland`, `france`, `germany`, `greece`, `hong-kong`, `hungary`, `ireland`, `israel`, `italy`, `japan`, `latvia`, `lithuania`, `malaysia`, `mexico`, `netherlands`, `new-zealand`, `norway`, `philippines`, `poland`, `portugal`, `romania`, `serbia`, `singapore`, `slovakia`, `slovenia`, `south-korea`, `spain`, `sweden`, `switzerland`, `thailand`, `turkiye`, `united-arab-emirates`, `uk`, `ukraine`, `usa`, `vietnam`. Omit `geo` entirely to get jobs from all regions. Passing an invalid slug returns HTTP 400.

***

### Output fields

| Field | Type | Description |
|-------|------|-------------|
| `id` | integer | Jobicy job ID |
| `url` | string | Job page URL on Jobicy |
| `jobSlug` | string | URL-friendly job slug |
| `jobTitle` | string | Job title |
| `companyName` | string | Company name |
| `companyLogo` | string | Company logo URL |
| `jobIndustry` | array | Industry/category tags |
| `jobType` | array | Employment type (e.g. Full-Time) |
| `jobGeo` | string | Geographic region or country |
| `jobLevel` | string | Seniority level (e.g. Senior, Director, Any) |
| `jobExcerpt` | string | Short plain-text excerpt |
| `pubDate` | string | ISO 8601 publication date |
| `salaryMin` | integer | Minimum salary (may be absent) |
| `salaryMax` | integer | Maximum salary (may be absent) |
| `salaryCurrency` | string | Salary currency (may be absent) |
| `salaryPeriod` | string | Salary period, e.g. yearly (may be absent) |
| `jobDescription` | string | Full job description (HTML) |

***

### Use cases

- Build a remote job board with region and industry filtering
- Research salary ranges by region and seniority level
- Monitor new remote job postings by keyword or industry
- Aggregate global remote jobs for a niche career platform
- Build job alert tools targeting specific geographies and skills

***

### Latency & caching

| Data | Cache TTL |
|------|-----------|
| Job listings | 4 hours |

***

### Disclaimer

This scraper uses Jobicy's public API. It is not affiliated with or endorsed by Jobicy. Use responsibly; the API requires attribution and prohibits redistribution to aggregator sites (Jooble, Google Jobs, LinkedIn, etc.). See [Jobicy's API docs](https://jobicy.com/jobs-rss-feed) for full terms.

# Actor input Schema

## `queryType` (type: `string`):

What to fetch: browse remote jobs (geo / industry / keyword filters).

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

Filter by geographic region (e.g. usa, uk, europe, canada, australia, worldwide).

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

Filter by industry/category (e.g. engineering, design, marketing, sales, finance).

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

Keyword search across job titles and descriptions (e.g. python, react, product manager).

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

Maximum number of jobs to return (1–100, default 100).

## Actor input object example

```json
{
  "queryType": "browse",
  "geo": "usa",
  "count": 50
}
```

# Actor output Schema

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

No description

# 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("hoholabs/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 = {}

# Run the Actor and wait for it to finish
run = client.actor("hoholabs/jobicy-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 hoholabs/jobicy-scraper --silent --output-dataset

```

## MCP server setup

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

```

## OpenAPI specification

Download the OpenAPI definition: https://api.apify.com/v2/acts/1fARPeuB9O8bJcTrs/builds/msevzANasTgRA1zf8/openapi.json
