Skip to content

Get Movie by ID

This API provides comprehensive metadata for a specific movie. It runs concurrent requests to aggregate the movie’s details, high-res screenshots, cast list, and recommended similar movies into a single unified JSON response.

POST /api/v1/movies/get

The following parameters are accepted in the request body:

FieldTypeRequiredDescriptionExample
idintegerYesThe unique movie ID.11

Choose your preferred method to interact with the Movie Details API:

Terminal window
curl -X POST https://heavstal.com.ng/api/v1/movies/get \
-H "Content-Type: application/json" \
-H "x-api-key: <YOUR_API_KEY>" \
-d '{"id": 11}'
{
"status": "success",
"creator": "HEAVSTAL TECH",
"cached": false,
"cache_ttl": 86400,
"data": {
"id": 11,
"title": "13 Eerie",
"year": 2013,
"rating": 4.5,
"runtime_minutes": 87,
"genres": ["Action", "Horror", "Sci-Fi"],
"description": "Six forensic undergrads embark on a scientific expedition...",
"yt_trailer_code": "Mr0NM0draJo",
"language": "en",
"mpa_rating": "Not Rated",
"images": {
"background": "https://yts.gg/assets/images/movies/13_Eerie_2013/background.jpg",
"poster": "https://yts.gg/assets/images/movies/13_Eerie_2013/large-cover.jpg",
"screenshots": [
"https://yts.gg/assets/images/movies/13_Eerie_2013/large-screenshot1.jpg"
]
},
"cast": [
{
"name": "Brendan Fehr",
"character": "Daniel",
"image": "https://yts.gg/assets/images/actors/thumb/nm0270451.jpg"
}
],
"torrents": [
{
"quality": "1080p",
"type": "bluray",
"size": "1.24 GB",
"seeds": 1,
"peers": 0,
"file_download": "https://yts.gg/torrent/download/...",
"magnet_url": "magnet:?xt=urn:btih:B423E5...",
"hash": "B423E5BDFAC29096C11015DAA72401C769FFCA10"
}
],
"suggestions": [
{
"id": 6941,
"title": "Flatliners",
"year": 2017,
"rating": 5.2,
"poster": "https://yts.gg/assets/images/movies/flatliners_2017/medium-cover.jpg"
}
]
}
}