# Xing Profile Data API: Profile URLs to JSON

**Use case:** 

Need Xing member data in your app? Send profile URLs, get JSON rows with full name, job title, city, country, skills and languages. Pay per profile.

## Input

```json
{
  "profileUrls": [
    "https://www.xing.com/profile/Andreas_Lappano",
    "https://www.xing.com/profile/Michael_Puchtler",
    "https://www.xing.com/profile/Chuck_Coulson"
  ]
}
```

## 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.