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
ParameterTypeRequired
pagenumberNo (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 }
  }
}

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
ParameterTypeRequired
idstringYes
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"
    }]
  }
}