import requests from requests.auth import HTTPDigestAuth from pprint import pprint # Just used to format the output # API credentials from eze.io -> Groups Settings -> Manage API Keys apikeyid = '00000' apikey = '12345abcde12345abcde12345abcdeff' # API endpoint and request - see doc.eze.io apiurl = 'https://api.eze.io/v1/status/ABC000' # Send request r = requests.get(apiurl, auth=HTTPDigestAuth(apikeyid, apikey)) # Convert response to a dictionary data = r.json() # Dump whole dictionary to screen pprint(data) # Print the value of field 1 print(data['fields']['1']['value'])