Skip to content

Latest Movies

This API provides provides real-time feed of the newest movies added to the internet. This endpoint has a shorter 1-hour cache to ensure your app always displays the newest releases.

POST /api/v1/movies/latest

The following parameters are accepted in the request body:

FieldTypeRequiredDescriptionExample
limitintegerOptionalResults per page (Max 50, Default 20).10
pageintegerOptionalPage number for pagination.1
Terminal window
curl -X POST https://heavstal.com.ng/api/v1/movies/latest \
-H "Content-Type: application/json" \
-H "x-api-key: <YOUR_API_KEY>" \
-d '{"limit": 5}'
{
"status": "success",
"creator": "HEAVSTAL TECH",
"cached": false,
"cache_ttl": 3600,
"data": {
"count": 5,
"page": 1,
"movies": [
{
"id": 77104,
"title": "40 Dates and 40 Nights",
"year": 2026,
"rating": 0,
"genres": ["Comedy", "Romance"],
"poster": "https://yts.gg/assets/images/movies/40_dates_and_40_nights_2026/large-cover.jpg"
},
{
"id": 77103,
"title": "Lupi nostri",
"year": 2025,
"rating": 0,
"genres": ["Documentary"],
"poster": "https://yts.gg/assets/images/movies/lupi_nostri_2025/large-cover.jpg"
}
]
}
}