response = requests.post('https://accountscenter.instagram.com/api/graphql/', cookies=cookies, headers=headers, data=data)
json_data = response.json()
# İlgili alanlardan değerleri alma
full_name = json_data["data"]["fxim_identity_for_id"]["full_name"]
username = json_data["data"]["fxim_identity_for_id"]["username"]
profilurl = json_data["data"]["fxim_identity_for_id"]["profile_picture_info"]["profile_picture_url"]
#email = json_data["data"]["fxcal_settings"]["node"]["sections"][0]["nodes"][0]["navigation_row_subtitle"]
#dogum = json_data["data"]["fxcal_settings"]["node"]["sections"][0]["nodes"][1]["navigation_row_subtitle"]
# Sonuçları yazdırma
print("Full Name:", full_name)
print("Username:", username)
print("profil url:", profilurl)