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