Access multiple streaming sources with simple REST API calls
Movie Example: TMDB ID 1084242 (Zootopia 2)
Series Example: TMDB ID 84958 (Loki)
Fetch streams from mbox provider
Movie:
GET /api/strings?tmdb=1084242
Series:
GET /api/strings?tmdb=84958&s=1&e=1
Parameters:
tmdb - TMDB ID (required)s - Season numbere - Episode numberFetch streams from vidnest-* providers
Movie:
GET /api/mune?tmdb=1084242
Series:
GET /api/mune?tmdb=84958&s=1&e=1
Parameters:
tmdb - TMDB ID (required)s - Seasone - EpisodeFetch streams from videasy-* providers
GET /api/videasy?tmdb=1084242
GET /api/videasy?tmdb=84958&s=1&e=1
Fetch streams from VidNest Fun provider
GET /api/fun?tmdb=1084242
GET /api/fun?tmdb=84958&s=1&e=1
Fetch streams from XPrime provider
GET /api/bee?tmdb=1084242
GET /api/bee?tmdb=84958&s=1&e=1
Fetch streams from RiveStream provider
GET /api/lofi?id=1084242
GET /api/lofi?id=84958&s=1&e=1
{
"success": true,
"tmdbId": "1084242",
"type": "movie",
"sources": [
{
"id": "strings-1",
"url": "https://...",
"quality": "1080p",
"type": "mp4",
"server": "String Hindi"
}
]
}