Movie Quote API
July 7, 2026 ยท View on GitHub
A Django REST Framework (DRF) API that serves random movie/series quotes.
Run locally
Linux
git clone https://github.com/F4R4N/movie-quote.gitapt install python3cd movie-quotepython3 -m venv venvsource venv/bin/activatemv sample.config.py config.py(change settings based on your usage)python3 manage.py migratepython3 manage.py runserver- open browser in 127.0.0.1:8000
Usage
use the following path's to get the quotes.
/v1/quote/
get a random quote each time, from all quotes.
/v1/quote?censored
don't show quotes which contain adult language.
/v1/shows/<show_slug>
you can get a random quote from the desired show.
/v1/shows/
get list of available shows slugs.
make this repo better
feel free to open issue or pull request I am trying to make repo better and this will help me.