苹果序列号查询官网号

苹果序列号查询__API服务_API服务_API Store
苹果序列号查询
苹果序列号查询
购买API套餐
所属分类:
生活常用、应用开发、工具类、服务类API、全网数据
更新时间:
质量问题技术支持
冻结担保特色功能
API调试工具 :
接口地址 :
/3023/apple/apple
请求方法 :
请求参数(header) :
您自己的apikey
请求参数(urlParam) :
苹果产品序列号(11位或12位数字字母组合)
C39PPPT5G5QY
请求示例 :
python示例
ObjectC示例
--get --include
'/3023/apple/apple?sn=C39PPPT5G5QY'
-H 'apikey:您自己的apikey'
$ch = curl_init();
$url = '/3023/apple/apple?sn=C39PPPT5G5QY';
$header = array(
'apikey: 您自己的apikey',
// 添加apikey到header
curl_setopt($ch, CURLOPT_HTTPHEADER
, $header);
curl_setopt($ch, CURLOPT_RETURNTRANSFER, 1);
// 执行HTTP请求
curl_setopt($ch , CURLOPT_URL , $url);
$res = curl_exec($ch);
var_dump(json_decode($res));
# -*- coding: utf-8 -*-
import sys, urllib, urllib2, json
url = '/3023/apple/apple?sn=C39PPPT5G5QY'
req = urllib2.Request(url)
req.add_header(&apikey&, &您自己的apikey&)
resp = urllib2.urlopen(req)
content = resp.read()
if(content):
print(content)
String httpUrl = &/3023/apple/apple&;
String httpArg = &sn=C39PPPT5G5QY&;
String jsonResult = request(httpUrl, httpArg);
System.out.println(jsonResult);
* @param urlAll
* @param httpArg
* @return 返回结果
public static String request(String httpUrl, String httpArg) {
BufferedReader reader =
String result =
StringBuffer sbf = new StringBuffer();
httpUrl = httpUrl + &?& + httpA
URL url = new URL(httpUrl);
HttpURLConnection connection = (HttpURLConnection) url
.openConnection();
connection.setRequestMethod(&GET&);
// 填入apikey到HTTP header
connection.setRequestProperty(&apikey&,
&您自己的apikey&);
connection.connect();
InputStream is = connection.getInputStream();
reader = new BufferedReader(new InputStreamReader(is, &UTF-8&));
String strRead =
while ((strRead = reader.readLine()) != null) {
sbf.append(strRead);
sbf.append(&\r\n&);
reader.close();
result = sbf.toString();
} catch (Exception e) {
e.printStackTrace();
string url = &/3023/apple/apple&;
string param = &sn=C39PPPT5G5QY&;
string result = request(url,param);
/// &summary&
/// 发送HTTP请求
/// &/summary&
/// &param name=&url&&请求的URL&/param&
/// &param name=&param&&请求的参数&/param&
/// &returns&请求结果&/returns&
public static string request(string url, string param)
string strURL = url + '?' +
System.Net.HttpWebR
request = (System.Net.HttpWebRequest)WebRequest.Create(strURL);
request.Method = &GET&;
// 添加header
request.Headers.Add(&apikey&, &您自己的apikey&);
System.Net.HttpWebR
response = (System.Net.HttpWebResponse)request.GetResponse();
System.IO.S
s = response.GetResponseStream();
string StrDate = &&;
string strValue = &&;
StreamReader Reader = new StreamReader(s, Encoding.UTF8);
while ((StrDate = Reader.ReadLine()) != null)
strValue += StrDate + &\r\n&;
return strV
NSString *httpUrl = @&/3023/apple/apple&;
NSString *httpArg = @&sn=C39PPPT5G5QY&;
[self request: httpUrl withHttpArg: httpArg];
-(void)request: (NSString*)httpUrl withHttpArg: (NSString*)HttpArg
NSString *urlStr = [[NSString alloc]initWithFormat: @&%@?%@&, httpUrl, HttpArg];
NSURL *url = [NSURL URLWithString: urlStr];
NSMutableURLRequest *request = [[NSMutableURLRequest alloc]initWithURL: url cachePolicy: NSURLRequestUseProtocolCachePolicy timeoutInterval: 10];
[request setHTTPMethod: @&GET&];
[request addValue: @&您自己的apikey& forHTTPHeaderField: @&apikey&];
[NSURLConnection sendAsynchronousRequest: request
queue: [NSOperationQueue mainQueue]
completionHandler: ^(NSURLResponse *response, NSData *data, NSError *error){
if (error) {
NSLog(@&Httperror: %@%ld&, error.localizedDescription, error.code);
NSInteger responseCode = [(NSHTTPURLResponse *)response statusCode];
NSString *responseString = [[NSString alloc] initWithData:data encoding:NSUTF8StringEncoding];
NSLog(@&HttpResponseCode:%ld&, responseCode);
NSLog(@&HttpResponseBody %@&,responseString);
var url = &/3023/apple/apple&
var httpArg = &sn=C39PPPT5G5QY&
request(url, httpArg: httpArg)
request(httpUrl: String, httpArg: String) {
var req = NSMutableURLRequest(URL: NSURL(string: httpUrl + &?& + httpArg)!)
req.timeoutInterval = 6
req.HTTPMethod = &GET&
req.addValue(&您自己的apikey&, forHTTPHeaderField: &apikey&)
NSURLConnection.sendAsynchronousRequest(req, queue: NSOperationQueue.mainQueue()) {
(response, data, error) -& Void in
let res = response as! NSHTTPURLResponse
println(res.statusCode)
if let e = error{
println(&请求失败&)
if let d = data {
var content = NSString(data: d, encoding: NSUTF8StringEncoding)
println(content)
JSON返回示例 :
&sn&: &C39PPPT5G5QY&,
&iPhone 6 Plus&,
//设备型号
&capacity&:
&identifier&:
&iPhone7,1&,
&MGCW2LL/A&,
&network&:
&GSM/CDMA/LTE&,
&activated&:
//激活状态,0 = 未激活,1 = 已激活
//激活时间
&中国(深圳)&,
//出厂日期,start ~ end
&product&:
//产品类型
&warranty&:
//硬件保修
&daysleft&:
//保修剩余(天)
//电话支持
&purchasing&:
//有效购买时间,0 = 不是,1 = 是
//规格参数
&iPhone 6 Plus (Global/Sprint/A1524)&,
//上市时间
//停产时间
&display&:
&5.5英寸 Color&,
&resolution&:
& (401 ppi)&,
&Apple A8&,
&processor&:
&1 (2 Cores)&,
//处理器核心
&1.4 GHz&,
//处理器频率
&storage&:
&16, 64, 128 GB&,
&dimension&:
&6.22 x 3.06 x 0.28&,
&6.07 oz. (172 g)&
&renovate&: {
//翻新机鉴定
&probability&:
//翻新机概率
&如果该设备为非官方渠道新购(30天内购买),那么该设备有 2.8% 的可能是翻新机&
//鉴定结果
//激活锁状态,0 = 关闭,1 = 锁定
&https://km..edgekey.net/kb/securedImage.jsp?configcode=G5QY&size=120x120&
//设备图片
配套服务:
苹果IMEI查询:/apiworks/servicedetail/2288.html
错误信息:
error:序列号错误
invalid:序列号无效
服务说明:
激活锁状态为参考值,查询最新激活锁状态:/activationlock/
苹果序列号查询的部分结果仅供参考,如有变动,以苹果官网为准
套餐权限套餐价格
限制类错误:
错误码返回
错误码返回说明
User's request is expired
用户请求过期
User call overrun per day
用户日调用量超限
Service call overrun per second
服务每秒调用量超限
Service call overrun per day
服务日调用量超限
调用方错误:
错误码返回
错误码返回说明
URL cannot be resolved
url无法解析
Missing apikey
请求缺少apikey,登录即可获取
Apikey or secretkey is NULL
服务没有取到apikey或secretkey
Apikey does not exist
apikey不存在
Api does not exist
Api out of service
api已关闭服务
Service overdue, please pay in time
余额不足,请充值
User not verified
未通过实名验证
Service provider response status error
服务商响应status非200
代理平台错误:
错误码返回
错误码返回说明
Internal error
Sorry,The system is busy. Please try again late
系统繁忙稍候再试
购买开发者
大家都在问
苹果序列号查询,iPhone、iPad、iPod、Mac、Apple Watch等全系列苹果产品序列号查询,覆盖率100%,包括设备型号、激活日期、产地、出厂日期、保修时间、规格参数、翻新机鉴定等数据。
苹果序列号查询,iPhone、iPad、iPod、Mac、Apple Watch等全系列苹果产品序列号查询,覆盖率100%,包括设备型号、激活日期、产地、出厂日期、保修时间、规格参数、翻新机鉴定等数据。
&&&&服务遇到质量问题享受退款保障
&&&&如果当前服务无法满足您的需求,可以联系我们。平台评估需求通过后,提供定制化解决方案 & & &
&&&&购买服务冻结担保30天,30天内遇到服务质量问题您有权申请退款已帮助...名用户查询!
如何查看序列号
设置-通用-关于本机,可以看到12位由大写英文字母和数字组成的字符串,点击复制即可。
周边产品推荐
参考价:¥979
参考价:¥228
参考价:¥149
参考价:¥299
苹果最新资讯当前位置 & &
& iPhone产地在哪?看一眼序列号就知道了
iPhone产地在哪?看一眼序列号就知道了
08:51:26&&出处:&&
编辑:随心 &&)
让小伙伴们也看看:
阅读更多:
好文共享:
文章观点支持
当前平均分:0(0 次打分)
[12-30][12-30][12-30][12-30][12-30][12-29][12-29][12-29][12-29][12-29]
登录驱动之家
没有帐号?
用合作网站帐户直接登录苹果序列号查询,果粉助手,苹果查询助手,果粉查询,苹果保修查询,一楼土木人
苹果产品信息查询
苹果序列号查询仅供大家查询参考,一切结果请务必以苹果官网数据为准,您只需要输入您的苹果产品序列号,即可查询到您产品型号、出厂日期、销售区域、运营商、保修期限、激活信息息、手机系统版本等信息,帮助您防欺诈、防翻新、防山寨!
怎样找到手机的序列号和imei号?
打开[设置]页面,选择[通用]选项,选择[关手本机]选项,把序列号或IMEI输入到查询框。}

我要回帖

更多关于 苹果序列号查询 的文章

更多推荐

版权声明:文章内容来源于网络,版权归原作者所有,如有侵权请点击这里与我们联系,我们将及时删除。

点击添加站长微信