How to get blogs by Category

Fetch the endpoint provided below to retrieve all the blogs of provided categorie, and also test it here. Once you’ve fetched the endpoint, you can explore the array of blogs it returns. If you encounter any issues or have any questions, don't hesitate to reach out for assistance. Happy exploring!

Category

Copy code

fetch('https://dummyblogapi.vercel.app/api/category/sport')
.then(res => res.json())
.then(json => console.log(json))