Your "data" variable is a list, composed of dictionaries. To access the first name on the "data" variable, you must first access the index in the list, and then access the key "name"
print(data[0]["name"])