Skip to main content
LME.Unimay integrates a Ukrainian anime and dorama streaming service into Lampac NextGen via its JSON API at api.unimay.media/v1. The module searches for titles by name, presents a similar-title picker when multiple results are returned, and then navigates through seasons and episodes with voice-track selection.
Version 4.1. The key in init.conf must be "LME.Unimay" (not "Unimay").

HTTP route

MethodPathDescription
GET/lite/lme.unimaySearch, release detail, season/episode listing, and stream redirect
The single endpoint handles all stages via query parameters:
  • Without code — performs a title search and shows a similar-title list.
  • With code — loads the specific release; shows a season list if s=-1, or episodes if s is set.
  • With code and play=true — redirects directly to the stream URL for the requested episode.

How it works

1

Search

The module queries the Unimay API by title and optional serial flag. When more than one match is found, a picker is shown. Each entry links back with a code parameter identifying the release.
2

Season selection (serials)

For a TV series (Телесеріал), if s is not set, the module returns a single season entry. Selecting it appends s=1 and reloads.
3

Episode listing

With a season selected, the module lists episodes from the release playlist. Each episode entry uses method: "play" and links to the same route with play=true, s, and e set.
4

Stream redirect

When play=true, the module resolves the episode’s stream URL from the playlist and issues an HTTP redirect through HostStreamProxy.

init.conf example

"LME.Unimay": {
  "enable": true,
  "domain": "https://api.unimay.media/v1",
  "displayname": "Unimay",
  "displayindex": 0,
  "streamproxy": false,
  "useproxy": false
}

Configuration reference

enable
boolean
default:"true"
Enable or disable the module.
domain
string
default:"https://api.unimay.media/v1"
Base URL of the Unimay API. This is the API endpoint, not the website URL.
displayname
string
default:"Unimay"
Name shown in the Lampac UI.
displayindex
integer
default:"0"
Sort order among sources.
streamproxy
boolean
default:"false"
Route stream URLs through Lampac’s built-in stream proxy.
useproxy
boolean
default:"false"
Send HTTP requests to the Unimay API through the configured SOCKS5 proxy list.

Build docs developers (and LLMs) love