提供完整的 RESTful API,无需登录即可访问公开数据,支持开发者集成使用。
无缝对接 TMDB 数据库,自动补全电影、电视剧信息,支持自定义字段扩展。
现代化的响应式管理界面,支持用户提交、管理员审核、统计报表等功能。
以下接口无需认证即可调用
fetch('/api/tmdb/search?query=avatar&type=movie')
.then(res => res.json())
.then(data => console.log(data));
fetch('/api/contents/public?page=1&limit=10')
.then(res => res.json())
.then(data => console.log(data));