<?php $jsonurl = "https://reqres.in/api/users/2"; $json = file_get_contents($jsonurl); $jsonDecode = json_decode($json, true); echo $jsonDecode['data']['email']; ?>