yliaz / breaking-bad-quotes

A simple API to retrieve some quotes of Breaking Bad, bitch!

Home Page:https://breakingbadquotes.xyz/

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Breaking Bad quotes API

A simple API to retrieve some quotes of Breaking Bad, bitch!

🌐 Website and demo: https://breakingbadquotes.xyz/

Production host

https://breaking-bad-quotes.herokuapp.com

API

GET /v1/quotes

Get a random quote in this format:

https://breaking-bad-quotes.herokuapp.com/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://breaking-bad-quotes.herokuapp.com/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"
  }
]

Docker

You can find the Dockerfile here and on Docker Hub.

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.

About

A simple API to retrieve some quotes of Breaking Bad, bitch!

https://breakingbadquotes.xyz/


Languages

Language:JavaScript 100.0%