AI Provider Settings
Keys are stored only for your session
Models are fetched from the selected provider after validating your API key.

Movies | Isaiaruvi

| Aspect | Isaiaruvi Movies | Mainstream Kollywood | |--------|------------------|----------------------| | Stars | Unknown / local artists | Top heroes | | Music | Folk, raw recording | Arranged, studio-rich | | Story | Hyper-local issues | Pan-India or city-centric | | Theatres | Very limited | Wide release | | Budget | < ₹1 Cr | ₹20–300 Cr |


While mainstream Tamil cinema is slowly changing, Isaiaruvi has always been ahead of the curve. These movies have unapologetically tackled issues like caste discrimination, colorism in the marriage market, LGBTQ+ relationships, mental health, and political corruption. They don't offer superficial solutions; they ask uncomfortable questions. isaiaruvi movies

// routes/movies.js
const express = require('express');
const router = express.Router();

// Mock movie data (replace with DB) const isaiaruviMovies = [ id: 1, title: "Thalapathy 69", genre: "Action", rating: 8.5, isMusicHeavy: true , id: 2, title: "Aruvi's Song", genre: "Musical Drama", rating: 9.0 , id: 3, title: "Rhythm Rain", genre: "Romance/Music", rating: 8.2 ]; | Aspect | Isaiaruvi Movies | Mainstream Kollywood

// GET /api/isaiaruvi-movies router.get('/isaiaruvi-movies', (req, res) => res.json( success: true, movies: isaiaruviMovies ); ); While mainstream Tamil cinema is slowly changing, Isaiaruvi

// GET /api/isaiaruvi-movies/top-rated router.get('/isaiaruvi-movies/top-rated', (req, res) => const topRated = [...isaiaruviMovies].sort((a, b) => b.rating - a.rating); res.json(topRated); );

module.exports = router;