CS QRCode
Samsung Warranty Check
This service is used to check the warranty, activation status, etc. of Samsung devices (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 sumsung
sn Yes IMEI/SN
Example of successful request return
{
    'code': 0,
    'data': {
        'imei': '351167441741511',
        'sn': 'R5CT10FQAYE',
        'model': 'SM-F7110',   //network access mdel
        'color': '月光香槟',
        'storage': '8GB+256GB',
        'name': 'Galaxy Z Flip3 5G',   //promotion model
        'description': 'SM-F7110ZEWCHC',
        'fullDescription': 'Galaxy Z Flip3 5G 月光香槟 8GB+256GB',
        'replaced': false,   //Is the official refurbished machine
        'type': 'normal',   //device type
        'covered': '过保',   //warranty status
        'coverage': '2023-01-26',   //warranty end date
        'daysleft': 0,   //remaining warranty days
        'carrier': 'China (Open China)',   //country version, in English
        'carrierName': '国行公开版本',   //country version, in Chinese
        'production': {
            'date': '2022-01-07',
            'country': 'China (Open China)',   //country version, in English
            'countryName': '国行',   //country version, in Chinese
            'kongji': false,
        },
        'activationDate': '2022-01-26 16:25:13',
        'activated': true,   //activated status
    }
}
Request failed return code, please refer to Develop Documents