### Replace <token> with your API Key
headers = { "Authorization": "Bearer <token>" }
### Replace <URL> with the URL that corresponds to your industry
"request_softcheck": True,
"address": "1006 Fort St Unit 300",
# Sends the HTTP request to the API via POST
response = requests.post(url, headers=headers, json=content)
############### Optional ###############
# Brings errors to the forefront
response.raise_for_status()
# Writes the contents of the response in a file named "softcheckDemo.json"
with open("softcheckDemo.json", "w") as f:
############# End Optional ##############