Python3 Example

Here is an example of constructing a request to identify a company corresponding to the company_id.

import requests

url = " https://api.neuron360.io/company/<<INSERT YOUR COMPANY_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