CS QRCode
Apple MDM + FMI Check
This service is used to check the MDMLock Status and FMI Status of Apple devices (supporting IMEI/SN query)
Concurrent / Thread Count
For queries that take more than 1 second, the concurrent / thread count should be controlled within 10 or less.
Reason: Excessive concurrency can cause the system to directly return a failure.
Request Parameters
Parameter Required Value
key Yes key
type Yes apple_mdm_fmi
sn Yes IMEI/SN
Example of successful request return
{
    'code': 0,
    'data': {
        'imei': '355772768226966',   //IMEI
        'imei2': '355772768270626',   //IMEI2
        'sn': 'RW9RP09XTQ',   //Serial Number
        'modelDesc': 'IPHONE 14 PLUS PURPLE 256GB-ITS',   //Description
        'mdmlock': 'off',   //MDMLock Status
        'mpn': 'MQ3E3ZA/A',   //Part Number
        'estPurchaseDate': '2023-02-02',   //Estimate Purchase Date
        'appleCare': false,   //Have AppleCare Or Not
        'warrantyStatus': '已过保修期',   //Warranty Status
        'fmiOn': false,   //FMI Status
        'number': 'A2888',   //Model Number
        'model': 'iPhone 14 Plus 紫色 256GB',   //Full Model
        'resCountry': {
            'name': '中国香港 (非国行)',   //Country in Chinese
            'value': 'Hong Kong',   //Country in English
            'type': {
                'name': '零售机'   //Device Type
            }
        }
    }
}
Request failed return code, please refer to Develop Documents