客服二维码
苹果激活锁查询
该服务用于查询苹果设备的激活锁/ID锁状态(支持IMEI/SN查询)
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或序列号
Example of successful request return
{
    'code': 0,
    'data': {
        'sn': '353569642745142',   //IMEI/序列号
        'model': 'iPhone 16 Pro Max (A3297)',   //设备型号+入网型号(仅IMEI查询时提供)
        'locked': false,   //是否开启激活锁/ID锁
        'time': '2024-09-28 14:44:57'   //查询时间
    }
}
Request failed return code, please refer to Develop Documents