FR

FlickReels API

FlickReels is a short drama streaming platform offering a curated catalog of short-form drama series in 13 languages. This API provides HLS streaming via server-proxied m3u8 manifests with CDN-direct TS segments, trending content, search, and full episode access.

🎥
HLS Streaming
Signed m3u8 proxy
🌐
12 Languages
Multi-language support
🔓
All Episodes
Free & locked unlock
Authentication

Most FlickReels endpoints require the X-API-Key header. The /languages endpoint is public.

Rate Limits

PlanRequests / min
Free10
Monthly5,000
LifetimeUnlimited

Example Request

curl -H "X-API-Key: YOUR_KEY" \
{{BASE}}/api/flickreels/trending
Endpoints
GET /api/flickreels/languages Public
Returns supported languages with codes and IDs.
Example
curl "{{BASE}}/api/flickreels/languages"
GET /api/flickreels/trending?lang={lang} API Key
Returns currently trending dramas on FlickReels.
ParameterTypeDescription
langoptionalstringLanguage code (default: en)
Example
curl -H "X-API-Key: YOUR_KEY" "{{BASE}}/api/flickreels/trending?lang=en"
GET /api/flickreels/foryou?page={page}&lang={lang} API Key
Paginated drama recommendations.
ParameterTypeDescription
pageoptionalintegerPage number (default: 1)
langoptionalstringLanguage code (default: en)
Example
curl -H "X-API-Key: YOUR_KEY" "{{BASE}}/api/flickreels/foryou?page=1&lang=en"
GET /api/flickreels/search?query={q}&lang={lang} API Key
Search for dramas within FlickReels.
ParameterTypeDescription
queryrequiredstringSearch query
langoptionalstringLanguage code (default: en)
Example
curl -H "X-API-Key: YOUR_KEY" "{{BASE}}/api/flickreels/search?query=love&lang=en"
GET /api/flickreels/detail?id={id}&lang={lang} API Key
Get detailed information about a specific drama, including episode list.
ParameterTypeDescription
idrequiredstringDrama ID from search or trending results
langoptionalstringLanguage code (default: en)
Example
curl -H "X-API-Key: YOUR_KEY" "{{BASE}}/api/flickreels/detail?id=6031&lang=en"
GET /api/flickreels/allepisode?id={id}&lang={lang} API Key
Returns all episodes with HLS URLs for a drama.
ParameterTypeDescription
idrequiredstringDrama ID
langoptionalstringLanguage code (default: en)
Example
curl -H "X-API-Key: YOUR_KEY" "{{BASE}}/api/flickreels/allepisode?id=6031&lang=en"
GET /api/flickreels/episode?id={id}&ep={ep}&lang={lang} API Key
Returns a single episode with HLS URL.
ParameterTypeDescription
idrequiredstringDrama ID
eprequiredintegerEpisode number (1-based)
langoptionalstringLanguage code (default: en)
Example
curl -H "X-API-Key: YOUR_KEY" "{{BASE}}/api/flickreels/episode?id=6031&ep=1&lang=en"
GET /api/flickreels/hls?id={id}&ep={ep} API Key
HLS m3u8 proxy. Fetches m3u8 from CDN, rewrites TS segment paths to absolute CDN URLs. Requires API key authentication (X-API-Key header or api_key query param).
ParameterTypeDescription
idrequiredstringDrama ID
eprequiredintegerEpisode number (1-based)
Example
curl -H "X-API-Key: YOUR_KEY" "{{BASE}}/api/flickreels/hls?id=6031&ep=1"
FlickReels — Api-Dracin Multi-Source Drama Streaming API