VOOZH about

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

⇱ Profesia.sk Scraper | Slovakia’s Largest Job Board Β· Apify


πŸ‘ Profesia.sk Scraper πŸ’° $1.45/1K β€” Slovakia Jobs avatar

Profesia.sk Scraper πŸ’° $1.45/1K β€” Slovakia Jobs

Pricing

from $1.45 / 1,000 results

Go to Apify Store

Profesia.sk Scraper πŸ’° $1.45/1K β€” Slovakia Jobs

Scrape profesia.sk - Slovakia’s largest job board. Capture salary data from listings and use incremental mode to keep recurring Slovak job searches focused on new and changed vacancies across the national market.

Pricing

from $1.45 / 1,000 results

Rating

0.0

(0)

Developer

πŸ‘ Black Falcon Data

Black Falcon Data

Maintained by Community

Actor stats

1

Bookmarked

11

Total users

5

Monthly active users

2 days ago

Last modified

Share

What does Profesia.sk Scraper do?

Profesia.sk Scraper extracts structured job data from profesia.sk β€” including salary data, contact details (email, apply URL), company metadata, full descriptions, and remote-work indicators. 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.
  • πŸ”— Paste-mode β€” paste any profesia.sk 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.
  • πŸ’° Structured salary β€” salary parsed into structured salaryMin / salaryMax / salaryCurrency / period β€” no string parsing on your side. Includes salaryHidden flag when the source filtered against a bracket but the listing itself doesn't disclose.
  • πŸ“§ Email + phone extraction β€” every record carries extractedEmails[] and extractedPhones[] regex-pulled from the description β€” direct-outreach lists with no extra processing step.
  • πŸ”— 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.
  • πŸ”” Notifications β€” Telegram, Slack, Discord, WhatsApp Cloud API, generic webhook β€” out of the box. Pair with incremental + notifyOnlyChanges for daily "new Profesia jobs" pings to your hiring channel.
  • πŸ“¦ 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.
  • πŸ“€ Export anywhere β€” Download the dataset as JSON, CSV, or Excel from the Apify Console, or stream live via the Apify API and integrations (Make, Zapier, Google Sheets, n8n, …).
  • πŸ”Œ 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 profesia.sk?

Each result includes Core listing fields (jobId, jobKey, title, location, remoteType, salaryText, salaryMin, and salaryMax, and more), detail fields when enrichment is enabled (description, descriptionHtml, descriptionLength, benefits, and detailFetched), contact and apply information (contactName, contactPhone, contactEmail, and applyUrl), and company metadata (company, companyUrl, companyId, and companyDescription). 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 (e.g. "programΓ‘tor", "software engineer"). Use JSON array for multi-query.
  • location β€” Region slug (e.g. "bratislavsky-kraj", "kosicky-kraj"). Use JSON array for multi-location.
  • category β€” Category slug from profesia.sk URL path (e.g. "informacne-technologie", "ekonomika-financie").
  • startUrls β€” Direct profesia.sk search or job detail URLs.
  • remoteFilter β€” Filter by remote work type.
  • jobType β€” Employment type filter slug from profesia.sk (e.g. "plny-uvazok" for full-time, "brigada" for part-time).
  • salaryMin β€” Minimum salary filter (EUR). Works with Salary Period.
  • salaryPeriod β€” Monthly or hourly for the salary filter. (default: "m")
  • maxResults β€” Maximum total job listings to return (0 = unlimited). 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. (default: 5)
  • includeDetails β€” Fetch each job's detail page for full description, salary, contact info, and company data. (default: true)
  • includeCompanyProfile β€” Enrich each listing with company profile data (description, employee range). (default: false)
  • ...and 22 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":"software engineer",
"maxResults":50
}

Filtered search β€” Narrow results with advanced filters β€” only matching jobs are returned.

β†’ Same field set as basic search; fewer, more relevant rows.

{
"query":"software engineer",
"jobType":"plny-uvazok",
"category":"informacne-technologie",
"maxResults":100
}

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":"software engineer",
"maxResults":200,
"incrementalMode":true,
"stateKey":"software-engineer-tracker"
}

Compact filtered output β€” Combine filters with compact mode for a lightweight AI-agent or MCP data source.

β†’ Core fields only β€” ideal for piping into LLMs or downstream tools without token overhead.

