Python3 Example
Here is an example of constructing a request to identify the profiles corresponding to the criteria.
import requests
import json
url = " https://api.neuron360.io/profile/search"
payload = json.dumps({
"reveal_all_data": False,
"parameters": {
"countries": [
{
"operator": "is one of",
"value": [
"United Kingdom"
]
}
],
"job_titles": [
{
"operator": "exists",
"value": None
}
],
"cities": [
{
"operator": "is one of",
"value": [
"manchester",
"london"
]
}
]
}
})
headers = {
'x-api-key': <<INSERT YOUR API KEY HERE>>,
'Content-Type': 'application/json'
}
response = requests.request("POST", url, headers=headers, data=payload)
print(response.text)
Updated 11 months ago