🎬 CinePro is officially here! Check out the latest release for details!🥳
const options = {method: 'GET'};
fetch('https://api.example.com/v1', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));{
"name": "My OMSS Backend",
"version": "1.0.0",
"status": "operational",
"endpoints": {
"movie": "/v1/movies/{id}",
"tv": "/v1/tv/{id}/seasons/{s}/episodes/{e}",
"proxy": "/v1/proxy/?data={encoded_data}"
},
"spec": "omss",
"note": "Community-powered streaming backend"
}Returns version information and available endpoints.
const options = {method: 'GET'};
fetch('https://api.example.com/v1', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));{
"name": "My OMSS Backend",
"version": "1.0.0",
"status": "operational",
"endpoints": {
"movie": "/v1/movies/{id}",
"tv": "/v1/tv/{id}/seasons/{s}/episodes/{e}",
"proxy": "/v1/proxy/?data={encoded_data}"
},
"spec": "omss",
"note": "Community-powered streaming backend"
}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.
Backend is operational
Human-readable name of the backend
"My OMSS Backend"
Backend version (semantic versioning)
"1.0.0"
Current operational status
operational, degraded, maintenance, offline Standard name (always "omss")
omss Available endpoint paths
Show child attributes
Optional note about the backend or recommended frontend
"Community-powered streaming backend. Visit https://github.com/mybackend for more info."
Was this page helpful?