Skip to content

Authentication

All requests should be authenticated with the X-Api-Key header.

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'
}
)

You can request a test key here.

XingZap expects the API key to be included in all API requests in a header:

X-Api-Key: XINGZAP_API_KEY