Python3 Example

Here is an example of constructing a request to identify a profile corresponding to the profile_id.

import requests

url = " https://api.neuron360.io/profile/<<INSERT YOUR PROFILE_ID HERE>>"

payload = {}

headers = {
  'x-api-key': <<INSERT YOUR API KEY HERE>>
}

response = requests.request("GET", url, headers=headers, data=payload)

print(response.text)

What’s Next