{
"query":"software engineer",
"jobType":"plny-uvazok",
"category":"informacne-technologie",
"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":"7d4642914a31c15dac5a464b5caab429f7f6420c339963ec5c8bd3010ab1cea5",
"jobKey":"5253969",
"title":"FrontEnd Developer",
"company":"Pro HR",
"companyUrl":"https://www.profesia.sk/praca/pro-hr/C56404",
"companyId":"56404",
"location":"PrΓ‘ca z domu",
"remoteType":"onsite",
"description":null,
"descriptionHtml":null,
"descriptionLength":0,
"salaryText":"Od 3 700 EUR/mesiac",
"salaryMin":3700,
"salaryMax":null,
"salaryCurrency":"EUR",
"salaryType":"MONTH",
"salaryGross":null,
"employmentType":null,
"postedDate":"2026-03-19",
"validThrough":"2026-04-19",
"startDate":null,
"education":null,
"benefits":"flexibilita\nprΓ‘ca s novΓ½mi technolΓ³giami\nbenefity (konzultuje sa s klientom)",
"category":"Informačné technológie",
"positions":[
"Frontend programΓ‘tor",
"IT analytik",
"Javascript programΓ‘tor",
"ProgramΓ‘tor",
"SoftvΓ©rovΓ½ inΕΎinier"
],
"contactName":"Mgr. Anna SpasovΓ‘",
"contactPhone":"+421 2 6241 3438, +421 911 525 022",
"contactEmail":"anna.spasova@prohr.skspolo",
"canonicalUrl":"https://www.profesia.sk/praca/pro-hr/O5253969",
"applyUrl":"https://www.profesia.sk/job-application-redirect/5253969?_locale=sk&inc_stat=3&refLogin=jobApplication",
"sourceUrl":"https://www.profesia.sk/praca/pro-hr/O5253969",
"portalUrl":"https://www.profesia.sk/praca/pro-hr/O5253969",
"sourceCountry":"SK",
"sourceDomain":"profesia.sk",
"searchQuery":"developer",
"searchUrl":"https://www.profesia.sk/praca/?search_anywhere=developer",
"isSponsored":false,
"scrapedAt":"2026-03-26T23:25:41.232Z",
"detailFetched":true,
"contentQuality":"serp_only",
"extractedEmails":[
"anna.spasova@prohr.skspolo"
],
"companyDescription":null,
"companyEmployeeRange":"10-19 zamestnancov"
}

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.
  • 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 profesia.sk

  1. Go to Profesia.sk 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 profesia.sk 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 profesia.sk?

Profesia.sk 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.01 per run
  • Per result: $0.00145 per job record

Example costs:

  • 10 results: $0.025
  • 25 results: $0.046
  • 100 results: $0.15
  • 200 results: $0.3
  • 500 results: $0.73

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.02$0.14 (89%)$0.52
15% β€” moderate broad query$0.15$0.03$0.12 (80%)$0.95
30% β€” high-volume aggregator$0.15$0.05$0.10 (65%)$1.60

Full re-scrape monthly cost at daily polling: $4.65. First month with incremental costs $0.66 / $1.08 / $1.71 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 profesia.sk?

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

Does Profesia.sk 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 Profesia.sk Scraper with other apps?

Yes. Profesia.sk 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 Profesia.sk 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 Profesia.sk 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 profesia.sk?

This actor extracts publicly available data from profesia.sk. 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

Profesia.sk Scraper

unfenced-group/profesia-sk-scraper

Extract job listings from Profesia.sk β€” Slovakia largest job board. Filter by keyword, region and contract type. No API key required.

πŸ‘ User avatar

Unfenced Group

9

Profesia.sk Scraper

jurooravec/profesia-sk-scraper

One-stop-shop for all data on Profesia.sk Extract job offers, list of companies, positions, locations... Job offers include salary, textual info, company, and more

41

1.0

Profesia.sk Jobs Scraper - lacnΓ½ CheapπŸ”ŽπŸ’ΌπŸ‡ΈπŸ‡°

scrapestorm/profesia-sk-jobs-scraper---lacny-cheap

πŸ”Ž Looking to collect job listings & insights from Profesia.sk? With this scraper you can extract job data including job titles, companies, locations, salaries, posting dates & job links all in a clean, structured format Perfect for lead generation, recruitment intelligence & talent insights πŸ“ŠπŸš€

3

Profesia.sk Jobs Scraper - Poceni Low-costπŸ’²πŸ”₯πŸ’ΌπŸ‡ΈπŸ‡°

delectable_incubator/profesia-sk-jobs-scraper-poceni-low-cost

πŸ’ΌπŸ”Ž Extract job listings from Profesia.sk with ease. Collect job titles, company names, locations, salaries, posting dates, employment details, and job URLs in a structured format. Ideal for recruitment intelligence, talent sourcing, lead generation, HR analytics and hiring trend analysis. πŸ“ŠπŸš€

Kariera.Sk Scraper

unfenced-group/kariera-sk-scraper

Extract job listings from Kariera.sk β€” Slovakia's leading job board. Keyword search, salary parsing, contract type. No API key needed.

πŸ‘ User avatar

Unfenced Group

3

Worki.sk Scraper ISTP.sk

unfenced-group/istp-sk-scraper

Scrapes job listings from worki.sk (formerly istp.sk), Slovakia's official job portal. Extracts title, company, salary, location, contract type, description and more. No API key required.

πŸ‘ User avatar

Unfenced Group

2

Profesia.cz Scraper

unfenced-group/profesia-cz-scraper

Scrape 50,000+ Czech job listings from Profesia.cz. Filter by keyword, region, contract type, and remote. Full descriptions, salary, and publish date. No API key needed.

πŸ‘ User avatar

Unfenced Group

7

Bazos.sk Scraper

solidcode/bazos-scraper

[πŸ’° $1.7 / 1K] Extract classified ads from Bazos.sk, Slovakia's biggest free marketplace. Search cars, real estate, electronics, jobs and 20+ categories by keyword, postal code, radius and price. Returns title, price, location, seller, photos, description, views and ad URL.

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

18

5.0

Glassdoor Job Scraper - Salary & Reviews

blackfalcondata/glassdoor-job-scraper

Scrape glassdoor.com - the job board known for salary transparency and employer reviews. Verified salary estimates, employer ratings, and 20-market job coverage. Incremental mode detects new and changed listings on recurring runs.

πŸ‘ User avatar

Black Falcon Data

21

5.0