MoviesDrive Provider
Provider for new3.moviesdrives.my — Hollywood movies, TV series, Netflix, Amazon Prime, with poster cards and quality labels.
Home
Browse latest movies and series from the homepage feed with quality indicators and pagination.
GET /v1/moviesdrive/home?api_key=YOUR_KEY&page=1
| Parameter | Type | Required |
|---|---|---|
| page | number | No (default 1) |
Response Schema
{
"success": true,
"data": {
"posts": [{
"title": "string",
"id": "string",
"link": "string",
"image": "string",
"quality": "4K | 1080p | 720p",
"type": "movie | series"
}],
"pagination": { "current_page": 1, "total_pages": 100, "has_next": true }
}
}
Search
Search movies and series by title on moviesdrives.my.
GET /v1/moviesdrive/search?api_key=YOUR_KEY&query=spider
| Parameter | Type | Required |
|---|---|---|
| query | string | Yes |
| page | number | No (default 1) |
Response Schema
{
"success": true,
"query": "string",
"data": [{
"title": "string",
"id": "string",
"link": "string",
"image": "string",
"quality": "string",
"type": "movie | series"
}]
}
Movie Info
Detailed movie/series metadata including description, categories, IMDb ID, and related posts.
GET /v1/moviesdrive/info?api_key=YOUR_KEY&id=spider-noir-season-1-2026
| Parameter | Type | Required |
|---|---|---|
| id | string | Yes |
Response Schema
{
"success": true,
"data": {
"id": "string",
"title": "string",
"image": "string",
"description": "string",
"categories": ["string"],
"imdb_id": "tt30460310",
"type": "movie | series",
"downloads": [{
"quality": "480p x264",
"url": "https://mdrive.lol/archive/6084/"
}],
"download_count": 10,
"related": [{
"title": "string",
"id": "string",
"link": "string",
"image": "string"
}]
}
}