CS QRCode
Apple Warranty Check Pro
This service is used to query warranty, activation status, etc. (with capacity/color, supporting IMEI 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 apple_warranty_pro
sn Yes IMEI/SN
Example of successful request return
{
    'code': 0,
    'data': {
        'serial': 'CJ2WHY2246',   //SN
        'model': 'iPhone 15',
        'thumbnail': 'https://cdsassets.apple.com/content/services/pub/image?productid=300991&size=240x240',   //Product image
        'replaced': false,   //Has the SN of the product been replaced
        'registered': true,   //Has the device been registered
        'activated': true,   //Has it been activated
        'loaner': false,   //Has the device been loaned
        'validPurchaseDate': true,   //Has the device been verified
        'warrantyDaysRemaining': 319,   //Remaining warranty days
        'acEligible': true,   //Eligibility to purchase AppleCare online
        'estPurchaseDate': '2024-08-14',   //Pre activation/activation/purchase date
        'warrantyStatus': '在保',   //Warranty Status
        'repairExpiry': '2025-08-13',   //Warranty expiration date
        'warrantyYear': 1,   //Warranty Years
        'appleCare': false,   //Have you purchased AppleCare
        'pre-activated': false,   //Is the device pre activated
        'sn': 'CJ2WHY2246',
        //Compared to the regular version, the following are the newly added information: colors, capacity, and network model
        'storage': '256GB',   //Memory capacity
        'color': '原色',
        'imei': '357439148973455',   //IMEI(Only by using IMEI query can it be obtained)
        'number': 'A3108'   //Network model
    }
}
Request failed return code, please refer to Develop Documents