DN
DramaNova API
DramaNova (DramaVerse) is a ByteDance-powered short drama platform with PSSDK encrypted API and BytePlus VOD streaming. This API provides access to DramaNova content with 15 language support, DRM-free MP4 bypass via BytePlus VOD, and dual API path (PSSDK primary, RuiQiLin fallback) — served through Indonesian geo-proxy for optimal access.
Returns list of supported languages with codes and names.
Example
curl -H "X-API-Key: YOUR_KEY" "{{BASE}}/api/dramanova/languages"Copy
Returns currently trending / popular dramas on DramaNova.
Parameter Type Description
lang optional string Language code (default: id)
Example
curl -H "X-API-Key: YOUR_KEY" "{{BASE}}/api/dramanova/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/dramanova/foryou?page=1&lang=id"Copy
Returns the latest / recently updated dramas.
Parameter Type Description
lang optional string Language code (default: id)
Example
curl -H "X-API-Key: YOUR_KEY" "{{BASE}}/api/dramanova/latest?lang=id"Copy
Search for dramas within DramaNova.
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/dramanova/search?q=cinta&lang=id"Copy
▶ Try It
q (query)
lang id
Send Request
Get detailed information about a specific DramaNova 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/dramanova/detail?id=7433750748339200&lang=id"Copy
▶ Try It
id (Drama ID)
lang id
Send Request
Get BytePlus VOD MP4 video URL 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/dramanova/episode?id=7433750748339200&ep=1&lang=id"Copy