Python3 Example

Here is an example of constructing a request to identify the companies corresponding to the criteria.

import requests
import json

url = " https://api.neuron360.io/company/search"

payload = json.dumps({
    "reveal_all_data": False,
    "parameters": {
      "countries": [
            {
                  "operator": "is one of",
                  "value": [
                        "United Kingdom"
                  ]
            }
      ],
      "domains": [
            {
                  "operator": "exists",
                  "value": None
            }
      ],
      "revenue_codes": [
            {
                  "operator": "is one of",
                  "value": [
                        "2M - 5M",
                        "5M - 10M"
                  ]
            }
      ]
}
})
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)

What’s Next