Returns list of supported languages with codes and names.
Example
curl -H "X-API-Key: YOUR_KEY" "{{BASE}}/api/idrama/languages"Copy
Returns trending dramas from iDrama.
Parameter Type Description
lang optional string Language code (default: id)
page optional integer Page number (default: 1)
Example
curl -H "X-API-Key: YOUR_KEY" "{{BASE}}/api/idrama/trending?lang=id"Copy
Returns paginated drama catalog from iDrama.
Parameter Type Description
lang optional string Language code (default: id)
page optional integer Page number (default: 1)
Example
curl -H "X-API-Key: YOUR_KEY" "{{BASE}}/api/idrama/foryou?page=1&lang=id"Copy
Search for dramas within iDrama by keyword.
Parameter Type Description
q required string Search query
lang optional string Language code (default: id)
page optional integer Page number (default: 1)
Example
curl -H "X-API-Key: YOUR_KEY" "{{BASE}}/api/idrama/search?q=love&lang=id"Copy
Get detailed information about a specific iDrama drama.
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/idrama/detail?id=12345&lang=id"Copy
▶ Try It
id (dramaId)
lang id
Send Request
Returns episode data including a direct CDN video URL. Episodes are automatically unlocked via visitor rotation
— no DRM decryption needed, just play the video URL.
Parameter Type Description
id required string Drama ID
ep required integer Episode number (1-based)
lang optional string Language code (default: id)
Example
curl -H "X-API-Key: YOUR_KEY" "{{BASE}}/api/idrama/episode?id=12345&ep=1&lang=id"Copy