# Get internship offers in Munich from Xing

**Use case:** 

Lists internship (Praktikum) ads posted on Xing for Munich, filtered on the student / intern career level, with company, monthly pay when given and the full description. Use it for a student job board or a university career service.

## Input

```json
{
  "startUrls": [],
  "query": "Praktikum",
  "searchQueries": [],
  "location": "München",
  "locations": [],
  "radius": 0,
  "maxItems": 100,
  "maxItemsPerQuery": 0,
  "employmentType": [],
  "careerLevel": [
    "STUDENT_INTERN"
  ],
  "remoteOption": [],
  "companyIds": [],
  "benefitIds": [],
  "disciplines": [],
  "industries": [],
  "descriptionFormat": "both",
  "excludeKeywords": [],
  "onlyWithSalary": false,
  "onlyNew": false,
  "stateKey": "default",
  "resetState": false,
  "proxyConfiguration": {
    "useApifyProxy": true
  },
  "maxConcurrency": 8,
  "maxRequestsPerMinute": 120,
  "maxRequestRetries": 5,
  "debugLog": false
}
```

## Output

```json
{
  "title": {
    "label": "Job title",
    "format": "string"
  },
  "companyName": {
    "label": "Company",
    "format": "string"
  },
  "city": {
    "label": "City",
    "format": "string"
  },
  "employmentType": {
    "label": "Employment type",
    "format": "string"
  },
  "salaryMin": {
    "label": "Salary min",
    "format": "number"
  },
  "salaryMax": {
    "label": "Salary max",
    "format": "number"
  },
  "publishedAt": {
    "label": "Published at",
    "format": "string"
  },
  "url": {
    "label": "Job URL",
    "format": "string"
  }
}
```

## About this Actor

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


## How to integrate an Actor?

This Task's input is already configured above. Use it as-is rather than inventing a new one.

Do not guess an integration path. Every one of them is in the agent quickstart at https://apify.com/agents.md: the Apify MCP server, Agent Skills with the Apify CLI, the JavaScript and Python clients, the REST API, and the account-free path for an agent with no human to sign in. It also carries the rule on stating cost before the first paid run.

For full API examples (JavaScript, Python, CLI, MCP, OpenAPI), see this Task's Actor page: https://apify.com/nice_dev/xing-jobs-scraper.md

Each client library has reference documentation the quickstart does not restate: [JavaScript/TypeScript](https://docs.apify.com/api/client/js/docs.md) (`npm install apify-client`) and [Python](https://docs.apify.com/api/client/python/docs.md) (`pip install apify-client`).
