MR
MoboReels API
MoboReels (CDReader) is a multi-language short drama platform offering direct MP4 video streaming with WebVTT subtitles. This API provides access to MoboReels content with 16 language support, direct MP4 video URLs, and built-in subtitle tracks — no DRM or encryption, just direct video playback.
Returns list of supported languages with codes and names.
Example
curl -H "X-API-Key: YOUR_KEY" "{{BASE}}/api/moboreels/languages"Copy
Returns currently trending dramas on MoboReels.
Parameter Type Description
lang optional string Language code (default: id)
Example
curl -H "X-API-Key: YOUR_KEY" "{{BASE}}/api/moboreels/trending?lang=id"Copy
Browse drama catalog with pagination.
Parameter Type Description
page optional integer Page number (default: 1)
lang optional string Language code (default: id)
Example
curl -H "X-API-Key: YOUR_KEY" "{{BASE}}/api/moboreels/foryou?page=1&lang=id"Copy
Search for dramas within MoboReels.
Parameter Type Description
q required string Search query
lang optional string Language code (default: id)
Example
curl -H "X-API-Key: YOUR_KEY" "{{BASE}}/api/moboreels/search?q=cinta&lang=id"Copy
▶ Try It
q (query)
lang id
Send Request
Get detailed information about a specific MoboReels drama including episode list.
Parameter Type Description
id required string Drama ID from search or trending results
lang optional string Language code (default: id)
Example
curl -H "X-API-Key: YOUR_KEY" "{{BASE}}/api/moboreels/detail?id=102&lang=id"Copy
▶ Try It
id (dramaId)
lang id
Send Request
Get direct MP4 video URL and WebVTT subtitle tracks for a specific episode.
Parameter Type Description
id required string Drama ID
ep required integer Episode number
lang optional string Language code (default: id)
Example
curl -H "X-API-Key: YOUR_KEY" "{{BASE}}/api/moboreels/episode?id=102&ep=1&lang=id"Copy