Skip to content

Latest commit

 

History

History
20 lines (14 loc) · 705 Bytes

README.md

File metadata and controls

20 lines (14 loc) · 705 Bytes

quote-api

What is this API?

This API contains 1600+ beautiful quotes and each quote is more deeper than the other one.

Sample Snippet how to use this API in your project.

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()

Credits

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.