# Jobfind.gr Scraper — Greek Job Listings by City (`studio-amba/jobfind-gr-scraper`) Actor

Scrape job listings from Jobfind.gr, a general Greek jobs board (~1.1M visits/mo). Browse by city/area across all of Greece, filter by keyword, and get title, category, location, salary and employment type. No login needed.

- **URL**: https://apify.com/studio-amba/jobfind-gr-scraper.md
- **Developed by:** [Studio Amba](https://apify.com/studio-amba) (community)
- **Categories:** Jobs
- **Stats:** 2 total users, 1 monthly users, 100.0% runs succeeded, 0 bookmarks
- **User rating**: No ratings yet

## Pricing

from $1.20 / 1,000 result scrapeds

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?

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

## Jobfind.gr Scraper — Greek Job Listings & Salaries

Scrape job offers from [Jobfind.gr](https://www.jobfind.gr), a Greek job board, straight into JSON, CSV or Excel. Search by keyword or filter by location. No login, no cookies, no browser rendering needed.

### What does Jobfind.gr Scraper do?

Jobfind.gr is a general job board covering the Greek labour market — accounting, hospitality, logistics, sales, engineering, retail, IT, marketing, healthcare and more. This actor collects those offers and returns clean, structured data:

- Job title, hiring company, logo and website (from the offer's detail page)
- Location (city and region) across all of Greece
- Salary ranges as published (EUR), when the employer discloses them
- Employment type and occupational category
- Full job description as HTML
- Published date and canonical listing URL

### Why use Jobfind.gr Scraper?

- **Greek job market research** — track hiring demand and salary bands across sectors and regions.
- **Recruitment and sourcing** — monitor which companies are hiring for which roles, in which cities.
- **Salary benchmarking** — a share of listings disclose a EUR salary range with a monthly/yearly/hourly unit.
- **Lead generation** — companies actively hiring are companies actively spending. Company name, logo and website are included on every listing where published.
- **Job aggregation** — feed fresh Greek job postings into your own job board, newsletter or CRM.

### How to scrape Jobfind.gr data

1. Open the actor and set a **Search Query** keyword (e.g. `πωλήσεις`, `λογιστής`, `σερβιτόρος`) or leave it empty to browse the newest offers across every category.
2. Optionally set a **Location** using Jobfind.gr's own URL slug format (e.g. `Athens`, `Thessaloniki`) to filter by city or region.
3. Set **Max Results** and run. Results land in the dataset, ready to export as JSON, CSV, Excel or via API.
4. Leave every field empty and the actor still works: it browses the newest offers across every category and region in Greece.

That's it. A run of 100 offers with detail fetching enabled typically finishes in a couple of minutes.

### Input

| Field | Type | Description |
|-------|------|-------------|
| `searchQuery` | string | Free-text keyword matched against job titles. Empty = browse newest offers. |
| `location` | string | Jobfind.gr location URL slug (e.g. `Athens`, `Thessaloniki`). Must match the site's own slug exactly — an unknown slug returns zero results. Optional. |
| `maxResults` | integer | Maximum offers to scrape. Default: `100` |
| `fetchDetails` | boolean | Fetch each offer's detail page for the employer name, full HTML description and salary range when disclosed. Default: `true` |
| `proxyConfiguration` | object | Proxy settings. Automatic proxy is sufficient — Jobfind.gr has no anti-bot protection. |

#### Example input

```json
{
    "searchQuery": "λογιστής",
    "location": "Thessaloniki",
    "maxResults": 100
}
```

### Output

Each dataset item is one job offer:

| Field | Type | Example |
|-------|------|---------|
| `title` | string | `Λογιστής / Λογίστρια — Πλήρης Απασχόληση` |
| `company` | string | null | `ΤΣΑΚΙΡΙΔΗΣ ΕΠΙΠΛΟ` (only with `fetchDetails: true`) |
| `companyUrl` | string | null | `https://epiplo-tsakiridis.gr/` |
| `companyLogoUrl` | string | null | Logo URL |
| `city` | string | null | `ΑΝΑΤΟΛΙΚΗ ΘΕΣΣΑΛΟΝΙΚΗ` |
| `region` | string | null | `ΘΕΣΣΑΛΟΝΙΚΗ` |
| `location` | string | null | `ΑΝΑΤΟΛΙΚΗ ΘΕΣΣΑΛΟΝΙΚΗ, ΘΕΣΣΑΛΟΝΙΚΗ` |
| `employmentType` | string | null | `FULL_TIME`, `PART_TIME`, `CONTRACTOR` |
| `category` | string | null | `Λογιστήριο - Οικονομική Διεύθυνση` |
| `salaryMin` / `salaryMax` | number | null | `1100` / `1300` |
| `salaryCurrency` | string | null | `EUR` |
| `salaryPeriod` | string | null | `MONTH` |
| `descriptionHtml` | string | null | Full job description as HTML (with `fetchDetails`) |
| `publishedAt` | string | null | `2026-09-04` |
| `jobId` | string | `86f06275-4d6a-495b-bda1-737e2b4cb6f8` |
| `url` | string | `https://www.jobfind.gr/JobAd/View/GR/Theseis_Ergasias/86f06275-4d6a-495b-bda1-737e2b4cb6f8/` |
| `scrapedAt` | string | ISO timestamp of the scrape |

#### Example output

```json
{
    "title": "Λογιστής / Λογίστρια — Πλήρης Απασχόληση",
    "company": "ΤΣΑΚΙΡΙΔΗΣ ΕΠΙΠΛΟ",
    "companyUrl": "https://epiplo-tsakiridis.gr/",
    "companyLogoUrl": "https://www.jobfind.gr/ClientFiles/BusinessFiles/IPn7YFlGrFpnhtFpJA7I_DS5SSAOan0Vfdg2DJvaa.jpg",
    "city": "ΑΝΑΤΟΛΙΚΗ ΘΕΣΣΑΛΟΝΙΚΗ",
    "region": "ΘΕΣΣΑΛΟΝΙΚΗ",
    "location": "ΑΝΑΤΟΛΙΚΗ ΘΕΣΣΑΛΟΝΙΚΗ, ΘΕΣΣΑΛΟΝΙΚΗ",
    "employmentType": "FULL_TIME",
    "category": "Λογιστήριο - Οικονομική Διεύθυνση",
    "salaryMin": 1100,
    "salaryMax": 1300,
    "salaryCurrency": "EUR",
    "salaryPeriod": "MONTH",
    "descriptionHtml": "<p>Ζητείται Λογιστής/Λογίστρια για ένταξη στην ομάδα μας...</p>",
    "publishedAt": "2026-09-04",
    "jobId": "86f06275-4d6a-495b-bda1-737e2b4cb6f8",
    "url": "https://www.jobfind.gr/JobAd/View/GR/Theseis_Ergasias/86f06275-4d6a-495b-bda1-737e2b4cb6f8/",
    "scrapedAt": "2026-09-06T14:07:00.000Z"
}
```

### How much does it cost to scrape Jobfind.gr?

Pay-per-event pricing: a small fee per run start plus a fee per result. A typical 100-offer run with detail fetching enabled costs a few cents. The actor reads plain server-rendered HTML and the offer's own embedded structured data (schema.org JSON-LD) instead of rendering pages in a browser, so compute usage stays minimal even on larger runs.

Usage cost only settles once a run reports **SUCCEEDED** — reading the dataset mid-run will undercount what you'll actually be charged.

### Tips

- Leave `searchQuery` empty to track every new posting on the site, newest first.
- Use `location` to segment by city or region — Jobfind.gr groups postings by region (e.g. ΑΤΤΙΚΗ, ΚΕΝΤΡΙΚΗ ΜΑΚΕΔΟΝΙΑ) and by specific cities.
- `fetchDetails` matters more here than on most job boards: Jobfind.gr never shows the employer name on the listing card itself, only on the detail page. With `fetchDetails: false` you still get title, url, category, city and the raw employment-type text, but `company` and `descriptionHtml` will be `null`.
- Salary is only returned when the employer publishes a structured range — most listings leave it blank, and this actor never estimates or invents a figure.
- Offers are returned newest first, so a small daily run with your filter is enough to track new postings.

### Limitations

- Salary is only present when the employer discloses it on Jobfind.gr — most listings leave it blank, and this actor never estimates or invents a figure.
- `location` must match Jobfind.gr's own URL slug format exactly (see the site's own location filter links). An unrecognized slug returns zero results rather than falling back silently.
- Company name and full description require `fetchDetails: true` (one extra request per offer) — Jobfind.gr never publishes the employer name on the listing page itself.
- Search is keyword-only against job titles (there is no separate description full-text index on the source site).

### FAQ and support

- **Is it legal?** This actor scrapes only publicly available job listings. It does not collect personal data and does not require login. Always review the target site's terms of service and applicable law before using scraped data commercially.
- **Found a bug?** Open an issue in the [Issues tab](https://console.apify.com/actors) — we reply within one business day.
- **Need a schema change?** Request it in the Issues tab; most field additions ship within a week.

### Support and maintenance

This Actor is actively maintained by [Studio Amba](https://apify.com/studio-amba). We monitor health daily and fix breaking changes within 24 hours.

### About Studio Amba

We build reliable, production-grade scrapers for European websites. Our actors share a common core:

- **No cookies, no login** — public data only, no account management headaches
- **Fast APIs and structured data over headless browsers** where possible — lower cost, higher throughput
- **Proactive health monitoring** — we watch every actor 24/7 and ship fixes before you notice

### Related Scrapers

- [Kariera.gr Scraper](https://apify.com/studio-amba/kariera-gr-scraper) — Greece's largest general job board
- [Skywalker.gr Scraper](https://apify.com/studio-amba/skywalker-gr-scraper) — Greece's #2 job board
- [Randstad Scraper](https://apify.com/studio-amba/randstad-scraper) — pan-European staffing agency, includes Greece
- [Adecco Scraper](https://apify.com/studio-amba/adecco-scraper) — pan-European staffing agency, includes Greece

### Changelog

See commit history in the [GitHub repo](https://github.com/studio-amba/actors) for a full changelog of bug fixes and schema changes.

# Actor input Schema

## `searchQuery` (type: `string`):

Free-text keyword to search job titles (e.g. 'λογιστής', 'πωλήσεις', 'σερβιτόρος'). Leave empty to browse the newest offers across all of Jobfind.gr.

## `location` (type: `string`):

Optional Jobfind.gr location URL slug to filter by city/region, e.g. 'Athens', 'Thessaloniki'. Leave empty to search all of Greece. Must match Jobfind.gr's own slug format exactly — an unknown slug returns zero results.

## `maxResults` (type: `integer`):

Maximum number of job offers to scrape.

## `fetchDetails` (type: `boolean`):

Fetch each offer's detail page for the employer name, full HTML job description and salary range when disclosed. Disable for a faster, listing-only run (title, url, category, city and employment type are always included either way, but company and description are only populated with details enabled — Jobfind.gr never shows the employer name on the listing card itself).

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

Proxy settings. Jobfind.gr has no anti-bot protection (verified live: plain IIS/ASP.NET, clean 200 responses to direct requests) — automatic proxy is sufficient.

## Actor input object example

```json
{
  "searchQuery": "πωλήσεις",
  "maxResults": 5,
  "fetchDetails": true,
  "proxyConfiguration": {
    "useApifyProxy": true
  }
}
```

# Actor output Schema

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

No 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 = {
    "searchQuery": "πωλήσεις",
    "maxResults": 5,
    "proxyConfiguration": {
        "useApifyProxy": true
    }
};

// Run the Actor and wait for it to finish
const run = await client.actor("studio-amba/jobfind-gr-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 = {
    "searchQuery": "πωλήσεις",
    "maxResults": 5,
    "proxyConfiguration": { "useApifyProxy": True },
}

# Run the Actor and wait for it to finish
run = client.actor("studio-amba/jobfind-gr-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 '{
  "searchQuery": "πωλήσεις",
  "maxResults": 5,
  "proxyConfiguration": {
    "useApifyProxy": true
  }
}' |
apify call studio-amba/jobfind-gr-scraper --silent --output-dataset

```

## MCP server setup

```json
{
    "mcpServers": {
        "apify": {
            "type": "http",
            "url": "https://mcp.apify.com/?tools=fetch-actor-details,studio-amba/jobfind-gr-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/gHj14sGWdRxSmmQ4e/builds/CX9EMjzFITqtkYOTA/openapi.json
