VOOZH about

URL: https://apify.com/blackfalcondata/cadremploi-scraper

⇱ Cadremploi Scraper | French Executive Job Listings Β· Apify


πŸ‘ Cadremploi Scraper β€” French Executive & Management Jobs avatar

Cadremploi Scraper β€” French Executive & Management Jobs

Pricing

from $1.50 / 1,000 results

Go to Apify Store

Cadremploi Scraper β€” French Executive & Management Jobs

Scrape cadremploi.fr β€” France's leading job board for executives and managers (cadres). Salary ranges, apply links, contact details, employment types, and full job descriptions. Incremental mode detects new and changed listings.

Pricing

from $1.50 / 1,000 results

Rating

0.0

(0)

Developer

πŸ‘ Black Falcon Data

Black Falcon Data

Maintained by Community

Actor stats

3

Bookmarked

18

Total users

10

Monthly active users

a day ago

Last modified

Share

What does Cadremploi Scraper do?

Cadremploi Scraper extracts structured job data from cadremploi.fr β€” including salary data, contact details (email, apply URL), company metadata, and full descriptions. It supports keyword search, location filters, and controllable result limits, so you can run the same query consistently over time. The actor also offers detail enrichment (full descriptions, company profiles, and contact information) where the source provides them.

New to Apify? Sign up free and use the included $5 monthly platform credit to test this actor.

Key features

  • ♻️ Incremental mode β€” recurring runs emit only NEW / UPDATED / REAPPEARED records β€” UNCHANGED and EXPIRED are opt-in. First run builds the baseline; subsequent runs emit and charge only for the diff. Pair with notifications for daily "new jobs" alerts to your hiring team. Saves 80–95% on daily monitoring.
  • πŸ”” Notifications β€” Telegram, Slack, Discord, WhatsApp Cloud API, generic webhook β€” out of the box. Pair with incremental + notifyOnlyChanges for daily "new Cadremploi jobs" pings to your hiring channel.
  • πŸ”— Paste-mode β€” paste any cadremploi.fr URL straight from your browser β€” single-job pages, search-results URLs, or category SEO URLs. Build the search you want in the UI, copy the URL, paste it here.
  • 🎯 Batch searches β€” batch ["python developer", "data engineer", "ML engineer"] in one run β€” one dedup state across all searches, single dataset, one Actor-Start charge instead of N.
  • πŸ“§ Email + phone extraction β€” best-effort regex extraction of contact emails and phone numbers from the listing description. Populated only when the source listing exposes the data β€” many listings hide contact info behind apply-flows, so null/empty is normal. Both extractedEmails and extractedPhones are arrays; an empty array means the page was scanned but nothing matched, while null means the extraction step was skipped.
  • πŸ”— URL + social-profile extraction β€” every record carries extractedUrls[] and structured socialProfiles { linkedin, twitter, github, … } parsed from the description β€” useful when employers drop their careers page or recruiter LinkedIn in-line.
  • πŸ“‹ Detail enrichment β€” two-stage mode: list, then enrich each job with the full description + detail-page fields (apply counts, education, etc.). One toggle, no extra orchestration.
  • πŸ“¦ Compact mode β€” AI-agent and MCP-friendly compact payloads with core fields only β€” pipe straight into your ATS, salary-benchmarking tool, or LLM context without parsing extras.
  • βœ‚οΈ Description truncation β€” cap description length with descriptionMaxLength to control LLM prompt cost and dataset size β€” set 0 for full descriptions, or any char-limit to trim.
  • πŸ“Œ Change classification β€” each record carries a changeType of NEW / UPDATED / UNCHANGED / REAPPEARED / EXPIRED. Default emits NEW + UPDATED + REAPPEARED; opt into the others with emitUnchanged / emitExpired. Repost detection flags previously-expired listings that come back.
  • πŸ”Œ MCP connectors β€” export your results into Notion via Apify's MCP connectors β€” a clean run-summary page, no glue code. Opt-in via the App connector field; deterministic field-mapping, no AI. Built on Apify's connector framework, so more destinations open up as their catalog grows.

What data can you extract from cadremploi.fr?

