import requests
key = {{1}}
headers = {"X-Cisco-Meraki-API-Key": key, "Accept": "application/json"}
r = requests.get("https://api.meraki.com/api/v1/organizations", headers=headers, timeout=10)
orgs = r.json()
print(orgs[0][{{2}}])
Drag a snippet from the right into each blank box in the code.