Skip to main content

Video Players

The API provides HTML pages with iframes for embedding video players.

Available Players

PlayerEndpoint
AllohaGET /api/v1/players/alloha/kp/{kp_id}
LumexGET /api/v1/players/lumex/kp/{kp_id}
VibixGET /api/v1/players/vibix/kp/{kp_id}
HDVBGET /api/v1/players/hdvb/kp/{kp_id}
CollapsGET /api/v1/players/collaps/kp/{kp_id}

Example

GET /api/v1/players/alloha/kp/326

Response — an HTML page with Content-Type: text/html:

<!DOCTYPE html>
<html>
<body style="margin:0">
<iframe src="https://alloha.tv/..." width="100%" height="100%" ...></iframe>
</body>
</html>

TV Shows (Collaps)

For TV shows you can specify season and episode:

GET /api/v1/players/collaps/kp/77044?season=1&episode=3

Response Codes

CodeReason
200HTML iframe
404Video not found at the player
500Player not configured (missing env variable)

Embedding in Your App

<iframe
src="https://api.neomovies.ru/api/v1/players/alloha/kp/326"
width="100%"
height="500"
frameborder="0"
allowfullscreen
></iframe>