# Xing Profildaten als CSV oder Excel exportieren

**Use case:** 

Xing Daten exportieren: Profil-URLs einfügen, Tabelle mit Name, Jobtitel, Stadt, Land, Skills und Sprachen erhalten und als CSV, Excel oder JSON laden.

## Input

```json
{
  "profileUrls": [
    "https://www.xing.com/profile/Ralf_Gebhardt4",
    "https://www.xing.com/profile/Volker_Scherer4",
    "https://www.xing.com/profile/Christoph_Kimling"
  ]
}
```

## Output

```json
{
  "fullName": {
    "label": "Full name",
    "format": "string"
  },
  "jobTitle": {
    "label": "Job title",
    "format": "string"
  },
  "city": {
    "label": "City",
    "format": "string"
  },
  "countryCode": {
    "label": "Country code",
    "format": "string"
  },
  "skills": {
    "label": "Skills",
    "format": "array"
  },
  "languages": {
    "label": "Languages",
    "format": "array"
  },
  "profileUrl": {
    "label": "Profile URL",
    "format": "string"
  }
}
```

## About this Actor

This example demonstrates how to use [Xing Profile API](https://apify.com/johnvc/xing-profile-api) with a specific input configuration. Visit the [Actor detail page](https://apify.com/johnvc/xing-profile-api) to learn more, explore other use cases, and run it yourself.