uso de .json () em javascript
fetch('http://example.com/movies.json')
.then(response => response.json())
.then(data => console.log(data));
//Since the HTTP response is not a JSON Object,
//.json() extracts the JSON Object from the HTTP response
tinydev