https://github.com/kunatastic/quote-api
An extensive Quote API with over 1600 quotes
https://github.com/kunatastic/quote-api
api get-request localstorage-api quote-api
Last synced: 23 days ago
JSON representation
An extensive Quote API with over 1600 quotes
- Host: GitHub
- URL: https://github.com/kunatastic/quote-api
- Owner: kunatastic
- Created: 2020-12-30T03:04:31.000Z (about 5 years ago)
- Default Branch: main
- Last Pushed: 2020-12-31T06:25:51.000Z (about 5 years ago)
- Last Synced: 2025-02-28T14:46:11.345Z (about 1 year ago)
- Topics: api, get-request, localstorage-api, quote-api
- Language: HTML
- Homepage: https://kunatastic.github.io/quote-api/
- Size: 202 KB
- Stars: 1
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# 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](https://forum.freecodecamp.org/t/free-api-inspirational-quotes-json-with-code-examples/311373) where I found this [API](https://type.fit/api/quotes) but I thought I should deploy it myself for future use if the original stops accepting requests.