Each result includes Core listing fields (jobId, jobKey, title, location, salaryText, salaryMin, salaryMax, and salaryCurrency, and more), detail fields when enrichment is enabled (description, descriptionHtml, descriptionMarkdown, descriptionLength, and detailFetched), contact and apply information (contactEmail, contactPhone, contactName, and applyUrl), and company metadata (company and companyUrl). In standard mode, all fields are always present β€” unavailable data points are returned as null, never omitted. In compact mode, only core fields are returned.

Enable detail enrichment in the input to get richer fields such as full descriptions, company profiles, and contact information where the source provides them.

Input

The main inputs are a search keyword, an optional location filter, and a result limit. Additional filters and options are available in the input schema.

Key parameters:

  • query β€” Job search keywords. Use JSON array for multi-query.
  • country β€” Which cadremploi.fr market to search. (default: "FR")
  • location β€” City, state, or region. Use JSON array for multi-location.
  • startUrls β€” Direct search or job detail URLs.
  • maxResults β€” Maximum total job listings to return (0 = unlimited). Runs use 1024 MB memory regardless of result count. If both maxResults and maxPages are set, maxResults takes precedence. (default: 25)
  • maxPages β€” Maximum SERP pages to scrape per search source. Automatically raised when Max Results requires more pages, so this is rarely a hard cap. If both maxResults and maxPages are set, maxResults takes precedence. (default: 5)
  • includeDetails β€” Fetch each job's detail page for full description, salary data, and company info. (default: true)
  • includeCompanyProfile β€” Fetch company overview pages for industry, headcount, and more. (default: false)
  • descriptionMaxLength β€” Truncate description to this many characters. 0 = no truncation. (default: 0)
  • compact β€” Output only core fields (for AI-agent/MCP workflows). (default: false)
  • incrementalMode β€” Compare against previous run state. Requires stateKey. (default: false)
  • stateKey β€” Optional stable identifier for the tracked search universe. Leave empty to auto-derive a stable identifier from your search inputs β€” different keyword/location/filter combinations get isolated state automatically.
  • ...and 18 more parameters

Input examples

Basic search β€” Keyword-driven search with a result cap.

β†’ Full payload per result β€” all standard fields populated where the source provides them.

{
"query":"dΓ©veloppeur",
"maxResults":50
}

Incremental tracking β€” Only emit jobs that changed since the previous run with this stateKey.

β†’ First run builds the baseline state. Subsequent runs emit only records that are new or whose tracked content changed. Set emitUnchanged: true to include unchanged records as well.

{
"query":"dΓ©veloppeur",
"maxResults":200,
"incrementalMode":true,
"stateKey":"dΓ©veloppeur-tracker"
}

Compact output for AI agents β€” Return only core fields for AI-agent and MCP workflows.

β†’ Small payload with the most important fields β€” ideal for piping into LLMs without token overhead.

{
"query":"dΓ©veloppeur",
"maxResults":50,
"compact":true
}

Output

Each run produces a dataset of structured job records. Results can be downloaded as JSON, CSV, or Excel from the Dataset tab in Apify Console.

Example job record

