Streaming API Documentation

Access multiple streaming sources with simple REST API calls

Quick Start

Movie Example: TMDB ID 1084242 (Zootopia 2)

Series Example: TMDB ID 84958 (Loki)

GET

/api/strings

Fetch streams from mbox provider

Movie:

GET /api/strings?tmdb=1084242

Series:

GET /api/strings?tmdb=84958&s=1&e=1

Parameters:

GET

/api/mune

Fetch streams from vidnest-* providers

Movie:

GET /api/mune?tmdb=1084242

Series:

GET /api/mune?tmdb=84958&s=1&e=1

Parameters:

GET

/api/videasy

Fetch streams from videasy-* providers

GET /api/videasy?tmdb=1084242
GET /api/videasy?tmdb=84958&s=1&e=1
GET

/api/fun

Fetch streams from VidNest Fun provider

GET /api/fun?tmdb=1084242
GET /api/fun?tmdb=84958&s=1&e=1
GET

/api/bee

Fetch streams from XPrime provider

GET /api/bee?tmdb=1084242
GET /api/bee?tmdb=84958&s=1&e=1
GET

/api/lofi

Fetch streams from RiveStream provider

GET /api/lofi?id=1084242
GET /api/lofi?id=84958&s=1&e=1

Response Format

{
  "success": true,
  "tmdbId": "1084242",
  "type": "movie",
  "sources": [
    {
      "id": "strings-1",
      "url": "https://...",
      "quality": "1080p",
      "type": "mp4",
      "server": "String Hindi"
    }
  ]
}