Search API
Search for highly targeted Xing leads in one call.
HTTP Request
Section titled “HTTP Request”POST https://api.v2.xingzap.com/searchRequest Parameters
Section titled “Request Parameters”| Parameter | Required | Default | Description |
|---|---|---|---|
keywords | One of keywords or searchUrl | Keywords to search for leads in Xing | |
searchUrl | One of keywords or searchUrl | The search URL must contain the keywords query parameter | |
| Any searchable field | No | Any search_parameter from the Fields Reference |
Example: Using Keywords
Section titled “Example: Using Keywords”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' })curl --location --request POST 'https://api.v2.xingzap.com/search' \ -H 'X-Api-Key: XINGZAP_API_KEY' \ --data-raw '{ "keywords":"Head of sales", "languageFilter":["German"] }'Example: Using Search URL
Section titled “Example: Using Search URL”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' })curl --location --request POST 'https://api.v2.xingzap.com/search' \ -H 'X-Api-Key: XINGZAP_API_KEY' \ --data-raw '{ "searchUrl":"https://www.xing.com/search/members?keywords=anas%20el%20mhamdi" }'Response
Section titled “Response”[ { "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" }]