{
"jobId":"7e69c9d5b5ef6324ba0add9cd9e427b5ff9375879dbacd08c17ab8636d11ea63",
"jobKey":"156534173526930002",
"title":"Commercial H/F",
"company":"FIPARC",
"companyUrl":null,
"location":"Paris, Ile-de-France, 75008",
"description":"<p>Dun contexte de croissance et de dΓ©veloppement de sa Business Unit Vente Indirecte, FIPARC recrute un Commercial BtoB H/F.</p>\n<p> </p>\n<p>Poste et missions</p>\n<p><br/>RattachΓ© au Directeur de la...",
"descriptionHtml":"<p><p>Dun contexte de croissance et de dΓ©veloppement de sa Business Unit Vente Indirecte, FIPARC recrute un Commercial BtoB H/F.</p><br><p> </p><br><p>Poste et missions</p><br><p><br/>RattachΓ© au Dire...",
"descriptionMarkdown":"Dun contexte de croissance et de dΓ©veloppement de sa Business Unit Vente Indirecte, FIPARC recrute un Commercial BtoB H/F.\n\nPoste et missions\n\nRattachΓ© au Directeur de la BU Indirecte, vous Γͺtes en ch...",
"descriptionLength":2263,
"salaryText":null,
"salaryMin":null,
"salaryMax":null,
"salaryCurrency":null,
"salaryType":null,
"employmentType":"FULL_TIME",
"postedDate":"2026-05-15T00:06:37.730Z",
"validThrough":null,
"portalUrl":"https://www.cadremploi.fr/emploi/detail_offre?offreId=156534173526930002",
"canonicalUrl":"https://www.cadremploi.fr/emploi/detail_offre?offreId=156534173526930002",
"applyUrl":"https://www.cadremploi.fr/emploi/detail_offre?offreId=156534173526930002",
"contactEmail":"apply+6a466df4-08c1-416e-b258-818a26e1eb8c@apply-cv.xtramile.io",
"contactPhone":null,
"contactName":null,
"sourceUrl":"https://www.cadremploi.fr/emploi/detail_offre?offreId=156534173526930002",
"sourceCountry":"FR",
"sourceDomain":"www.cadremploi.fr",
"searchQuery":"commercial",
"searchUrl":"https://www.cadremploi.fr/emploi/liste_offres?motscles=commercial",
"isSponsored":false,
"scrapedAt":"2026-05-16T08:14:07.744Z",
"fetchedAt":"2026-05-16T08:14:11.507Z",
"detailFetched":true,
"contentHash":"ec9db5459a82315a1acddf20d0bf4b4ee476eff7b12e98c70214a84a8a3d5887",
"contentQuality":"full",
"extractedEmails":[],
"extractedPhones":[],
"extractedUrls":[
"http://vceint01.back.adencf.local:8152",
"http://www.w3.org/2000/svg",
"http://www.w3.org/2000/svg&#39;%20viewBox=&#39;0%200%201237.9%20130.8&#39;%20style=&#39;enable-background:new%200%200%201237.9%20130.8&#39;%20xml:space=&#39;preserve&#39;%3e%3cpath%20d=&#39;M182.6%201.2h20.3l54.8%20125.4h-23.1l-12.6-30h-58.9l-12.8%2030.1h-22.4L182.6%201.2zm31.4%2076-21.5-49.8-21.3%2049.8H214zm66.8-75.1h46.4c39.1%200%2066.2%2026.9%2066.2%2061.9v.4c0%2035-27%2062.3-66.2%2062.3h-46.4V2.1zm46.5%20104.6c26.2%200%2043.2-17.6%2043.2-42v-.4c0-24.4-17.1-42.3-43.2-42.3h-24.5v84.7h24.5zM421.7%202.1h55.5c15.6%200%2027.9%204.6%2035.9%2012.4%206.6%206.8%2010.3%2016%2010.3%2026.9v.4c0%2020.5-12.3%2032.7-29.7%2037.7l33.6%2047.1h-25.8L471%2083.3h-27.4v43.4h-21.9V2.1zm54%2061.8c15.6%200%2025.6-8.2%2025.6-20.8v-.4c0-13.3-9.6-20.6-25.8-20.6h-31.8v41.8h32zm76.4-61.8h92.3v19.6H574v32.4h62.4v19.6H574v33.4h71.3v19.6h-93.2V2.1zm121%200h23.3L734.3%2061l37.9-58.9h23.3v124.5h-21.9V37.4l-39.3%2058.7h-.7l-39-58.4v88.9h-21.5V2.1zm156.2%200h49.1c29%200%2047.3%2016.5%2047.3%2041.6v.4c0%2027.9-22.4%2042.5-49.8%2042.5h-24.7v40h-21.9V2.1zm47.3%2064.8c16.5%200%2026.9-9.3%2026.9-22.2v-.4c0-14.6-10.5-22.2-26.9-22.2h-25.4v44.8h25.4zm73.3-64.8h21.9v104.6h65.5v19.9H950V2.1zm106.4%2062.6v-.4c0-35%2027-64.4%2065.3-64.4s64.9%2029%2064.9%2064v.4c0%2035-27%2064.4-65.3%2064.4a63%2063%200%200%201-64.9-64zm107.3%200v-.4c0-24.2-17.6-44.3-42.3-44.3-24.7%200-42%2019.7-42%2043.9v.4c0%2024.2%2017.6%2044.3%2042.3%2044.3%2024.7.1%2042-19.7%2042-43.9zm52.5-25.2v87.1h21.9V25a80.2%2080.2%200%200%201-21.9%2014.5zm0-37.4v33.5a83.4%2083.4%200%200%200%2021.9-14.5v-19h-21.9zM1.4%2078.3c2.8%204.3%2030.3%2036.3%2069.4%2029.5-2.3.3-4.7.5-7.2.5-23.7%200-40.8-19.8-40.8-43.9V64c0-24.2%2017.1-43.6%2040.8-43.6%2014.1%200%2024.7%206.2%2034.6%2015.4l13.9-16.1A65%2065%200%200%200%2063.7.5%2062.8%2062.8%200%200%200%200%2064.4a72.5%2072.5%200%200%200%201.4%2013.9zm98.1%2015.5a51.3%2051.3%200%200%201-27.8%2016.3C32.8%20117.9%204.4%2086.7%201.5%2082.4a62.1%2062.1%200%200%200%2062.8%2048.4c23.1-.6%2037-9.5%2049.5-23.2L99.5%2093.8c-8.6%208.4%200%200%200%200z&#39;%20style=&#39;fill:%23fff&#39;/%3e%3c/svg%3e",
"http://www.w3.org/2000/svg&#39;%20viewBox=&#39;0%200%201237.9%20130.8&#39;%20style=&#39;fill:currentColor&#39;%20xml:space=&#39;preserve&#39;%3e%3cpath%20d=&#39;M182.6%201.2h20.3l54.8%20125.4h-23.1l-12.6-30h-58.9l-12.8%2030.1h-22.4L182.6%201.2zm31.4%2076-21.5-49.8-21.3%2049.8H214zm66.8-75.1h46.4c39.1%200%2066.2%2026.9%2066.2%2061.9v.4c0%2035-27%2062.3-66.2%2062.3h-46.4V2.1zm46.5%20104.6c26.2%200%2043.2-17.6%2043.2-42v-.4c0-24.4-17.1-42.3-43.2-42.3h-24.5v84.7h24.5zM421.7%202.1h55.5c15.6%200%2027.9%204.6%2035.9%2012.4%206.6%206.8%2010.3%2016%2010.3%2026.9v.4c0%2020.5-12.3%2032.7-29.7%2037.7l33.6%2047.1h-25.8L471%2083.3h-27.4v43.4h-21.9V2.1zm54%2061.8c15.6%200%2025.6-8.2%2025.6-20.8v-.4c0-13.3-9.6-20.6-25.8-20.6h-31.8v41.8h32zm76.4-61.8h92.3v19.6H574v32.4h62.4v19.6H574v33.4h71.3v19.6h-93.2V2.1zm121%200h23.3L734.3%2061l37.9-58.9h23.3v124.5h-21.9V37.4l-39.3%2058.7h-.7l-39-58.4v88.9h-21.5V2.1zm156.2%200h49.1c29%200%2047.3%2016.5%2047.3%2041.6v.4c0%2027.9-22.4%2042.5-49.8%2042.5h-24.7v40h-21.9V2.1zm47.3%2064.8c16.5%200%2026.9-9.3%2026.9-22.2v-.4c0-14.6-10.5-22.2-26.9-22.2h-25.4v44.8h25.4zm73.3-64.8h21.9v104.6h65.5v19.9H950V2.1zm106.4%2062.6v-.4c0-35%2027-64.4%2065.3-64.4s64.9%2029%2064.9%2064v.4c0%2035-27%2064.4-65.3%2064.4a63%2063%200%200%201-64.9-64zm107.3%200v-.4c0-24.2-17.6-44.3-42.3-44.3-24.7%200-42%2019.7-42%2043.9v.4c0%2024.2%2017.6%2044.3%2042.3%2044.3%2024.7.1%2042-19.7%2042-43.9zm52.5-25.2v87.1h21.9V25a80.2%2080.2%200%200%201-21.9%2014.5zm0-37.4v33.5a83.4%2083.4%200%200%200%2021.9-14.5v-19h-21.9zM1.4%2078.3c2.8%204.3%2030.3%2036.3%2069.4%2029.5-2.3.3-4.7.5-7.2.5-23.7%200-40.8-19.8-40.8-43.9V64c0-24.2%2017.1-43.6%2040.8-43.6%2014.1%200%2024.7%206.2%2034.6%2015.4l13.9-16.1A65%2065%200%200%200%2063.7.5%2062.8%2062.8%200%200%200%200%2064.4a72.5%2072.5%200%200%200%201.4%2013.9zm98.1%2015.5a51.3%2051.3%200%200%201-27.8%2016.3C32.8%20117.9%204.4%2086.7%201.5%2082.4a62.1%2062.1%200%200%200%2062.8%2048.4c23.1-.6%2037-9.5%2049.5-23.2L99.5%2093.8c-8.6%208.4%200%200%200%200z&#39;%20style=&#39;fill:%232c303a&#39;%20/%3e%3c/svg%3e",
"https://accounts.google.com/gsi/client",
"https://api-cv.carriere.fcms.io",
"https://cadremploi.fr/emploi/detail_offre?offreId=156534173526930002",
"https://cadremploi.zendesk.com/hc/fr",
"https://cdn-cadremploi.carriere.fcms.io/assets/img/logos/ce/logo-ce-bleu.svg",
"https://ce-alert-api.carriere.fcms.io",
"https://ce-edito-api.carriere.fcms.io/editorial/api",
"https://classifieds.lefigaro.fr/tag/cadremploi",
"https://espace-recruteurs.cadremploi.fr",
"https://fr-fr.facebook.com/Cadremploi",
"https://hr-cdn.carriere.fcms.io/assets/ce-front/main-20260512041906-f9cf2e81",
"https://hr-cdn.carriere.fcms.io/assets/ce-front/main-20260512041906-f9cf2e81/_nuxt/BPk3zJt9.js",
"https://hr-cdn.carriere.fcms.io/assets/ce-front/main-20260512041906-f9cf2e81/_nuxt/BwRIHnnG.js",
"https://hr-cdn.carriere.fcms.io/assets/ce-front/main-20260512041906-f9cf2e81/_nuxt/D467vt12.js",
"https://hr-cdn.carriere.fcms.io/assets/ce-front/main-20260512041906-f9cf2e81/_nuxt/DjGHglEo.js",
"https://hr-cdn.carriere.fcms.io/assets/ce-front/main-20260512041906-f9cf2e81/_nuxt/DvPxw1TM.js",
"https://hr-cdn.carriere.fcms.io/assets/ce-front/main-20260512041906-f9cf2e81/_nuxt/app-store.D32XLR7N.svg",
"https://hr-cdn.carriere.fcms.io/assets/ce-front/main-20260512041906-f9cf2e81/_nuxt/builds/meta/a51478dd-f9d0-454c-bcb0-dbba1791d215.json",
"https://hr-cdn.carriere.fcms.io/assets/ce-front/main-20260512041906-f9cf2e81/_nuxt/detail_offre.B6A7qi3y.css",
"https://hr-cdn.carriere.fcms.io/assets/ce-front/main-20260512041906-f9cf2e81/_nuxt/entry.Bks3hfFK.css",
"https://hr-cdn.carriere.fcms.io/assets/ce-front/main-20260512041906-f9cf2e81/_nuxt/not-found.KpGQKKHd.svg",
"https://hr-cdn.carriere.fcms.io/assets/ce-front/main-20260512041906-f9cf2e81/_nuxt/useFcaHit.DhWHjWvP.css",
"https://hr-cdn.carriere.fcms.io/assets/ce-front/main-20260512041906-f9cf2e81/_nuxt/useSchema.DCJUvhau.css",
"https://hr-cdn.carriere.fcms.io/assets/ce-front/main-20260512041906-f9cf2e81/_nuxt/user-logged.D67GBZ2e.webp",
"https://hr-cdn.carriere.fcms.io/assets/ce-front/main-20260512041906-f9cf2e81/_nuxt/user-not-logged.DJR8wkXZ.webp",
"https://hr-cdn.carriere.fcms.io/assets/ce-front/main-20260512041906-f9cf2e81/_nuxt/vD3HLy7X.js",
"https://hr-cdn.carriere.fcms.io/assets/ce-front/main-20260512041906-f9cf2e81/_nuxt/vuetify-css.CZrzPrB6.css",
"https://imagedelivery.net/BN-U87wrUjbdYBHZwNH6NA/a8313ae0-caa6-455c-4c1b-eae071317500/logo100",
"https://imagedelivery.net/BN-U87wrUjbdYBHZwNH6NA/a8313ae0-caa6-455c-4c1b-eae071317500/logo150",
"https://imagedelivery.net/BN-U87wrUjbdYBHZwNH6NA/a8313ae0-caa6-455c-4c1b-eae071317500/logo80",
"https://imagedelivery.net/BN-U87wrUjbdYBHZwNH6NA/a8313ae0-caa6-455c-4c1b-eae071317500/public",
"https://imagedelivery.net/BN-U87wrUjbdYBHZwNH6NA/bbaea74d-8209-4056-89f9-1c90c1492100/logo100",
"https://imagedelivery.net/BN-U87wrUjbdYBHZwNH6NA/bbaea74d-8209-4056-89f9-1c90c1492100/logo150",
"https://imagedelivery.net/BN-U87wrUjbdYBHZwNH6NA/bbaea74d-8209-4056-89f9-1c90c1492100/logo80",
"https://imagedelivery.net/BN-U87wrUjbdYBHZwNH6NA/bbaea74d-8209-4056-89f9-1c90c1492100/public",
"https://itunes.apple.com/app/apple-store/id383089648?pt=318717&amp;ct=footerCadremploi&amp;mt=8",
"https://lh3.googleusercontent.com/7wT5lB2DxOFHOOcXGDErnTJWdWV5BpJ8da2HZtQCQstxhgK_P8q8KiDn21XOZBohPHlQci4dG1QjNjJ2HEN-KM3mb-b6lF4BNA=w100-h100",
"https://lh3.googleusercontent.com/7wT5lB2DxOFHOOcXGDErnTJWdWV5BpJ8da2HZtQCQstxhgK_P8q8KiDn21XOZBohPHlQci4dG1QjNjJ2HEN-KM3mb-b6lF4BNA=w150-h150",
"https://lh3.googleusercontent.com/7wT5lB2DxOFHOOcXGDErnTJWdWV5BpJ8da2HZtQCQstxhgK_P8q8KiDn21XOZBohPHlQci4dG1QjNjJ2HEN-KM3mb-b6lF4BNA=w80-h80",
"https://lh3.googleusercontent.com/LFZUGrYKK4bOXt5Oh6jCbz3EqTz6nB52qj6ZVnd7pWK_n1zVL7DvW0FlIZuO0rS1ZdH_JqBRaMv_mbTfPW8A=w100-h100",
"https://lh3.googleusercontent.com/LFZUGrYKK4bOXt5Oh6jCbz3EqTz6nB52qj6ZVnd7pWK_n1zVL7DvW0FlIZuO0rS1ZdH_JqBRaMv_mbTfPW8A=w150-h150",
"https://lh3.googleusercontent.com/LFZUGrYKK4bOXt5Oh6jCbz3EqTz6nB52qj6ZVnd7pWK_n1zVL7DvW0FlIZuO0rS1ZdH_JqBRaMv_mbTfPW8A=w80-h80",
"https://localhost",
"https://location-api.carriere.fcms.io",
"https://rum-static.pingdom.net/pa-5bac91097e84eb0016000173.js",
"https://schema.org",
"https://services.cadremploi.fr",
"https://twitter.com/cadremploi",
"https://www.groupefigaro.com",
"https://www.instagram.com/cadremploi",
"https://www.linkedin.com/company/cadremploi",
"https://www.youtube.com/channel/UCoOHw1a7sPOBQ0_RaLVzYQA"
],
"socialProfiles":{
"linkedin":"https://www.linkedin.com/company/cadremploi",
"twitter":"https://twitter.com/cadremploi",
"instagram":"https://www.instagram.com/cadremploi",
"facebook":"https://fr-fr.facebook.com/Cadremploi",
"youtube":"https://www.youtube.com/channel/UCoOHw1a7sPOBQ0_RaLVzYQA",
"tiktok":null,
"github":null,
"xing":null,
"bluesky":null,
"threads":null,
"mastodon":null
},
"changeType":null,
"trackedHash":null,
"firstSeenAt":null,
"lastSeenAt":null,
"previousSeenAt":null,
"expiredAt":null,
"stateKey":null,
"isRepost":null,
"repostOfId":null,
"repostDetectedAt":null
}

