๐ŸŽฌ Movieku API

Scrape movies and series from Movieku

โšก Fast & Free API
๐Ÿ‘จโ€๐Ÿ’ป
Developer: JOHN SNOW
๐Ÿ“ฑ Channel: @ByteCoderX
โšก Powered by FAST

๐Ÿ“ก Base URL

GET https://movie-beast.vercel.app/api
All endpoints are relative to this base URL.

๐Ÿš€ Endpoints

GET /?action=home
Get basic homepage with latest articles.
Example: https://movie-beast.vercel.app/api?action=home
GET /?action=ongoing
Get ongoing series list.
Example: https://movie-beast.vercel.app/api?action=ongoing
GET /?action=search&q={query}
Search for movies or series by title.
q string - Search query (required)
Example: https://movie-beast.vercel.app/api?action=search&q=game+of+thrones
GET /?action=genre&slug={slug}
Get content by genre slug.
slug string - Genre slug (e.g., action, comedy, drama)
Example: https://movie-beast.vercel.app/api?action=genre&slug=action
GET /?action=actor&name={name}
Get content by actor name.
name string - Actor name (required)
Example: https://movie-beast.vercel.app/api?action=actor&name=johnny+depp
GET /?action=series-episodes&url={series_url}
Get series with ALL episodes and download links.
url string - Full series URL (required)
Example: https://movie-beast.vercel.app/api?action=series-episodes&url=https://movieku.rest/series/game-of-thrones-s1/

๐Ÿ“ฆ Response Format

All responses follow this structure:
{ "success": true, "data": { ... }, "developer": { "name": "JOHN SNOW", "channel": "https://t.me/ByteCoderX", "powered_by": "FAST" }, "timestamp": "2024-01-01T00:00:00.000Z" }

โš ๏ธ Error Handling

On error, the response will contain an error message:
{ "success": false, "error": "Query parameter 'q' is required for search", "developer": { ... }, "timestamp": "2024-01-01T00:00:00.000Z" }

๐Ÿงช Try It Now

Click the buttons below to test the API: