CS QRCode
Apple SIM-Lock Status Check
Checks the current SIM Lock status of an Apple device. All cellular models are supported. (supports 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 simlock
sn Yes IMEI/SN
Example of successful request return
{
    'code': 0,
    'data': {
        'imei': '356698886359539',   //IMEI1
        'imei2': '356698883923139',   //IMEI2
        'sn': 'HF3VVPF232',
        'number': 'A3294',   //network model
        'model': 'iPhone 15',   //Promotion model
        'simlock': false   //Is there a network lock
    }
}
Request failed return code, please refer to Develop Documents