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 ExampleAPI Endpoints
Get ROM Information
GET /rom-info
Parameters
device(required) - Device codename (e.g. "marble", "umi")region(optional, default: "cn") - Region code ("global", "eea", "ru", "id", "in", "tr", "kr", "tw")branch(optional, default: "F") - Branch type (typically "F" for Fastboot)
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