https://github.com/iambijoykar/rest-quotes-api
This is random quotes generates REST API written in Flask - Python
https://github.com/iambijoykar/rest-quotes-api
api-rest flask flask-api flask-restful python3
Last synced: 2 months ago
JSON representation
This is random quotes generates REST API written in Flask - Python
- Host: GitHub
- URL: https://github.com/iambijoykar/rest-quotes-api
- Owner: iamBijoyKar
- Created: 2022-12-14T11:10:09.000Z (over 3 years ago)
- Default Branch: main
- Last Pushed: 2023-10-19T18:40:48.000Z (over 2 years ago)
- Last Synced: 2025-02-14T01:50:29.296Z (over 1 year ago)
- Topics: api-rest, flask, flask-api, flask-restful, python3
- Language: HTML
- Homepage: https://rest-quotes-api.onrender.com
- Size: 285 KB
- Stars: 1
- Watchers: 1
- Forks: 0
- Open Issues: 1
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# [rest-quotes-api](https://rest-quotes-api.onrender.com/api)
## 📄 Documentation
***This REST api has 3 end points :***
'/api/quotes/random' **response with JSON of a random quote like below 👇**
```
{
"quoteAuthor": "Johann Wolfgang von Goethe",
"quoteText": "Great talent finds happiness in execution."
}
```
**'/api/quotes' response with JSON of 300+ quotes like below 👇**
```
{
"quotes": [
{
"quoteAuthor": "Thomas Edison",
"quoteText": "Genius is one percent inspiration and ninety-nine percent perspiration."
},
{
"quoteAuthor": "Yogi Berra",
"quoteText": "You can observe a lot just by watching."
},
{
"quoteAuthor": "Abraham Lincoln",
"quoteText": "A house divided against itself cannot stand."
},
{
"quoteAuthor": "Johann Wolfgang von Goethe",
"quoteText": "Difficulties increase the nearer we get to the goal."
},
....]
}
```
'/api' **leads to a web page having information about this REST api**