CS QRCode
Apple All-in-one
This service is used to check the activation warranty, purchase country, activation lock, and simlock of Apple devices, but does not include MDMLock status.
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 warrantyLock
sn Yes IMEI/SN
Example of successful request return
{
    'code': 0,
    'data': {
        'serial': 'H10J96RY7T',   //SN
        'imei': '356988310465329',   //IMEI1
        'imei2': '356988310270638',   //IMEI2
        'meid': null,
        'model': 'iPhone 15 Pro 白色钛金属 128GB',   //model/capacity/color
        'modelDesc': 'IPHONE 15 PRO WHITE 128GB-CHN',   //Part Description
        'number': 'A3104',   //network model
        'partNumber': 'MTQ53CH/A',   //Model number
        'sn': 'H10J96RY7T',
        'color': '白色',
        'storage': '128GB',
        'description': 'IPHONE 15 PRO WHITE 128GB-CHN',
        'country': {
            'name': '国行',   //in Chinese
            'value': 'China'   //in English
        },
        'type': '零售机',   //device type
        'estPurchaseDate': '2024-02-05',   //purchase date
        'source': 'normal',   //Determine whether the Apple warranty is maintained by enumerating values (normal or maintenance). When it is maintenance, the warranty field below does not return directly, only the purchase date above is returned
        'marketName': 'iPhone 15 Pro',   //Market model
        'warranty': {   //For the analysis of Apple warranty results, please refer to the return body analysis in the Apple activation warranty query. Please note that the warranty field will not be returned during Sunday maintenance
        },
        'fmiOn': false,   //Activation Lock
        'simlock': '无锁 (Unlocked)',   //network lock
        'countryName': '国行',   //country version
    }
}
Request failed return code, please refer to Develop Documents