# XING jobs scraper for Berlin developer roles

**Use case:** 

Scrape public XING job listings for developer roles in Berlin with titles, companies, locations, posting URLs, and job metadata.

## Input

```json
{
  "keywords": [
    "developer",
    "software engineer"
  ],
  "locations": [
    "Berlin"
  ],
  "searchUrls": [
    {
      "url": "https://www.xing.com/jobs/search?keywords=developer&location=Berlin"
    }
  ],
  "maxItems": 100,
  "maxPages": 5
}
```

## Output

```json
{
  "title": {
    "label": "Job title",
    "format": "text"
  },
  "companyName": {
    "label": "Company",
    "format": "text"
  },
  "location": {
    "label": "Location",
    "format": "text"
  },
  "employmentType": {
    "label": "Employment type",
    "format": "text"
  },
  "salaryMinimum": {
    "label": "Salary min",
    "format": "number"
  },
  "salaryMaximum": {
    "label": "Salary max",
    "format": "number"
  },
  "salaryMedian": {
    "label": "Salary median",
    "format": "number"
  },
  "url": {
    "label": "XING URL",
    "format": "link"
  },
  "applicationUrl": {
    "label": "Application URL",
    "format": "link"
  },
  "refreshedAt": {
    "label": "Refreshed",
    "format": "date"
  },
  "activeUntil": {
    "label": "Active until",
    "format": "date"
  },
  "sourceKeyword": {
    "label": "Keyword",
    "format": "text"
  },
  "sourceLocation": {
    "label": "Search location",
    "format": "text"
  },
  "scrapedAt": {
    "label": "Scraped at",
    "format": "date"
  }
}
```

## About this Actor

This example demonstrates how to use [XING Jobs Scraper](https://apify.com/automation-lab/xing-jobs-scraper) with a specific input configuration. Visit the [Actor detail page](https://apify.com/automation-lab/xing-jobs-scraper) to learn more, explore other use cases, and run it yourself.