DB
DramaBox API
DramaBox is one of the most popular short drama apps globally, featuring thousands of bite-sized drama series across romance, thriller, fantasy, and more. This API provides access to DramaBox content with HLS streaming, 16 language support, and all episodes unlocked — TS segments served directly from CDN with zero server bandwidth.
Returns list of supported languages with codes and names.
Example
curl -H "X-API-Key: YOUR_KEY" "{{BASE}}/api/dramabox/languages"Copy
Returns currently trending dramas on DramaBox.
Parameter Type Description
lang optional string Language code (default: en)
Example
curl -H "X-API-Key: YOUR_KEY" "{{BASE}}/api/dramabox/trending?lang=en"Copy
Returns the latest / recently updated dramas.
Parameter Type Description
lang optional string Language code (default: en)
Example
curl -H "X-API-Key: YOUR_KEY" "{{BASE}}/api/dramabox/latest?lang=en"Copy
Returns VIP-exclusive dramas (premium content feed).
Parameter Type Description
lang optional string Language code (default: en)
Example
curl -H "X-API-Key: YOUR_KEY" "{{BASE}}/api/dramabox/vip?lang=en"Copy
Returns Indonesian-dubbed dramas (Dubbing Indonesia feed).
Parameter Type Description
lang optional string Language code (default: id)
Example
curl -H "X-API-Key: YOUR_KEY" "{{BASE}}/api/dramabox/dubindo?lang=id"Copy
Personalized drama recommendations with pagination.
Parameter Type Description
page optional integer Page number (default: 1)
lang optional string Language code (default: en)
Example
curl -H "X-API-Key: YOUR_KEY" "{{BASE}}/api/dramabox/foryou?page=1&lang=en"Copy
Search for dramas within DramaBox.
Parameter Type Description
q required string Search query
lang optional string Language code (default: en)
Example
curl -H "X-API-Key: YOUR_KEY" "{{BASE}}/api/dramabox/search?q=love&lang=en"Copy
▶ Try It
q (query)
lang en
Send Request
Get detailed information about a specific DramaBox drama.
Parameter Type Description
id required string Book ID from search or trending results
lang optional string Language code (default: en)
Example
curl -H "X-API-Key: YOUR_KEY" "{{BASE}}/api/dramabox/detail?id=42000004952&lang=en"Copy
▶ Try It
id (bookId)
lang en
Send Request
Returns all episodes with HLS video URLs, subtitle endpoint URLs, and metadata.
Each episode includes: number, chapterId, chapterName,
hlsUrl (requires API key), subtitlesUrl (per-episode subtitle tracks endpoint),
duration, locked (always false).
Parameter Type Description
id required string Book ID
lang optional string Language code (default: en)
Example
curl -H "X-API-Key: YOUR_KEY" "{{BASE}}/api/dramabox/allepisode?id=42000004952&lang=en"Copy
▶ Try It
id (bookId)
lang en
Send Request
Returns available subtitle tracks (VTT) for a specific episode. Each track includes a language code and direct VTT URL.
Parameter Type Description
id required string Book ID
ep required integer Episode number
lang optional string Language code (default: en)
Example
curl -H "X-API-Key: YOUR_KEY" "{{BASE}}/api/dramabox/subtitles?id=42000004952&ep=1"Copy
Returns a synthetic HLS m3u8 playlist. TS segments are served directly from CDN (zero server bandwidth).
Requires API key authentication. Use the hlsUrl from the allepisode response.
Parameter Type Description
id required string Book ID
ep required integer Episode number
api_key optional string API key (alternative to X-API-Key header)
Example
curl -H "X-API-Key: YOUR_KEY" "{{BASE}}/api/dramabox/hls?id=42000004952&ep=1"Copy