Quote Wars API

A free restful API serving quality serie & movie quotes ✨

Powered by MongoDB

» Try it

Run this code to get a random quote 🚀

fetch('https://quotewars.lilybarberou.fr/api/random') .then(res => res.json()) .then(quote => console.log(quote)){ }

» Get quote by specific origin

'https://quotewars.lilybarberou.fr/api/origin/gameofthrones'{ "origin": "Game of Thrones", "author": "Arya Stark", "quote": "Winter is coming" }

» Get quote by specific character

'https://quotewars.lilybarberou.fr/api/origin/starwars/darkvador'{ "origin": "Star Wars", "author": "Dark Vador", "quote": "I am your father" }

» Get available origins

'https://quotewars.lilybarberou.fr/api/origins'[ "Game of Thrones", "Star Wars", "The Mandalorian", "..." ]

» Get available characters from an origin

'https://quotewars.lilybarberou.fr/api/characters/gameofthrones'[ "Jon Snow", "Arya Stark", "Sandor Clegane", "..." ]

Created by Lily B 🌊 © 2022