UHDMovies Provider
Provider for uhdmovies.rodeo — 4K/1080p movies, TV series, dual audio, with download link extraction and quality tags.
Home
Browse latest movies and series with pagination. Each post includes categories, quality tags, and type detection.
GET /v1/uhdmovies/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",
"categories": ["string"],
"type": "movie | series",
"quality_tags": ["1080p hevc", "4k hdr"]
}],
"pagination": { "current_page": 1, "total_pages": 439, "has_next": true }
}
}
Search
Search movies and series by title. Includes basic pagination.
GET /v1/uhdmovies/search?api_key=YOUR_KEY&query=avatar
| 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",
"categories": ["string"],
"type": "movie | series"
}],
"pagination": { "page": 1, "has_next": false }
}
Movie Info
Full movie/series detail with description, categories, download links per quality tier, and related posts.
GET /v1/uhdmovies/info?api_key=YOUR_KEY&id=POST_ID
| Parameter | Type | Required |
|---|---|---|
| id | string | Yes |
Response Schema
{
"success": true,
"data": {
"id": "string",
"title": "string",
"image": "string (og:image)",
"description": "string",
"categories": ["string"],
"type": "movie | series",
"downloads": [{
"quality": "1080p x264 UHD",
"url": "https://cloud.unblockedgames.world/..."
}],
"download_count": 14,
"related": [{
"title": "string",
"id": "string",
"link": "string",
"image": "string"
}]
}
}