# 🇫🇷 APEC France Executive Jobs Scraper (`hipersoft/apec-scraper`) Actor

Scrape executive and manager job listings from APEC, France's leading job board for cadres. Search any keyword and export one clean row per offer: job title, company, location, contract type, salary, publication date and the offer URL as JSON, CSV or Excel.

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

## Pricing

from $0.0015 / listing 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

## 🇫🇷 APEC France Executive Jobs Scraper — Cadres Job Listings

Scrape executive and manager job listings from **APEC** (Association pour l'emploi des cadres), France's leading job board for **cadres**, into clean, structured **JSON, CSV or Excel**. Search any **keyword** and pull every matching offer — **one tidy row per job**: **job title, company, location, contract type, salary, publication date and the offer URL**. Built for recruitment analytics, salary benchmarking, market research and hiring automations.

### Features

- 💼 **Executive & manager roles** — the full breadth of APEC's cadre-level offers, from engineering and IT to finance, sales, HR and marketing.
- 🔎 **Keyword search** — run one or many keywords at once (e.g. `developpeur`, `chef de projet`, `ingenieur commercial`); each returns its own matching offers.
- 🏢 **Company & location** — the hiring company name and the job's town/department for every offer.
- 📝 **Contract type** — CDI, CDD, alternance/apprentissage or mission, ready to filter and group.
- 💰 **Salary text** — the advertised salary range exactly as published, where available.
- 📅 **Publication date** — a clean ISO timestamp so you can track new offers over time.
- 🔗 **Direct offer URL** — a ready-to-open link to each job on APEC.
- 📄 **Volume control** — set `maxItems` to balance coverage and cost.

### Input

```json
{
  "queries": ["developpeur", "chef de projet"],
  "maxItems": 100
}
```

| Field | Description |
| --- | --- |
| `queries` | One or more keywords to search on APEC. Each runs its own search and results are combined. |
| `maxItems` | Maximum offers to collect across all searches (0 = no limit). |
| `maxConcurrency` | How many requests to run in parallel. Leave at the default unless you have a reason to change it. |
| `proxyConfiguration` | Proxy settings. Not required by default. |

#### How to search

Enter one or more `queries` and run to collect matching offers. Set `maxItems` to control how much you collect. Leave a keyword blank or use a broad term to pull the widest set of executive offers.

### Use cases

- Benchmark salaries for cadre roles across France by job title and region.
- Build and refresh a recruitment dataset for market and hiring analysis.
- Monitor new executive offers for specific keywords and skills.
- Track which companies are hiring and for which contract types.
- Feed structured job records into an ATS, spreadsheet or analytics pipeline.

### What you get

Each offer is one dataset record:

```json
{
  "offerId": "179261918W",
  "id": 179261918,
  "numeroOffre": "179261918W",
  "title": "Concepteur développeur (Développeur informatique) F/H",
  "company": "CD Consulting",
  "confidential": false,
  "location": "Wasquehal - 59",
  "latitude": 50.6751234,
  "longitude": 3.1279233,
  "contractType": "CDI",
  "contractTypeCode": 101888,
  "contractDurationMonths": null,
  "salary": "45 - 50 k€ brut annuel",
  "description": "Notre client, Dickson Constant, est leader mondial des textiles techniques...",
  "sector": 101118,
  "logoUrl": "https://www.apec.fr/media_entreprise/718992/logo_CD_CONSULTING.png",
  "publishedDate": "2026-09-02T16:51:05.000Z",
  "validatedDate": "2026-09-02T16:51:05.000Z",
  "url": "https://www.apec.fr/candidat/recherche-emploi.html/detail-offre/apec_179261918W",
  "sourceQuery": "developpeur",
  "collectedAt": "2026-09-05T18:40:00.000Z"
}
```

#### Output schema

| Field | Type | Description |
|---|---|---|
| `offerId` | string | APEC's public offer number (also used to build the offer URL). |
| `id` | integer | APEC's numeric identifier for the offer. |
| `numeroOffre` | string | The offer reference number. |
| `title` | string | Job title. |
| `company` | string | Hiring company name (`null` for confidential offers). |
| `confidential` | boolean | Whether the company is hidden on the offer. |
| `location` | string | Job location (town and department). |
| `latitude` | number | Latitude of the job location, where provided. |
| `longitude` | number | Longitude of the job location, where provided. |
| `contractType` | string | Readable contract type (e.g. `CDI`, `CDD`, `Alternance / Apprentissage`). |
| `contractTypeCode` | integer | APEC's numeric contract-type code. |
| `contractDurationMonths` | number | Contract duration in months, where applicable. |
| `salary` | string | Advertised salary range as published, where available. |
| `description` | string | Offer summary text. |
| `sector` | integer | APEC's numeric sector-of-activity code. |
| `logoUrl` | string (URL) | Company logo URL, where available. |
| `publishedDate` | string | Publication date (ISO 8601). |
| `validatedDate` | string | Validation date (ISO 8601). |
| `url` | string (URL) | Direct link to the offer on APEC. |
| `sourceQuery` | string | The keyword this offer was collected from. |
| `collectedAt` | string | When the row was collected (ISO 8601). |

### Related Actors

- [Indeed Scraper](https://apify.com/hipersoft/indeed-scraper)
- [StepStone Jobs Scraper](https://apify.com/hipersoft/stepstone-scraper)
- [Reed Jobs Scraper](https://apify.com/hipersoft/reed-scraper)
- [Naukri Jobs Scraper](https://apify.com/hipersoft/naukri-scraper)

### FAQ

**Do I need an APEC account?**
No. Just enter a keyword and run.

**What kind of jobs does APEC list?**
APEC specialises in **cadre** (executive, manager and senior professional) roles across France — engineering, IT, finance, sales, HR, marketing and more.

**How is salary reported?**
As the `salary` text exactly as published on the offer (e.g. `45 - 50 k€ brut annuel`), where the employer provides it.

**How many offers can I collect?**
As many as your search returns. Use `maxItems` to control volume and cost.

**What export formats are supported?**
JSON, CSV, Excel and XML, plus the Apify API for programmatic access.

**Can I use this with n8n?**
Yes. Use the [Apify node for n8n](https://docs.apify.com/platform/integrations/n8n) to run this Actor and pull its dataset straight into an n8n workflow — trigger it on a schedule, then route the job rows to a database, spreadsheet or messaging step.

**Can I connect it to other tools?**
This Actor connects with almost any cloud service or web app thanks to [integrations on the Apify platform](https://apify.com/integrations). It works with [Make](https://apify.com/integrations/make), [Zapier](https://apify.com/integrations/zapier), [Slack](https://docs.apify.com/platform/integrations/slack), [Airbyte](https://docs.apify.com/platform/integrations/airbyte), [GitHub](https://docs.apify.com/platform/integrations/github), [Google Drive](https://docs.apify.com/platform/integrations/drive) and [many more](https://apify.com/integrations), plus the [Apify API](https://docs.apify.com/api/v2), JavaScript/Python clients and MCP. Or use [webhooks](https://docs.apify.com/platform/integrations/webhooks) to trigger an action whenever a run finishes.

### Notes

Returns only public APEC offer data — the same information any visitor can see. This is an independent tool and is not affiliated with, endorsed by or connected to APEC; "APEC" is a trademark of its respective owner. Original clean-room implementation.

# Actor input Schema

## `queries` (type: `array`):

One or more keywords to search on APEC — for example 'developpeur', 'chef de projet' or 'ingenieur commercial'. Each keyword runs its own search and the results are combined into a single dataset.

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

Maximum number of job offers to collect across all searches (0 = no limit; collect everything the searches return).

## `maxConcurrency` (type: `integer`):

How many requests to run in parallel. Leave at the default unless you have a reason to change it.

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

Proxy settings. Not required by default. If you experience reduced results, enable an Apify proxy for the most reliable access.

## Actor input object example

```json
{
  "queries": [
    "developpeur"
  ],
  "maxItems": 100,
  "maxConcurrency": 5,
  "proxyConfiguration": {
    "useApifyProxy": false
  }
}
```

# 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 = {
    "queries": [
        "developpeur"
    ]
};

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

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

```

## MCP server setup

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