CS QRCode
Apple Carrier Check
Checks the current SIM Lock status and lock by which Carrier 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 carrier
sn Yes IMEI/SN
Example of successful request return
{
    'code': 0,
    'data': {
        'imei': '359608206015486',
        'imei2': '359608209669545',
        'sn': 'HGXKGH1QJK',
        'model': 'IPHONE 14 RED 128GB-USA',
        'warrantyStatus': 'Out of Warranty',
        'policyID': 2387,
        'carrier': 'US Verizon Locked Policy',
        'simlock': true,
        'purchaseDate': '2023-07-10'
    }
}
Request failed return code, please refer to Develop Documents