This API lets you fetch quotes from various anime characters and shows. Built with MongoDB, Express, Pug, SCSS, and Node.js, it is designed to be convienent and straightforward to use. You can filter quotes by both shows and characters. You can also specify the number of quotes to be returned by using the random parameter.
/api/quotesGet all quotes by particular character:
/api/quotes?character=lelouch Try itGet random quote from particular character:
/api/quotes?character=lelouch&random=1 Try itGet all quotes from particular show:
/api/quotes?show=code geass Try itGet random quote from particular show:
/api/quotes?show=code geass&random=1 Try itYou can also search for multiple shows or characters in a query, separated by commas.
Get quotes by multiple characters:
/api/quotes?character=lelouch,oscar jarjayes,spike spiegel Try itGet quotes by multiple shows:
/api/quotes?show=code geass,rose of versailles,violet evergarden Try itGet random quote from list of characters:
/api/quotes?character=lelouch,oscar jarjayes,spike spiegel&random=1 Try itGet random quote from list of shows:
/api/quotes?show=code geass,rose of versailles,violet evergarden&random=1 Try itGet ALL quotes
/api/quotes Try itFor detailed documentation check the repository at https://github.com/4rnv/QuotesAPI. Enhancements and suggestions are welcome!