Incremental fields

When incremental mode is on, each record also carries:

  • changeType β€” one of NEW, UPDATED, UNCHANGED, REAPPEARED, EXPIRED. Default output covers NEW / UPDATED / REAPPEARED; set emitUnchanged: true or emitExpired: true to opt into the others.
  • firstSeenAt, lastSeenAt β€” ISO-8601 timestamps tracking the listing across runs.
  • isRepost, repostOfId, repostDetectedAt β€” populated when a new listing matches the tracked content of a previously expired one. Set skipReposts: true to drop detected reposts from the output.

How to scrape cadremploi.fr

  1. Go to Cadremploi Scraper in Apify Console.
  2. Enter a search keyword and optional location filter.
  3. Set maxResults to control how many results you need.
  4. Enable includeDetails if you need full descriptions, contact info, company data.
  5. Click Start and wait for the run to finish.
  6. Export the dataset as JSON, CSV, or Excel.

Use cases

  • Extract job data from cadremploi.fr for market research and competitive analysis.
  • Track salary trends across regions and categories over time.
  • Monitor new and changed listings on scheduled runs without processing the full dataset every time.
  • Build outreach lists using contact details and apply URLs from listings.
  • Research company hiring patterns, employer profiles, and industry distribution.
  • Feed structured data into AI agents, MCP tools, and automated pipelines using compact mode.
  • Export clean, structured data to dashboards, spreadsheets, or data warehouses.

