Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/shevabam/breaking-bad-quotes
A simple API to retrieve some quotes of Breaking Bad, bitch!
https://github.com/shevabam/breaking-bad-quotes
api breaking-bad quotes quotes-api
Last synced: 4 days ago
JSON representation
A simple API to retrieve some quotes of Breaking Bad, bitch!
- Host: GitHub
- URL: https://github.com/shevabam/breaking-bad-quotes
- Owner: shevabam
- Created: 2017-02-22T19:54:16.000Z (almost 8 years ago)
- Default Branch: master
- Last Pushed: 2024-08-04T20:09:17.000Z (6 months ago)
- Last Synced: 2025-01-26T10:01:33.010Z (11 days ago)
- Topics: api, breaking-bad, quotes, quotes-api
- Language: JavaScript
- Homepage: https://breakingbadquotes.xyz/
- Size: 104 KB
- Stars: 413
- Watchers: 3
- Forks: 64
- Open Issues: 4
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
![](breaking-bad-quotes_header.png)
# Breaking Bad quotes API
A simple API to retrieve some quotes of Breaking Bad, bitch!
:globe_with_meridians: Website and demo: https://breakingbadquotes.xyz/
## Production host
🆕 [https://api.breakingbadquotes.xyz](https://api.breakingbadquotes.xyz)
OLD : [https://breaking-bad-quotes.herokuapp.com](https://breaking-bad-quotes.herokuapp.com)
## API
### `GET /v1/quotes`
Get a random quote in this format:
> [https://api.breakingbadquotes.xyz/v1/quotes](https://api.breakingbadquotes.xyz/v1/quotes)
[
{
"quote": "I am not in danger, Skyler. I AM the danger!",
"author": "Walter White"
}
]### `GET /v1/quotes/{number}`
Returns an array with `{number}` quotes e.g. `GET /v1/quotes/5`.
> [https://api.breakingbadquotes.xyz/v1/quotes/5](https://api.breakingbadquotes.xyz/v1/quotes/5)
[
{
"quote": "Clearly, his taste in women is the same as his taste in lawyers.",
"author": "Saul Goodman"
},
{
"quote": "Shut the f*ck up and let me die in peace.",
"author": "Mike Ehrmantraut"
},
{
"quote": "My name is ASAC Schrader, and you can go f*ck yourself.",
"author": "Hank Schrader"
},
{
"quote": "You all know exactly who I am. Say my name.",
"author": "Walter White"
},
{
"quote": "May his death satisfy you.",
"author": "Gustavo Fring"
}
]## Postman
You can integrate the API into Postman thanks to the [Postman collection](Breaking_Bad_Quotes_API.postman_collection.json) available on the repository.
## Docker
You can find the Dockerfile [here](https://github.com/shevabam/dockerfiles/tree/master/breaking-bad-quotes) and on [Docker Hub](https://hub.docker.com/r/shevabam/breaking-bad-quotes/).
## Contributing
If you want to add some quotes, just add them in `quotes.js` file and do a pull request !
## Credits
Inspired by [Ron Swanson Quotes](https://github.com/jamesseanwright/ron-swanson-quotes).