This API contains 1600+ beautiful quotes and each quote is more deeper than the other one.
const fetchAPI = async () => {
const data = await fetch("https://raw.githubusercontent.com/kunatastic/quote-api/main/data.json");
const quotes = await data.json();
console.log(quotes);
};
fetchAPI()
All the credits goes to this FreeCodeCamp forum where I found this API but I thought I should deploy it myself for future use if the original stops accepting requests.