# Jobicy Remote Jobs Scraper (Official API) (`ahmdshrif/jobicy-remote-jobs-scraper`) Actor

Exports remote job listings from the official Jobicy API including title, company, geo, salary, industry, level, and full description.

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

## Pricing

$3.00 / 1,000 run starteds

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/actors/running/actors-in-store.md#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

Exports remote job listings from the official Jobicy API, including title, company, geographic eligibility, salary range, seniority level, industry, and full HTML job description. Built for recruiters, job boards, market researchers, and anyone building a remote-jobs dataset or feed who needs structured, complete listings without scraping rendered HTML pages.

### Why this scraper

- Reads Jobicy's official JSON API directly instead of rendered pages, so every run returns the complete 17-field set — including salary range, seniority level, and full HTML description — with no missing fields from partial page parsing.
- Priced at $0.003 per run regardless of how many jobs come back, undercutting the only other full-featured alternative and costing a fraction of per-result pricing models.
- No personal data collected — output is limited to public job posting fields (title, company, salary, description), nothing about applicants or individuals.

### Output fields

| Field | Type | Description |
|---|---|---|
| id | integer | Jobicy internal job ID |
| url | string | Direct URL to the job posting on Jobicy |
| jobSlug | string | URL slug for the job posting |
| jobTitle | string | Job title |
| companyName | string | Hiring company name |
| companyLogo | string | URL of the company logo image |
| jobIndustry | string | Comma-separated industry categories for the job |
| jobType | string | Comma-separated employment types (e.g. Full-Time) |
| jobGeo | string | Comma-separated allowed geographic regions |
| jobLevel | string | Seniority level (e.g. Midweight, Senior) |
| jobExcerpt | string | Short plain-text summary of the job |
| jobDescription | string | Full HTML job description |
| pubDate | string | ISO 8601 publication date of the listing |
| salaryMin | integer | Minimum stated salary, if provided |
| salaryMax | integer | Maximum stated salary, if provided |
| salaryCurrency | string | Currency code for the salary range, if provided |
| salaryPeriod | string | Salary period, e.g. yearly, if provided |

### Input

```json
{
  "startUrls": [
    { "url": "https://jobicy.com/api/v2/remote-jobs?count=50" }
  ],
  "maxItems": 50
}
```

You can also target filtered endpoints, e.g. `https://jobicy.com/api/v2/remote-jobs?count=50&geo=usa` or `&industry=engineering`.

### Output

```json
{
  "id": 145862,
  "url": "https://jobicy.com/jobs/145862-enterprise-security-engineer",
  "jobSlug": "145862-enterprise-security-engineer",
  "jobTitle": "Enterprise Security Engineer",
  "companyName": "DoorDash",
  "companyLogo": "https://jobicy.com/data/server-nyc0409/galaxy/mercury/2025/06/82fc4967-221-1.jpeg",
  "jobIndustry": "Cybersecurity",
  "jobType": "Full-Time",
  "jobGeo": "USA",
  "jobLevel": "Midweight",
  "jobExcerpt": "About the Team Enterprise Security is the primary point of contact for employee-focused security across DoorDash, Wolt, and Deliveroo...",
  "jobDescription": "<h2><strong>About the Team</strong></h2><p>Enterprise Security is the primary point of contact for employee-focused security across DoorDash, Wolt, and Deliveroo...</p>",
  "pubDate": "2026-09-14T05:20:27+00:00",
  "salaryMin": 130600,
  "salaryMax": 192000,
  "salaryCurrency": "USD",
  "salaryPeriod": "yearly"
}
```

### Pricing

$0.003 per run started, charged once regardless of how many jobs are returned. A typical run (up to 50 listings, ~20 seconds) costs $0.003 total.

### Use cases

- Feeding a remote-jobs newsletter or Slack digest with fresh listings filtered by geo (e.g. USA-only roles) each morning.
- Building a salary-benchmarking dataset for remote engineering roles by pulling `salaryMin`/`salaryMax` across industries over time.
- Populating a niche job board's "remote" category with full descriptions and company logos without maintaining an HTML scraper.

# Actor input Schema

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

Pages to export.

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

Stop after this many records.

## Actor input object example

```json
{
  "startUrls": [
    {
      "url": "https://jobicy.com/api/v2/remote-jobs?count=50"
    },
    {
      "url": "https://jobicy.com/api/v2/remote-jobs?count=50&geo=usa"
    },
    {
      "url": "https://jobicy.com/api/v2/remote-jobs?count=50&industry=engineering"
    }
  ],
  "maxItems": 50
}
```

# Actor output Schema

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

One structured record per input URL.

# 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 = {
    "startUrls": [
        {
            "url": "https://jobicy.com/api/v2/remote-jobs?count=50"
        },
        {
            "url": "https://jobicy.com/api/v2/remote-jobs?count=50&geo=usa"
        },
        {
            "url": "https://jobicy.com/api/v2/remote-jobs?count=50&industry=engineering"
        }
    ]
};

// Run the Actor and wait for it to finish
const run = await client.actor("ahmdshrif/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 = { "startUrls": [
        { "url": "https://jobicy.com/api/v2/remote-jobs?count=50" },
        { "url": "https://jobicy.com/api/v2/remote-jobs?count=50&geo=usa" },
        { "url": "https://jobicy.com/api/v2/remote-jobs?count=50&industry=engineering" },
    ] }

# Run the Actor and wait for it to finish
run = client.actor("ahmdshrif/jobicy-remote-jobs-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 '{
  "startUrls": [
    {
      "url": "https://jobicy.com/api/v2/remote-jobs?count=50"
    },
    {
      "url": "https://jobicy.com/api/v2/remote-jobs?count=50&geo=usa"
    },
    {
      "url": "https://jobicy.com/api/v2/remote-jobs?count=50&industry=engineering"
    }
  ]
}' |
apify call ahmdshrif/jobicy-remote-jobs-scraper --silent --output-dataset

```

## MCP server setup

```json
{
    "mcpServers": {
        "apify": {
            "type": "http",
            "url": "https://mcp.apify.com/?tools=fetch-actor-details,ahmdshrif/jobicy-remote-jobs-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/oSpPrzaDckK97ehfm/builds/2Pzk6LFuyAa8DF6I4/openapi.json
