SS
StarShort API
StarShort (WolfTV/ByteShort) is a short drama platform featuring premium series with BytePlus VOD streaming. This API provides access to StarShort content with HLS streaming via CDN URLs, RSA-2048 device authentication, and 4 language support — video streams served directly from BytePlus VOD CDN.
Returns list of supported languages with codes and names.
Example
curl -H "X-API-Key: YOUR_KEY" "{{BASE}}/api/starshort/languages"Copy
Returns currently trending dramas on StarShort.
Parameter Type Description
lang optional string Language code (default: en)
Example
curl -H "X-API-Key: YOUR_KEY" "{{BASE}}/api/starshort/trending?lang=en"Copy
Personalized drama recommendations with pagination.
Parameter Type Description
page optional integer Page number (default: 1)
lang optional string Language code (default: en)
Example
curl -H "X-API-Key: YOUR_KEY" "{{BASE}}/api/starshort/foryou?page=1&lang=en"Copy
Search for dramas within StarShort.
Parameter Type Description
q required string Search query
lang optional string Language code (default: en)
Example
curl -H "X-API-Key: YOUR_KEY" "{{BASE}}/api/starshort/search?q=love&lang=en"Copy
▶ Try It
q (query)
lang en
Send Request
Get detailed information about a specific StarShort drama including all episodes with video URLs.
Parameter Type Description
id required string Drama ID from search or trending results
lang optional string Language code (default: en)
Example
curl -H "X-API-Key: YOUR_KEY" "{{BASE}}/api/starshort/detail?id=12345&lang=en"Copy
Get video URL for a specific episode. Returns direct BytePlus VOD HLS stream URL.
Parameter Type Description
id required string Drama ID
ep required integer Episode number
lang optional string Language code (default: en)
Example
curl -H "X-API-Key: YOUR_KEY" "{{BASE}}/api/starshort/episode?id=12345&ep=1&lang=en"Copy
Redirects (302) to the BytePlus VOD CDN stream. Requires an API key (via X-API-Key header or api_key query param). Use the hlsUrl from the detail/episode response — do not construct manually.
Parameter Type Description
id required string Drama ID
ep required integer Episode number
api_key optional string API key (alternative to X-API-Key header)
q optional string Quality parameter (e.g. hd, sd)
Example
curl -H "X-API-Key: YOUR_KEY" "{{BASE}}/api/starshort/hls?id=12345&ep=1&q=hd"Copy