List Of New Malayalam Movies [90% POPULAR]
A Comprehensive Guide to New Malayalam Movies
Are you a fan of Malayalam cinema? Look no further! This guide provides you with the latest information on new Malayalam movies, including where to find them, how to stay updated, and what to expect from the industry.
Introduction to Malayalam Cinema
Malayalam cinema, also known as Mollywood, is a thriving film industry based in Kerala, India. With a rich history dating back to the 1920s, Malayalam cinema has evolved over the years, producing a wide range of films that cater to diverse audiences. From drama and thriller to comedy and romance, Malayalam movies have something for everyone.
List of New Malayalam Movies
Here's a list of some of the latest Malayalam movies, released in the past year:
- 2022 Releases:
- "Drishyam 2" (Thriller) - Directed by Abhijith Joseph
- "Hridayam" (Romantic Drama) - Directed by Vinil Mathew
- "The Great Indian Kitchen" (Drama) - Directed by Jeo Baby
- 2023 Releases:
- "Aavesham" (Horror Comedy) - Directed by Midhun Manuel Thomas
- "Pathan" (Action Thriller) - Directed by Siddique
- "Kadal Meengal" (Drama) - Directed by Suresh Vinu
Where to Find New Malayalam Movies
- Theaters: Malayalam movies are primarily released in theaters across Kerala and other parts of India. You can check with local cinemas for upcoming releases.
- Streaming Platforms: Many Malayalam movies are now available on popular streaming platforms like:
- Amazon Prime Video
- Netflix
- Disney+ Hotstar
- ZEE5
- OTT Platforms: Some popular OTT platforms that showcase Malayalam movies include:
- Malayalam Talkies
- Cinema Malayalam
- Keralafilm
How to Stay Updated on New Malayalam Movies list of new malayalam movies
- Follow Malayalam Film Industry Social Media Accounts:
- Facebook: @malayalammovieindustry
- Twitter: @mollywoodnews
- Instagram: @malayalamcinema
- Subscribe to Movie News Websites:
- Malayalam Movie News
- Cinema Express
- Onlook Media
- Join Online Communities:
- Reddit: r/MalayalamMovies
- Facebook Groups: Malayalam Movie Lovers
Tips for Watching New Malayalam Movies
- Check Reviews: Read reviews from reputable sources to get an idea of the movie's quality.
- Watch Trailers: Get a glimpse of the movie's plot, characters, and tone.
- Explore Different Genres: Malayalam cinema offers a wide range of genres; try something new!
- Support Local Cinema: Watch movies in theaters to support local cinema and the film industry.
Conclusion
Malayalam cinema has something to offer for every kind of movie enthusiast. With this guide, you're now equipped to stay updated on new Malayalam movies, explore different genres, and enjoy the best of Mollywood. Happy watching!
The Malayalam film industry is experiencing a significant surge in 2026, characterized by high-budget multi-starrers and the return of iconic franchises. As of late April 2026, several major titles are transitioning from theaters to streaming platforms, while the summer blockbuster season is just beginning. New & Upcoming Theatrical Releases
The following films are currently leading the box office or scheduled for release in early May: Patriot
(May 1, 2026): A massive espionage thriller directed by Mahesh Narayanan, featuring the rare pairing of legends Mammootty and Mohanlal alongside Fahadh Faasil and Nayanthara. Drishyam 3
(May 21, 2026): The highly anticipated sequel in Jeethu Joseph's crime thriller franchise. Mohanlal reprises his role as Georgekutty, with the story set four years after the events of the second film. Kattalan A Comprehensive Guide to New Malayalam Movies Are
(May 14, 2026): An action-packed cartel war drama starring Antony Varghese and Sunil.
(May 14, 2026): A multi-starrer featuring Tovino Thomas, Basil Joseph, and Vineeth Sreenivasan. Mollywood Times
(May 14, 2026): A new project starring Naslen and Sharaf U Dheen. Recent Hits & Theatre-to-OTT Transitions
Many films that dominated early 2026 are now becoming available on streaming platforms like Netflix, Prime Video, and JioHotstar: New Upcoming Malayalam Movies 2026 - IMDb
🎯 Feature Overview
Goal: Display a regularly updated, sortable/filterable list of newly released Malayalam movies (last 6 months) with details like title, release date, genre, rating, and poster.
5. Anand Sribala’s Next
After the critically acclaimed Nna Thaan Case Kodu, director Ratheesh Balakrishnan Poduval (rumored to be working on similar lines) and newcomer Anand Sribala are exploring the satire genre again. The industry is keen to see if the "Common Man vs System" narrative continues to evolve.
📦 Feature Components
1. Manjummel Boys (2024)
- Genre: Survival Thriller / Horror
- Director: Chidambaram
- Cast: Soubin Shahir, Sreenath Bhasi, Balu Varghese
- Why it made the list: Based on a true incident from 2006, this film became a cultural phenomenon. It chronicles a group of friends who get trapped in the infamous Guna Caves (Devil’s Kitchen) in Kodaikanal. With a massive box office collection and a sensational viral song ("Kanda Sasi"), it is a must-watch.
🔧 Backend – server.js (Node.js/Express)
const express = require('express'); const axios = require('axios'); const NodeCache = require('node-cache'); const app = express(); const cache = new NodeCache( stdTTL: 3600 ); // 1 hourconst TMDB_API_KEY = 'your_tmdb_api_key_here'; const TMDB_BASE = 'https://api.themoviedb.org/3'; 2022 Releases:
// Fetch new Malayalam movies (released in last 180 days) app.get('/api/new-malayalam-movies', async (req, res) => const cacheKey = 'malayalam_new_movies'; let movies = cache.get(cacheKey);
if (!movies) try const today = new Date(); const sixMonthsAgo = new Date(); sixMonthsAgo.setMonth(today.getMonth() - 6);
const fromDate = sixMonthsAgo.toISOString().split('T')[0]; const toDate = today.toISOString().split('T')[0]; // Discover movies with language = ml, region = IN, primary release date range const response = await axios.get(`$TMDB_BASE/discover/movie`, params: api_key: TMDB_API_KEY, language: 'ml', region: 'IN', with_original_language: 'ml', 'primary_release_date.gte': fromDate, 'primary_release_date.lte': toDate, sort_by: 'release_date.desc', include_adult: false ); movies = response.data.results.map(movie => ( id: movie.id, title: movie.title, originalTitle: movie.original_title, releaseDate: movie.release_date, posterPath: movie.poster_path ? `https://image.tmdb.org/t/p/w500$movie.poster_path` : null, voteAverage: movie.vote_average, overview: movie.overview, genreIds: movie.genre_ids )); cache.set(cacheKey, movies); catch (error) return res.status(500).json( error: 'Failed to fetch movies' );res.json(movies); );
app.listen(5000, () => console.log('Server running on port 5000'));