Mega Man Quotes

You can use the API that powers this site in your own projects if you want to. It uses HTTP endpoints that return JSON.
Get Random Quote
Get a randomly selected quote.
GET https://api.megamanquotes.com/random-quote
Returns
{ 'id': 'The identifier of the quote' 'text': 'The main text of the quote', 'author': 'The name of the quote author', 'source': 'The source of the quote if available. Otherwise an empty string.', 'permalink': 'A permanent absolute URL to the quote' }
Get Quote by Id
Get a specific quote by id.
GET https://api.megamanquotes.com/quotes/{quote-id}
Returns
{ 'id': 'The identifier of the quote' 'text': 'The main text of the quote', 'author': 'The name of the quote author', 'source': 'The source of the quote if available. Otherwise an empty string.', 'permalink': 'A permanent absolute URL to the quote' }