# InfoJobs Scraper - Spain Jobs, Full Descriptions & Companies (`haketa/infojobs-scraper`) Actor

Scrape InfoJobs, Spain's #1 job board. Extract job offers by keyword, city or category: title, company, location, contract type, working day, remote/hybrid and the full job description. Export to JSON, CSV or Excel for recruiting, aggregation and lead generation.

- **URL**: https://apify.com/haketa/infojobs-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.75 / 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

## InfoJobs Scraper 🇪🇸

**Extract job offers from InfoJobs — Spain's #1 job board — into clean, structured data.** Search by keyword, city or category and export thousands of jobs with company, location, contract type, working day, remote/hybrid flag, publish date and the full job description. Perfect for recruiters, job aggregators, market-salary research, lead generation and labor-market analytics.

[![Actor](https://img.shields.io/badge/Apify-Actor-00b04f?style=flat-square\&logo=apify)](https://apify.com)
[![Country](https://img.shields.io/badge/Market-Spain%20🇪🇸-c60b1e?style=flat-square)](https://apify.com)
[![Data](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-blue?style=flat-square)](https://apify.com)
[![Full description](https://img.shields.io/badge/Job%20description-Full%20text-success?style=flat-square)](https://apify.com)
[![Remote filter](https://img.shields.io/badge/Remote%2FHybrid-Filter-orange?style=flat-square)](https://apify.com)
[![No code](https://img.shields.io/badge/No--code-Friendly-9cf?style=flat-square)](https://apify.com)
[![Integrations](https://img.shields.io/badge/Integrations-API%20%7C%20Webhooks-lightgrey?style=flat-square)](https://apify.com)
[![Maintained](https://img.shields.io/badge/Maintained-Yes-brightgreen?style=flat-square)](https://apify.com)

***

### 🎯 What does InfoJobs Scraper do?

InfoJobs is the largest employment marketplace in Spain, with hundreds of thousands of active vacancies across every industry and region. This actor turns any InfoJobs search into a structured dataset you can download or pipe into your own tools.

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

- 🔎 Open the InfoJobs results page and **read every job offer** on it
- 📄 Automatically **paginate** through all result pages until it reaches your limit
- 🧹 Return **clean, deduplicated, structured records** — no HTML, no clutter
- 📝 Include the **full job description** for each offer (not just a snippet)
- 🏢 Capture **company name and company profile link**
- 🌍 Flag **remote / hybrid / on-site** so you can filter modern work arrangements
- ⬇️ Export to **JSON, CSV, Excel, HTML or via API** in one click

No login, no browser extensions, no manual copy-paste. Point it at a search and get a spreadsheet.

***

### ✨ Key features

| Feature | Description |
| --- | --- |
| **Keyword or URL input** | Paste an InfoJobs search URL, or just type keywords like `developer`, `marketing`, `enfermero`. |
| **Full job description** | Every record includes the complete description text, ready for NLP, keyword search or salary parsing. |
| **Automatic pagination** | Walks through all result pages up to your `maxItems` limit. |
| **Remote / hybrid filter** | Toggle **Only remote / hybrid jobs** to keep just Teletrabajo & Híbrido offers. |
| **Deduplicated output** | Each offer appears once, identified by its unique InfoJobs code. |
| **Company data** | Company name, profile URL and logo for lead generation and enrichment. |
| **Rich metadata** | Contract type, working day, city/province, executive flag and publish date. |
| **Any scale** | Collect 10 offers or tens of thousands — you set the limit. |
| **Clean exports** | JSON, CSV, Excel, HTML table, RSS or JSON API. |
| **Integrations** | Connect to Google Sheets, Slack, Zapier, Make, webhooks and more. |

***

### 📥 Input

The actor accepts a simple, no-code input form. You can drive it two ways:

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

Just type one or more keywords:

```json
{
    "keywords": ["developer", "data analyst"],
    "maxItems": 200
}
```

#### Option B — by search URL (most control)

Configure any filters you like on InfoJobs (city, category, salary, experience, contract…), copy the URL from your browser, and paste it in:

```json
{
    "startUrls": [
        { "url": "https://www.infojobs.net/ofertas-trabajo/marketing?provincia=28" }
    ],
    "onlyTeleworking": true,
    "maxItems": 500
}
```

#### Input parameters

| Field | Type | Description |
| --- | --- | --- |
| `startUrls` | array | InfoJobs results-page URLs. Configure your filters on the site, then paste the URL. |
| `keywords` | array | Job keywords to search. Used when no `startUrls` are given. |
| `onlyTeleworking` | boolean | Keep only remote (Teletrabajo) or hybrid (Híbrido) offers. Default `false`. |
| `maxItems` | integer | Maximum number of offers to collect. Default `200`. |
| `proxyConfiguration` | object | Proxy settings. A proxy is recommended for reliable results. |

***

### 📤 Output

Each job offer is returned as a clean JSON object:

```json
{
    "id": "a1b2c3d4e5f6g7h8",
    "url": "https://www.infojobs.net/madrid/senior-developer-net-fullstack/of-ia1b2c3d4e5f6g7h8",
    "title": "Senior Developer .NET Fullstack",
    "company": "Weber Solutions S.L.U",
    "companyUrl": "https://www.infojobs.net/weber-solutions/em-i123456",
    "companyLogo": "https://images.infojobs.net/logos/...",
    "city": "Madrid",
    "province": "Madrid",
    "contractType": "Contrato indefinido",
    "workday": "Jornada completa",
    "teleworking": "Híbrido",
    "isExecutive": false,
    "publishedAt": "2026-08-10T09:14:00.000Z",
    "description": "Buscamos un/a Senior Developer .NET con experiencia en..."
}
```

#### Output fields

| Field | Type | Description |
| --- | --- | --- |
| `id` | string | Unique InfoJobs offer code. |
| `url` | string | Direct link to the job offer. |
| `title` | string | Job title. |
| `company` | string | Hiring company name. |
| `companyUrl` | string | Company profile page URL. |
| `companyLogo` | string | Company logo image URL. |
| `city` | string | Job location city. |
| `province` | string | Province / region code, when available. |
| `contractType` | string | Contract type (e.g. *Contrato indefinido*, *temporal*). |
| `workday` | string | Working day (e.g. *Jornada completa*, *parcial*). |
| `teleworking` | string | Work arrangement: *Presencial*, *Híbrido* or *Teletrabajo*. |
| `isExecutive` | boolean | Whether the offer is flagged as an executive / management role. |
| `publishedAt` | string | Publish date in ISO 8601 format. |
| `description` | string | Full job description text. |

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

***

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

1. Click **Try for free** / **Start**.
2. Type a **keyword** (e.g. `developer`) — or paste an **InfoJobs search URL** with your filters.
3. (Optional) Enable **Only remote / hybrid jobs**.
4. Set **maxItems** to how many offers you want.
5. Click **Save & Start**.
6. 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

- **Recruitment & sourcing** — Monitor who is hiring for which roles, in which cities, and reach out to companies directly.
- **Job boards & aggregators** — Feed fresh Spanish vacancies into your own portal or newsletter.
- **Salary & market research** — Parse thousands of descriptions to analyze demand, skills, contract types and remote-work trends.
- **Lead generation** — Build lists of companies actively hiring (a strong buying signal) with their profile links and logos.
- **Competitive intelligence** — Track a competitor's open roles to infer growth, tech stack and expansion plans.
- **Labor-market analytics** — Quantify demand by region, sector, contract type or teleworking arrangement over time.
- **HR & talent teams** — Benchmark your own postings against the live market.

***

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

As many as the search returns. Set `maxItems` to control the volume — from a quick sample of 10 to full-market sweeps of tens of thousands. For very large jobs, split by city or category across multiple runs for the freshest, most complete coverage.

***

### 🔌 Integrations & automation

Because this runs on Apify, you can:

- 📅 **Schedule** runs (hourly, daily, weekly) to keep a live feed of new vacancies.
- 🔗 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 '{
        "keywords": ["developer"],
        "maxItems": 200
      }'
```

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

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

***

### ❓ FAQ

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

**Does it return the full job description?**
Yes — the complete description text is included for every offer, ready for search, NLP or salary extraction.

**Can I get only remote or hybrid jobs?**
Yes. Enable **Only remote / hybrid jobs** and the actor keeps just Teletrabajo and Híbrido offers.

**Can I filter by city, category, salary or experience?**
Yes. Apply any filters on InfoJobs itself, then paste the resulting URL into `startUrls`. All of the site's filters are supported this way.

**Are results deduplicated?**
Yes. Each offer is uniquely identified and appears only 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.

**Is there a salary field?**
Many InfoJobs listings don't publish salary. When a range isn't shown on the offer, it can't be returned — but the full description often contains compensation details you can parse.

**Can I run this on a schedule and only get new jobs?**
Yes. Schedule regular runs and deduplicate against previous datasets using the `id` field on your side, or use Apify's dataset tooling.

***

### 📌 Tips for best results

- **Start narrow, then widen.** Test with a single keyword and a small `maxItems`, confirm the fields look right, then scale up.
- **Use search URLs for precision.** InfoJobs' own filters (province, category, contract, experience) give you exactly the segment you want — just paste the URL.
- **Split large sweeps.** For nationwide coverage, run several searches (by city or sector) in parallel for speed and completeness.
- **Schedule for freshness.** The job 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, including data-protection rules such as the **GDPR** when processing any personal data. 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 InfoJobs** 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

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

Search on InfoJobs (by keyword, city, category, filters…) and paste the resulting results-page URL here (e.g. https://www.infojobs.net/ofertas-trabajo/developer). The scraper paginates automatically. Leave empty to use the keywords below.

## `keywords` (type: `array`):

One or more job keywords to search (e.g. developer, marketing, enfermero). Used only when no search URL is provided above.

## `onlyTeleworking` (type: `boolean`):

When enabled, keep only offers marked as remote (Teletrabajo) or hybrid (Híbrido).

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

Maximum number of job offers to collect across all URLs / keywords.

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

Proxy settings. A proxy is recommended for reliable, uninterrupted results.

## Actor input object example

```json
{
  "startUrls": [
    {
      "url": "https://www.infojobs.net/ofertas-trabajo/developer"
    }
  ],
  "keywords": [
    "developer"
  ],
  "onlyTeleworking": false,
  "maxItems": 200,
  "proxyConfiguration": {
    "useApifyProxy": true
  }
}
```

# Actor output Schema

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

InfoJobs offer code

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

Direct link to the job offer

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

Job title

## `company` (type: `string`):

Hiring company name

## `companyUrl` (type: `string`):

Company profile URL

## `city` (type: `string`):

Job location city

## `contractType` (type: `string`):

Contract type

## `workday` (type: `string`):

Working day (full/part time)

## `teleworking` (type: `string`):

On-site, hybrid or remote

## `publishedAt` (type: `string`):

Publish date (ISO)

## `description` (type: `string`):

Job 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 = {
    "startUrls": [
        {
            "url": "https://www.infojobs.net/ofertas-trabajo/developer"
        }
    ],
    "keywords": [
        "developer"
    ],
    "maxItems": 200
};

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

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

```

## MCP server setup

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