Skip to content

Search API

Search for highly targeted Xing leads in one call.

POST https://api.v2.xingzap.com/search
ParameterRequiredDefaultDescription
keywordsOne of keywords or searchUrlKeywords to search for leads in Xing
searchUrlOne of keywords or searchUrlThe search URL must contain the keywords query parameter
Any searchable fieldNoAny search_parameter from the Fields Reference
import requests
response = requests.post("https://api.v2.xingzap.com/search",
json={
"keywords": "Head of sales",
"languageFilter": ["German"]
},
headers={
'X-Api-Key': 'XINGZAP_API_KEY'
}
)
import requests
response = requests.post("https://api.v2.xingzap.com/search",
json={
"searchUrl": "https://www.xing.com/search/members?keywords=anas%20el%20mhamdi"
},
headers={
'X-Api-Key': 'XINGZAP_API_KEY'
}
)
[
{
"firstName": "Harish",
"lastName": "Govindarajalu",
"fullName": "Harish Govindarajalu",
"title": "Strategic Business Analyst",
"location": "Berlin, Germany",
"previousTitle": "",
"company": "Apar Technologies",
"xingId": "35511063.e8307c",
"pageName": "Harish_Govindarajalu2"
},
{
"firstName": "Dvir",
"lastName": "Lifshits",
"fullName": "Dvir Lifshits",
"title": "Online Marketing & Growth Consultant",
"location": "Berlin, Germany",
"previousTitle": "Acquisition/Growth Team Leader (Social)",
"company": "Dvir Lifshits Online Marketing",
"xingId": "34834626.d2ff1d",
"pageName": "Dvir_Lifshits"
}
]