A simple REST API serving quotes from the Stranger Things series.
Base URL: https://stranger-things-quotes-api.vercel.app
GET /api/quotes- Get a list of quotes (paginated)GET /api/quotes/random- Get a random quoteGET /api/quotes/character/{name}- Get quotes by a specific characterGET /api/quotes/season/{season}- Get quotes from a specific season
limit(int): Number of quotes to return (default: 10)offset(int): Offset for paginationcount(int): Number of random quotes (default: 1)
- Clone the repository
- Install dependencies:
pip install -r requirements.txt - Run locally:
uvicorn api.index:app --reload