客服二维码
Apple FMI On/Off Check
Checks if a device is currently iCloud Activation Locked. Mac also supported. (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 icloud
sn Yes IMEI/SN
Example of successful request return
{
    'code': 0,
    'data': {
        'sn': '353569642745142',   //IMEI/SN
        'model': 'iPhone 16 Pro Max (A3297)',   //Device model + network model (only provided for IMEI query)
        'locked': false,   //Has the activation lock/ID lock been activated
        'time': '2024-09-28 14:44:57'   //Query time
    }
}
Request failed return code, please refer to Develop Documents