Developer Dashboard
Your central hub for the EmmyHenz MovieBox API — a high-performance scraper proxy that gives you programmatic access to movies, TV series, and direct streaming sources.
⚡ What is the EmmyHenz MovieBox API?
This API is a reverse-engineered proxy layer built on top of the MovieBox platform's internal BFF (Backend-for-Frontend) endpoints. It was crafted by analysing real mobile app traffic via PCAP captures and building a clean, developer-friendly REST interface around the raw data — so you never have to deal with sessions, cookie jars, or region locks yourself.
The server handles all the heavy lifting: session initialisation, cookie management via tough-cookie, IP spoofing headers, and Cloudflare bypass headers are all managed automatically on every request. What you get back is clean, structured JSON — ready to drop into any frontend, mobile app, or automation pipeline.
Stream links are returned as both direct CDN URLs and proxy URLs (via /api/stream/ and /api/download/) — giving you flexibility to stream in-browser or serve downloads without CORS issues. The proxy also supports byte-range requests, meaning video players can seek, scrub, and resume without re-downloading the whole file.
Configured with 7 mirror hosts and selectable via environment variables, this API degrades gracefully across regions. Whether you're building a personal media app, a bot, or just exploring the data — all you need is an HTTP client.
Returns a paginated list of currently trending movies and TV shows across the platform — no parameters required.
/api/trending
Full-text search across movies and TV series. Returns matched items with their movieId — the key used by all other endpoints.
/api/search/{query}
Full metadata for a specific title — synopsis, release year, cast, genres, ratings, and high-resolution posters.
/api/info/{movieId}
Extracts direct CDN video links and wraps them in proxy URLs for seamless browser streaming and file downloads. Supports byte-range for seeking.
/api/sources/{movieId}
Use the sidebar to navigate to any endpoint and test it live with a built-in JSON explorer. Start with Search Library to find a Movie ID, then pass it to Stream & Download.
Trending Media
Retrieve a paginated list of the most popular movies and TV series on the MovieBox platform right now. No authentication or parameters required — just hit the endpoint and get results.
curl -X GET "/api/trending"
Hit 'Fetch Trending' to see the live JSON response...
Search Library
Search the entire MovieBox catalogue by title keyword. Returns a ranked list of matching movies and TV series, each including their movieId needed for the info and sources endpoints.
curl -X GET "/api/search/{query}"
Results will appear here...
Media Details
Get comprehensive metadata for a specific title — including plot synopsis, release date, cast members, genres, ratings, episode lists (for series), and full-resolution cover art.
curl -X GET "/api/info/{movieId}"
Movie details will appear here...
Stream & Download
Extract direct video links for a movie or TV episode. Returns both raw CDN URLs and proxied versions via /api/stream/ (browser streaming, supports seek) and /api/download/ (file download).
curl -X GET "/api/sources/{movieId}"
For TV series, append ?season=1&episode=1 to target a specific episode. Season and episode default to 0 (treated as movie/first ep) if omitted.
Video sources will appear here...