Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/nikkoro/papi-franku
Filthy Frank universe quotes API
https://github.com/nikkoro/papi-franku
api filthyfrank pinkguy quotes
Last synced: 5 days ago
JSON representation
Filthy Frank universe quotes API
- Host: GitHub
- URL: https://github.com/nikkoro/papi-franku
- Owner: Nikkoro
- Created: 2022-02-25T07:06:24.000Z (almost 3 years ago)
- Default Branch: main
- Last Pushed: 2022-12-14T21:10:53.000Z (about 2 years ago)
- Last Synced: 2023-09-05T23:44:19.367Z (over 1 year ago)
- Topics: api, filthyfrank, pinkguy, quotes
- Language: JavaScript
- Homepage: https://papi-franku.onrender.com/
- Size: 77.1 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# pAPI-Franku
API for getting quotes from the Filthy Frank Omniverse
## Base url
```
https://papi-franku.onrender.com/api/
```## All quotes
Get all quotes from omniverse
```
/quotes
```## Quote by id
Get quote by id
```
/quotes/[id]
```Example: https://papi-franku.onrender.com/api/quotes/35
```json
[
{
"id": 35,
"author": "Filthy Frank",
"quote": "Ravioli, Ravioli, what's in the pocket-oli?"
}
]
```## Quote by author
Get quotes by author
```
/quotes/author/[author]
```Example: https://papi-franku.onrender.com/api/quotes/author/Filthy%20Frank
## Random Quote
Get random quote
```
/quote
```Example: https://papi-franku.onrender.com/api/quote
```json
{
"id": 34,
"author": "Filthy Frank",
"quote": "Sometimes it's hard to open a jar, yeah, sometimes it's hard to clean the sink"
}
```