How much does it cost to scrape cadremploi.fr?

Cadremploi Scraper uses pay-per-event pricing. You pay a small fee when the run starts and then for each result that is actually produced.

  • Run start: $0.00005 per run
  • Per result: $0.0015 per job record

Example costs:

  • 10 results: $0.015
  • 25 results: $0.038
  • 100 results: $0.15
  • 200 results: $0.3
  • 500 results: $0.75

Example: recurring monitoring savings

These examples compare full re-scrapes with incremental runs at different churn rates. Churn is the share of listings that are new or whose tracked content changed since the previous run. Actual churn depends on your query breadth, source activity, and polling frequency β€” the scenarios below are examples, not predictions.

Example setup: 100 results per run, daily polling (30 runs/month). Event-pricing examples scale linearly with result count.

Churn rateFull re-scrape run costIncremental run costSavings vs full re-scrapeMonthly cost after baseline
5% β€” stable niche query$0.15$0.00755$0.14 (95%)$0.23
15% β€” moderate broad query$0.15$0.02$0.13 (85%)$0.68
30% β€” high-volume aggregator$0.15$0.05$0.10 (70%)$1.35

Full re-scrape monthly cost at daily polling: $4.50. First month with incremental costs $0.37 / $0.80 / $1.46 for the 5% / 15% / 30% scenarios because the first run builds baseline state at full cost before incremental savings apply.

