Free Movies, TV Series & Anime API Platform
Access thousands of movies, TV shows, and anime with our comprehensive API platform
π Get Started β’ π Documentation β’ π₯ Features β’ π‘ Examples β’ π€ Contributing
|
Access content from 8+ popular platforms including VegaMovies, AllMoviesHub, KMmovies, and more |
Optimized API endpoints with caching and rate limiting for consistent performance |
API key authentication with usage tracking and request limits |
|
RESTful API with JSON responses, comprehensive docs, and code examples |
Fresh content with real-time scraping and automatic updates |
Generous free tier with 1000+ requests per month |
- π¬ Movies - Latest releases, classics, regional cinema
- πΊ TV Series - Popular shows, seasons, episodes
- π Anime - Sub/dub content with episode tracking
- π Regional Content - Hindi, Tamil, Telugu, Malayalam movies
- π± Multiple Qualities - 480p to 4K content
- π Multi-language - Support for various languages and subtitles
Visit totu.me and sign up for a free account to get your API key.
curl -X GET "https://totu.me/api/posts" \
-H "x-api-key: YOUR_API_KEY" \
-H "Content-Type: application/json"https://totu.me/api
All requests require an API key in the header:
headers: {
'x-api-key': 'YOUR_API_KEY',
'Content-Type': 'application/json'
}π¬ Movies API
GET /api/moviesdriveGET /api/moviesdrive?search=avengersGET /api/moviesdrive/episode?url=MOVIE_URLGET /api/hubcloud?url=HUBCLOUD_URLπΊ Anime API
GET /api/postsGET /api/posts?search=narutoGET /api/episodes/anime-idGET /api/video?url=EPISODE_URLπ Multiple Platform APIs
- VegaMovies:
/api/vegamovies - AllMoviesHub:
/api/allmovieshub - KMmovies:
/api/kmmovies - DesireMovies:
/api/desiremovies - 10BitClub:
/api/10bitclub - VidSrc:
/api/vidsrc
const response = await fetch('https://totu.me/api/posts?search=demon slayer', {
headers: {
'x-api-key': 'YOUR_API_KEY',
'Content-Type': 'application/json'
}
});
const data = await response.json();
console.log(data.posts);import requests
url = "https://totu.me/api/moviesdrive"
headers = {
"x-api-key": "YOUR_API_KEY",
"Content-Type": "application/json"
}
response = requests.get(url, headers=headers)
data = response.json()
print(data["posts"])curl -X GET "https://totu.me/api/vegamovies?search=spider-man" \
-H "x-api-key: YOUR_API_KEY" \
-H "Content-Type: application/json"All endpoints return standardized JSON responses:
{
"success": true,
"count": 20,
"posts": [
{
"id": "123",
"title": "Movie Title (2024)",
"imageUrl": "https://example.com/poster.jpg",
"postUrl": "https://example.com/movie-page",
"qualities": ["480p", "720p", "1080p"],
"languages": ["Hindi", "English"],
"releaseYear": "2024"
}
],
"remainingRequests": 995
}- Framework: Next.js 14 with App Router
- Database: PostgreSQL with Drizzle ORM
- Authentication: Firebase Auth
- Styling: Tailwind CSS + shadcn/ui
- Web Scraping: Cheerio + Axios
- Deployment: Vercel
- Language: TypeScript
- Full-text search across multiple platforms
- Filter by quality, language, year
- Category-based browsing
- Real-time suggestions
- Request usage tracking
- API key management
- Performance metrics
- Rate limit monitoring
- API key authentication
- Rate limiting
- Request validation
- Error handling
- Interactive API explorer
- Code generation
- Response examples
- Comprehensive documentation
| Plan | Requests/Month | Rate Limit |
|---|---|---|
| Free | 1,000 | 100/hour |
| Pro | 10,000 | 500/hour |
| Enterprise | Unlimited | Custom |
- β Chrome (Latest)
- β Firefox (Latest)
- β Safari (Latest)
- β Edge (Latest)
- β Mobile browsers
- π Added VegaMovies API support
- π§ Improved error handling
- β‘ Enhanced performance
- π± Better mobile responsiveness
- π Added Anime API
- π Implemented API key system
- π Added analytics dashboard
- π§ Email: [email protected]
- π¬ Telegram: Join our community
- π Issues: GitHub Issues
- π Docs: totu.me/docs
If this project helps you, please consider:
- β Starring this repository
- π Reporting bugs
- π‘ Suggesting new features
- π€ Contributing to the code
Made with β€οΈ by the ScreenScape Team
Website β’ Documentation β’ GitHub