๐ 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"
}