FAQ

How many results can I get from cadremploi.fr?

The number of results depends on the search query and available listings on cadremploi.fr. Use the maxResults parameter to control how many results are returned per run.

Does Cadremploi Scraper support recurring monitoring?

Yes. Enable incremental mode to only receive new or changed listings on subsequent runs. This is ideal for scheduled monitoring where you want to track changes over time without re-processing the full dataset.

Can I integrate Cadremploi Scraper with other apps?

Yes. Cadremploi Scraper works with Apify's integrations to connect with tools like Zapier, Make, Google Sheets, Slack, and more. You can also use webhooks to trigger actions when a run completes.

Can I use Cadremploi Scraper with the Apify API?

Yes. You can start runs, manage inputs, and retrieve results programmatically through the Apify API. Client libraries are available for JavaScript, Python, and other languages.

Can I use Cadremploi Scraper through an MCP Server?

Yes. Apify provides an MCP Server that lets AI assistants and agents call this actor directly. Use compact mode, descriptionMaxLength, a single descriptionFormat, and excludeEmptyFields to keep payloads manageable for LLM context windows.

Is it legal to scrape cadremploi.fr?

This actor extracts publicly available data from cadremploi.fr. Web scraping of public information is generally considered legal, but you should always review the target site's terms of service and ensure your use case complies with applicable laws and regulations, including GDPR where relevant.

Your feedback

If you have questions, need a feature, or found a bug, please open an issue on the actor's page in Apify Console. Your feedback helps us improve.

You might also like

Getting started with Apify

New to Apify? Create a free account with $5 credit β€” no credit card required.

  1. Sign up β€” $5 platform credit included
  2. Open this actor and configure your input
  3. Click Start β€” export results as JSON, CSV, or Excel

Need more later? See Apify pricing.

You might also like

Cadremploi.fr Scraper

unfenced-group/cadremploi-scraper

Scrape job listings from Cadremploi.fr β€” France's leading executive and management job board. Full job details including salary range, company info & LLM-ready descriptions in HTML, text and Markdown. daysOld filtering & repost detection. No API key required.

πŸ‘ User avatar

Unfenced Group

17

Cadremploi Fr Jobs Extractor

kawsar/cadremploi-fr-jobs-extractor

Cadremploi France jobs scraper that collects active job postings, salaries, contract types, and locations from Cadremploi.fr, so recruitment teams can track hiring trends and automate candidate sourcing with ease.

Cadremploi.fr Jobs Scraper

shahidirfan/Cadremploi-fr-Jobs-Scraper

Harvest job opportunities from Cadremploi.fr with precision. Scrape job titles, companies, salaries, locations & descriptions instantly. Built for recruiters, market researchers & talent teams. Real-time data extraction with pagination support. Start analyzing French job market today.

