API Portal

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.

4
API Endpoints
7+
Mirror Hosts
4K
Max Quality

⚡ 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.

1 Search for title
2 Get Movie ID
3 Fetch metadata
4 Extract stream URLs

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.

GET Trending Media

Returns a paginated list of currently trending movies and TV shows across the platform — no parameters required.

/api/trending
GET Search Library

Full-text search across movies and TV series. Returns matched items with their movieId — the key used by all other endpoints.

/api/search/{query}
Optional: ?type=1 (movies) · ?type=2 (series) · ?page=1&perPage=24
GET Media Details

Full metadata for a specific title — synopsis, release year, cast, genres, ratings, and high-resolution posters.

/api/info/{movieId}
GET Stream & Download

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}
For TV: add ?season=1&episode=1

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.

Endpoint
GET

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 Example
curl -X GET "/api/info/{movieId}"
Live Test
Movie details will appear here...
Endpoint
GET

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 Example
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.

Live Test
Video sources will appear here...