Xiaomi Fastboot ROM API

Get official Xiaomi fastboot ROM download links and information

API Documentation

This API provides access to official Xiaomi fastboot ROM download links and information.

Example Request

Try this example to get ROM information for Xiaomi POCO F5 (marble) in China region:

Try Example

API Endpoints

Get ROM Information

GET /rom-info

Parameters

Example Request

GET /rom-info?device=marble®ion=cn

Example Response

{
  "device": "marble",
  "codename": "marble",
  "version": "V14.0.6.0.TMCCNXM",
  "size": "1234567890",
  "download_url": "https://bkt-sgp-miui-ota-update-alisgp.oss-ap-southeast-1.aliyuncs.com/V14.0.6.0.TMCCNXM/marble_images_V14.0.6.0.TMCCNXM_20230101.0000.00_13.0_cn_abcdef1234.tgz",
  "filename": "marble_images_V14.0.6.0.TMCCNXM_20230101.0000.00_13.0_cn_abcdef1234.tgz",
  "codebase": "13.0",
  "type": "fullrom",
  "region": "cn",
  "branch": "F"
}

POST Request

POST /rom-info

Request Body

{
  "device": "marble",
  "region": "cn",
  "branch": "F"
}

Response

Same structure as GET response

Try It Out