A production-ready REST API for scraping Asian dramas, movies, and shows with caching, error handling, and consistent response formats.
Intelligent caching with configurable TTLs reduces repeated requests and improves response times.
Comprehensive error handling, validation, and retry logic for robust operation.
All endpoints return standardized JSON with success/error status, messages, and metadata.
12 endpoints covering home, recent, popular, genres, countries, search, and drama details.
{
"success": true,
"message": "Success message",
"data": { ... },
"pagination": {
"currentPage": 1,
"totalPages": 10,
"hasNext": true,
"hasPrev": false
},
"metadata": {
"cached": false,
"timestamp": "2026-04-06T14:20:22.462Z"
}
}
All endpoints follow this consistent format. Error responses include "success": false and an "error" field.