CS QRCode
Apple Purchase Country Check
Checks the Model Description, Purchase Country (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 country
sn Yes IMEI/SN
Example of successful request return
{
    'code': 0,
    'data': {
        'img': '   //tangdaoya.phpdream.net/tdyapp/AppleColor/iphone-16-pro-blacktitanium-select.png',   //product image
        'model': 'iPhone 16 Pro',
        'description': 'IPHONE 16 PRO BLACK 512GB-CHN',
        'sn': 'HF3VVPF232',
        'purchase': {
            'country': 'China',   //country version, in English
            'countryName': '国行'   //country version, in Chinese
        },
        'type': {
            'name': '零售机',   //device type, in Chinese
            'value': 'normal'   //device type, in English
        }
    }
}
Request failed return code, please refer to Develop Documents