7

5.0

APEC.fr Scraper - French Executive Jobs

blackfalcondata/apec-scraper

Scrape apec.fr - French executive job listings with salary ranges, company, location, skills, contract type, recruiter contact, and apply URLs. Incremental tracking for new and changed roles across runs.

πŸ‘ User avatar

Black Falcon Data

5

France Travail Jobs Scraper πŸ’° $0.95/1K

blackfalcondata/francetravail-scraper

Scrape francetravail.fr - France's official national job board. Salary ranges, skills, and contact data from 700 k+ listings. Incremental mode detects only new and changed listings on each scheduled monitoring run for efficient daily tracking.

πŸ‘ User avatar

Black Falcon Data

14

5.0

Totaljobs Scraper πŸ’° $1.39/1K β€” UK’s Largest Job Board

blackfalcondata/totaljobs-scraper

Scrape totaljobs.com - UK’s largest job board. Salary data, employer contact details, full job descriptions, and job change monitoring. Incremental mode detects new and changed listings. Compact output for AI agents and MCP workflows.

πŸ‘ User avatar

Black Falcon Data

16

5.0

Hellowork Jobs Scraper β€” France Job Listings

blackfalcondata/hellowork-scraper

Scrape hellowork.com β€” France's major job board. Salary ranges, structured location data, and incremental change tracking. Incremental mode flags new and changed listings between runs so you only process what moved. Export to JSON or CSV and pipe straight into your pipeline.

πŸ‘ User avatar

Black Falcon Data

28

5.0

Jobat.be Jobs Scraper - Belgium Job Board

blackfalcondata/jobat-scraper

Scrape jobat.be - Belgium’s leading job board with 80K+ listings in Dutch and French. Structured salary, 3 description formats, and employer contact data. Incremental mode detects new and changed listings. Compact output for AI agents and MCP workflows.

πŸ‘ User avatar

Black Falcon Data

10

Karriere.at Scraper β€” Austrian Job Listings with Salary & Phone

blackfalcondata/karriere-at-scraper

Scrape karriere.at β€” Austria's #1 job portal with 20,000+ listings. Structured EUR salary (min/max/period), recruiter contact info with phone, remote work filters, employment types, and full job descriptions. Incremental mode detects new and changed listings.

πŸ‘ User avatar

Black Falcon Data

21

5.0

Duunitori Scraper - Finland Job Listings

blackfalcondata/duunitori-scraper

Scrape duunitori.fi - Finland's largest job board with 22,000+ listings. Salary ranges, employment types, and employer details. Incremental mode detects only new and changed listings on each scheduled monitoring run for efficient daily tracking.

πŸ‘ User avatar

Black Falcon Data

26

5.0