# kariera.gr Scraper: Greece Jobs, Salaries & Employers (`santamaria-automations/kariera-gr-scraper`) Actor

Scrape job listings from kariera.gr, Greece's #1 job board. Returns title, company, Greek periphery (region), prefecture, employment type, remote type, EUR salary, seniority level, and full HTML description. No browser required.

- **URL**: https://apify.com/santamaria-automations/kariera-gr-scraper.md
- **Developed by:** [NanoScrape](https://apify.com/santamaria-automations) (community)
- **Categories:** Jobs, Lead generation
- **Stats:** 2 total users, 1 monthly users, 100.0% runs succeeded, 0 bookmarks
- **User rating**: No ratings yet

## Pricing

Pay per event

This Actor is paid per event. You are not charged for the Apify platform usage, but only a fixed price for specific events.

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

## kariera.gr Scraper: Greece Jobs, Salaries & Employers

Collect job listings from [kariera.gr](https://www.kariera.gr), Greece's largest job board with over 5,000 active listings. Returns structured data including job title, company, Greek periphery (region), prefecture, employment type, remote type, EUR salary, seniority level, company industry, company size, required languages, expiry date, and full job description in Greek or English.

### What you get

Each result row contains:

- **Job**: title (Greek or English), URL, posted date (ISO 8601), expiry date
- **Company**: name, website, logo URL, company profile URL on kariera.gr, industry/sector, employee size range, active open job count
- **Location**: city, periphery (region), prefecture, country code GR
- **Compensation**: salary range in EUR, pay period (monthly/annual)
- **Job details**: employment type (Full-time/Part-time/Internship/Contract/Seasonal), workplace type (Remote/Hybrid/On-site)
- **Career level**: No experience / Junior / Mid / Senior / Executive
- **Category**: kariera.gr job category (IT, Sales, Accounting, Healthcare, etc.)
- **Languages**: required foreign languages (when disclosed in structured data — see Notes)
- **Tags**: employer keyword tags (comma-separated Greek/English keyword strings for matching)
- **Reference ID**: employer's internal job reference code (when provided)
- **Apply URL**: external application link (Workable, LinkedIn ATS, etc.)
- **Description**: plain text, HTML, and Markdown (when includeJobDetails=true)
- **Contacts**: emails, phones, and external URLs from the job description

### Use cases

- Job market research in Greece: salary benchmarking in EUR for Athens, Thessaloniki, and other cities
- Competitive intelligence: track which Greek companies are hiring across all sectors
- HR analytics: map employment types and seniority distribution across the Greek market
- Recruiting tools: aggregate Greek IT, finance, and healthcare job postings
- Academic research: Greek labor market trends and regional employment patterns
- Expansion planning: identify active employers before entering the Greek market

### Pricing

This actor uses Pay-Per-Event (PPE) pricing:

| Event | Cost |
|---|---|
| Actor start | $0.001 |
| SERP result (job card data) | $0.003 |
| Full job detail (description + all fields) | $0.005 |

**$5 free monthly credit** is included with every Apify account: enough for roughly 1,000 SERP results or 500 full detail fetches per month.

kariera.gr serves all job data (including full descriptions) on the search results page. Set `includeJobDetails: true` to charge at the detail rate and receive descriptions. Set `includeJobDetails: false` for fast bulk collection at the lower per-event rate.

### Input

```json
{
  "searchQueries": ["προγραμματιστής", "λογιστής", "developer"],
  "location": "Αθήνα",
  "includeJobDetails": true,
  "maxResults": 100
}
```

| Field | Type | Description |
|---|---|---|
| `searchQueries` | string\[] | Greek or English job keywords. Examples: `προγραμματιστής`, `λογιστής`, `developer`, `manager` |
| `searchUrls` | string\[] | Direct kariera.gr search URLs (preserves all active filters) |
| `location` | string | Greek city or periphery filter: `Αθήνα`, `Θεσσαλονίκη`, `Athens`, `Thessaloniki`, `Πάτρα` |
| `includeJobDetails` | boolean | Include full description (HTML, plain text, Markdown). Data is from SERP; flag controls PPE rate only (default: true) |
| `includeCompanyDetails` | boolean | Include company logo URL and website (default: false) |
| `sortBy` | enum | Sort order. Kariera.gr does not expose a server-side sort control — unknown `?sort=` values are silently stripped and the SERP is date-descending native. This field is present for fleet consistency; the sole supported value is `newest` (default: `newest`) |
| `maxResults` | integer | Total results cap (default: 100, max: 5000) |
| `maxResultsPerQuery` | integer | Cap per keyword (default: 100) |
| `maxConcurrency` | integer | Max concurrent requests 1-20 (default: 5) |

### Output sample

```json
{
  "_type": "job",
  "id": "339762",
  "title": "Ηλεκτρολόγος και Τεχνικός Οργάνων | Electrician & Instrumentation Technician",
  "job_url": "https://www.kariera.gr/jobs/other-jobs/339762",
  "source_url": "https://www.kariera.gr/jobs/other-jobs/339762",
  "source_platform": "kariera.gr",
  "company_name": "Ελληνικός Χρυσός Μονοπρόσωπη Α.Ε.",
  "company_website": "https://www.hellas-gold.com/",
  "company_logo_url": "https://employerfilesprod.blob.core.windows.net/...",
  "company_profile_url": "https://www.kariera.gr/companies/hellas-gold/",
  "company_industry": "Mining & Metallurgy",
  "company_size": "201-500",
  "company_open_jobs_count": 17,
  "image_url": null,
  "location": "Μουδανιά, Κεντρική Μακεδονία",
  "country": "GR",
  "region": "Κεντρική Μακεδονία",
  "prefecture": "Χαλκιδική",
  "posted_at_text": "2026-08-25T13:28:52.385Z",
  "posted_at_datetime": "2026-08-25T13:28:52Z",
  "expires_at": "2026-09-25T13:28:52Z",
  "employment_type": "Full-time",
  "workplace_type": "On-site",
  "seniority": "Mid",
  "category": "OTHER",
  "salary_min": null,
  "salary_max": null,
  "salary_currency": null,
  "salary_period": null,
  "salary_text": null,
  "required_languages": [],
  "tags": [
    "ηλεκτρολόγος, τεχνικός οργάνων, instrumentation technician, electrical engineer",
    "Χαλκιδική, Κεντρική Μακεδονία, mining jobs Greece"
  ],
  "reference_id": null,
  "description": "Η Ελληνικός Χρυσός, είναι μια μεταλλευτική εταιρεία χρυσού...",
  "description_full": "Η Ελληνικός Χρυσός, είναι μια μεταλλευτική εταιρεία χρυσού, αργύρου...\n\nΘέση: Ηλεκτρολόγος Τεχνικός...",
  "description_html": "<p>Η Ελληνικός Χρυσός, είναι μια μεταλλευτική εταιρεία...</p>",
  "description_md": "Η Ελληνικός Χρυσός, είναι μια μεταλλευτική εταιρεία...",
  "contact_emails": [],
  "contact_phones": [],
  "contact_urls": ["https://apply.workable.com/j/E91A45C968"],
  "apply_url": "https://apply.workable.com/j/E91A45C968",
  "search_query": "προγραμματιστής",
  "scraped_at": "2026-08-25T10:30:00Z"
}
```

### Greek market coverage

kariera.gr covers all 13 Greek peripheries:

- **Αττική** (Attica): Athens, Piraeus, the largest job market (~50% of listings)
- **Κεντρική Μακεδονία** (Central Macedonia): Thessaloniki, the second-largest hub
- **Θεσσαλία** (Thessaly): Larissa, Volos
- **Δυτική Ελλάδα** (Western Greece): Patras
- **Κρήτη** (Crete): Heraklion, Chania
- **Ηπειρος** (Epirus): Ioannina
- **Πελοπόννησος** (Peloponnese): Tripoli, Kalamata
- **Ανατολική Μακεδονία και Θράκη** (Eastern Macedonia and Thrace): Xanthi, Drama
- **Δυτική Μακεδονία** (Western Macedonia): Kozani
- **Ιόνιοι Νήσοι** (Ionian Islands): Corfu, Kefalonia
- **Βόρειο Αιγαίο** (North Aegean): Lesvos, Chios
- **Νότιο Αιγαίο** (South Aegean): Rhodes, Mykonos, Santorini
- **Στερεά Ελλάδα** (Central Greece): Lamia, Chalkis

The `region` field returns the Greek periphery name in Greek script. The `prefecture` field returns the nomos (prefecture) name.

### Why this scraper

- **HTTP-only Go binary**: no browser overhead, 128 MB RAM, runs fast
- **Greek script handling**: UTF-8 throughout, no charset conversion needed
- **RSC payload extraction**: reads Next.js RSC streaming data directly without JavaScript execution
- **Full descriptions inline**: kariera.gr serves all job data including full HTML descriptions on the search results page
- **Newest-first ordering**: kariera.gr's SERP is date-descending native (no server-side sort control exposed); `sortBy="newest"` is the sole supported value
- **Precise PPE billing**: each job charged once, no duplicate charges
- **50 jobs per SERP page**: efficient pagination up to 100 pages (5,000+ listings)

### Common use cases

**IT jobs in Athens**

```json
{
  "searchQueries": ["developer", "software engineer", "DevOps"],
  "location": "Athens",
  "includeJobDetails": true,
  "maxResults": 200
}
```

**Finance jobs across Greece**

```json
{
  "searchQueries": ["λογιστής", "οικονομολόγος", "CFO"],
  "includeJobDetails": true,
  "maxResults": 500
}
```

**All active listings for a specific company**

```json
{
  "searchUrls": ["https://www.kariera.gr/jobs?q=&company=manpowergroup-greece"],
  "includeJobDetails": true
}
```

### Notes and limits

- kariera.gr serves 50 jobs per SERP page, up to 100 pages per query (5,000+ results)
- Descriptions are delivered inline on the SERP page; no separate detail page fetch is required
- Some jobs may not have a full description (shortDescription used as fallback)
- Salary data is available when employers choose to disclose it (~3% of listings)
- The `apply_url` field contains external ATS URLs (Workable, LinkedIn, company careers pages)
- Greek text appears natively in UTF-8; no encoding conversion is needed
- `company_profile_url` is null when the employer hides their kariera.gr company profile
- `required_languages` is sourced from kariera.gr's structured language field. In practice, Greek employers almost never populate this field; language requirements appear in the job description text instead
- `tags` are employer-added keyword strings for SEO (~82% of listings have at least one tag). Each tag is a comma-separated string of related search terms
- `salary_min` / `salary_max` are null for the majority of Greek jobs; Greek labour market convention is not to disclose salary in job postings
- `image_url` is null for most listings; only Premium employers upload a job banner image (~26% fill)
- `reference_id` is null for most listings; populated only when the employer provides an internal job code

### Related actors

- [Job Feed](https://apify.com/nanoscrape/job-feed): aggregated job feed from 30+ sources
- [Career Site Jobs Scraper](https://apify.com/santamaria-automations/career-site-jobs-scraper): extract jobs from any company careers page
- [Indeed Scraper](https://apify.com/santamaria-automations/indeed-scraper): international job board
- [CV-Library Scraper](https://apify.com/santamaria-automations/cvlibrary-scraper): UK jobs (CEE/Med peer)
- [Profession.hu Scraper](https://apify.com/santamaria-automations/profession-hu-scraper): Hungary jobs (Balkans peer)
- [Prace.cz Scraper](https://apify.com/santamaria-automations/prace-cz-scraper): Czech Republic jobs (CEE peer)
- [eJobs.ro Scraper](https://apify.com/santamaria-automations/ejobs-ro-scraper): Romania jobs (Balkans peer)
- [net-empregos.com Scraper](https://apify.com/santamaria-automations/net-empregos-pt-scraper): Portugal jobs (Med peer)

### MCP

To use this actor with Claude or other AI assistants via MCP:

```json
{
  "mcpServers": {
    "apify": {
      "command": "npx",
      "args": ["-y", "@apify/mcp-server"],
      "env": {
        "APIFY_TOKEN": "YOUR_APIFY_TOKEN"
      }
    }
  }
}
```

Then ask: "Use the kariera-gr-scraper actor to find software engineering jobs in Athens with salaries disclosed."

### Support

Questions, bugs, or feature requests: <contact@nanoscrape.com>

Use the [Issues tab](https://console.apify.com/actors/nfBD5azw0hrGPXoxq/issues) to report problems.

# Actor input Schema

## `searchQueries` (type: `array`):

Greek or English job keywords to search. Examples: 'προγραμματιστής', 'λογιστής', 'developer', 'manager'

## `searchUrls` (type: `array`):

Direct kariera.gr search URLs. Paste any kariera.gr search URL to preserve filters.

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

Greek city or periphery filter. Examples: 'Αθήνα', 'Θεσσαλονίκη', 'Athens', 'Thessaloniki'

## `sortBy` (type: `string`):

How to order results. Kariera.gr does not expose a server-side sort control (unknown ?sort= values are silently stripped; ?sort=date, ?sort=relevance, and no sort param all return identical results — verified 2026-09-03). The site's SERP defaults to date-descending native order. This field is present for fleet consistency; the sole supported value is 'newest'.

## `includeJobDetails` (type: `boolean`):

Include full job description (HTML, plain text, Markdown). kariera.gr serves all data on the SERP page, so this flag controls PPE event rate only (detail rate $0.005 vs SERP rate $0.003).

## `includeCompanyDetails` (type: `boolean`):

Include company logo URL and website (already embedded in SERP data).

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

Maximum total results to return across all queries.

## `maxResultsPerQuery` (type: `integer`):

Maximum results per search keyword or URL.

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

Maximum concurrent requests (1-20). Currently informational; scraper is sequential per-page.

## Actor input object example

```json
{
  "searchQueries": [
    "προγραμματιστής"
  ],
  "sortBy": "newest",
  "includeJobDetails": false,
  "includeCompanyDetails": false,
  "maxResults": 100,
  "maxResultsPerQuery": 100,
  "maxConcurrency": 5
}
```

# Actor output Schema

## `jobListings` (type: `string`):

Dataset containing scraped kariera.gr Greek job listings. Each row includes title, company, location, region (Greek periphery), prefecture, employment\_type, workplace\_type, salary in EUR, seniority, company\_industry, company\_size, expires\_at, required\_languages, tags (employer keyword array), reference\_id, and description fields.

# 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 = {
    "searchQueries": [
        "προγραμματιστής"
    ],
    "sortBy": "newest"
};

// Run the Actor and wait for it to finish
const run = await client.actor("santamaria-automations/kariera-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 = {
    "searchQueries": ["προγραμματιστής"],
    "sortBy": "newest",
}

# Run the Actor and wait for it to finish
run = client.actor("santamaria-automations/kariera-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 '{
  "searchQueries": [
    "προγραμματιστής"
  ],
  "sortBy": "newest"
}' |
apify call santamaria-automations/kariera-gr-scraper --silent --output-dataset

```

## MCP server setup

```json
{
    "mcpServers": {
        "apify": {
            "type": "http",
            "url": "https://mcp.apify.com/?tools=fetch-actor-details,santamaria-automations/kariera-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/nfBD5azw0hrGPXoxq/builds/gcvp12Upqs3tnyqhz/openapi.json
