Welcome to the Treehouse Community

Want to collaborate on code errors? Have bugs you need feedback on? Looking for an extra set of eyes on your latest project? Get support with fellow developers, designers, and programmers of all backgrounds and skill levels here with the Treehouse Community! While you're at it, check out some resources Treehouse students have shared here.

Looking to learn something new?

Treehouse offers a seven day free trial for new students. Get access to thousands of hours of content and join thousands of Treehouse students and alumni in the community today.

Start your free trial

JavaScript Displaying the Content

David Shulkin
seal-mask
.a{fill-rule:evenodd;}techdegree
David Shulkin
Front End Web Development Techdegree Student 10,254 Points

How do you view all the JSON data provided by the dog API?

Guil showed the list of master breeds by clicking on the JSON link in the dog API. How would one print that list to the console?

1 Answer

Steven Parker
Steven Parker
229,771 Points

Just like the code at the beginning of the lesson fetched the random image data and displayed the response, you can do the same thing but fetching the breeds list instead:

fetch("https://dog.ceo/api/breeds/list")
  .then(response => response.json())
  .then(data => console.log(data.message));