🎬 CinePro is officially here! Check out the latest release for details!🥳
const options = {method: 'GET'};
fetch('https://api.example.com/v1/movies/{id}', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));{
"responseId": "bdfa40a7-a468-461c-8563-7a0c165f252c",
"expiresAt": "2026-01-15T18:00:00Z",
"sources": [
{
"url": "/v1/proxy?data=%7B%22url%22%3A%22https%3A%2F%2Fcdn.example.com%2Fstream.m3u8%22%7D",
"type": "hls",
"quality": "1080p",
"audioTracks": [
{
"language": "en",
"label": "English"
}
],
"provider": {
"id": "prov_1",
"name": "Provider One"
}
}
],
"subtitles": [
{
"url": "/v1/proxy?data=%7B%22url%22%3A%22https%3A%2F%2Fcdn.example.com%2Fsub.vtt%22%7D",
"label": "English",
"format": "vtt"
}
],
"diagnostics": []
}Retrieve all available streaming sources and subtitles for a movie by TMDB ID.
Requirements:
const options = {method: 'GET'};
fetch('https://api.example.com/v1/movies/{id}', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));{
"responseId": "bdfa40a7-a468-461c-8563-7a0c165f252c",
"expiresAt": "2026-01-15T18:00:00Z",
"sources": [
{
"url": "/v1/proxy?data=%7B%22url%22%3A%22https%3A%2F%2Fcdn.example.com%2Fstream.m3u8%22%7D",
"type": "hls",
"quality": "1080p",
"audioTracks": [
{
"language": "en",
"label": "English"
}
],
"provider": {
"id": "prov_1",
"name": "Provider One"
}
}
],
"subtitles": [
{
"url": "/v1/proxy?data=%7B%22url%22%3A%22https%3A%2F%2Fcdn.example.com%2Fsub.vtt%22%7D",
"label": "English",
"format": "vtt"
}
],
"diagnostics": []
}Documentation Index
Fetch the complete documentation index at: https://docs.cinepro.cc/llms.txt
Use this file to discover all available pages before exploring further.
TMDB movie ID (numeric, max 20 characters)
^\d{1,20}$Streaming sources and subtitles found
Unique identifier for this response (UUID v4)
"bdfa40a7-a468-461c-8563-7a0c165f252c"
ISO 8601 timestamp when sources expire and cache is invalidated. Recommended default: 2 hours from response time for sources.
"2026-01-15T18:00:00Z"
Array of available streaming sources
Show child attributes
Array of available subtitles
Show child attributes
Optional diagnostics for partial scrapes, warnings, or metadata inferred from filenames. Useful for understanding why certain fields may have incomplete or inferred values.
Show child attributes
Was this page helpful?