Skip to content

Scrap API

Scrapes the public information of a given pageName or Xing profileUrl.

POST https://api.v2.xingzap.com/scrap
ParameterRequiredDescription
pageNameOne of pageName or profileUrlThe shorthand name for a Xing profile
profileUrlOne of pageName or profileUrlA Xing profile URL
import requests
response = requests.post("https://api.v2.xingzap.com/scrap",
json={
"pageName": "Anas_ElMhamdi"
},
headers={
'X-Api-Key': 'XINGZAP_API_KEY'
}
)
import requests
response = requests.post("https://api.v2.xingzap.com/scrap",
json={
"profileUrl": "https://www.xing.com/profile/Anas_ElMhamdi/cv"
},
headers={
'X-Api-Key': 'XINGZAP_API_KEY'
}
)
ParameterDescription
fullNameThe user’s full name
currentPositionA list of the current positions held by the user
workPositionTimelineA list of all positions held by the user
descriptionThe user’s about section (if available)
privateBoolean indicating if the user’s profile is private
premiumProfileBoolean indicating if the user has Xing Premium
profileImgThe user’s Xing avatar URL
xingUrlThe user’s Xing profile URL
{
"fullName": "Anas El Mhamdi",
"currentPosition": [
{
"jobtitle": "CEO",
"company": "XingZap",
"date": "8 months, since May 2021"
},
{
"jobtitle": "Growth Engineer",
"company": "Quable",
"date": "1 year and 3 months, since Oct 2020"
}
],
"workPositionTimeline": [
{
"jobtitle": "CEO",
"company": "XingZap",
"date": "8 months, since May 2021",
"startDate": "May 2021",
"endDate": null,
"daysInPosition": 240
},
{
"jobtitle": "Growth engineer",
"company": "Quable",
"date": "1 year and 3 months, since Oct 2020",
"startDate": "Oct 2020",
"endDate": null,
"daysInPosition": 452
}
],
"description": "I'm a growth engineer with a mission of making marketing exciting!",
"profileImg": "https://profile-images.xing.com/images/.../anas-el-mhamdi.256x256.jpg",
"xingUrl": "https://xing.com/profile/Anas_ElMhamdi",
"private": false,
"premiumProfile": true
}