How to search blogs using title

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

Search Blog

Copy code

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