苹果序列号/IMEI号查询--Api接口
DEMO:http://apis.juhe.cn/appleinfo/index?sn=C37JRDNTDTWD&key=您申请的APPKEY
JSON数据格式如下:
{
"resultcode":"200",
"reason":"Successed",
"result":{
"phone_model":"iPhone 5(GSM) 黑色 16GB", /*设备型号*/
"serial_number":"C37JRDNTDTWD", /*设备序列号*/
"imei_number":"", /*IMEI号*/
"active":"", /*激活状态*/
"warranty_status":"未过期", /*保修状态*/
"warranty":"2014-01-30", /*保修到期*/
"tele_support":"2013-05-01", /*电话支持到期*/
"tele_support_status":"未过期", /*电话支持状态*/
"made_area":"中国", /*生产工厂*/
"start_date":"2012-12-02", /*生产时间开始*/
"end_date":"2012-12-08", /*生产时间结束*/
"color":"黑色", /*颜色*/
"size":"16GB" /*规格*/
}
}
如有转载,请标明来自此出处http://blog.csdn.net/qxs965266509,必须注意!
XMl数据格式如下:
<root>
<resultcode>200</resultcode>
<reason>Successed</reason>
<result>
<phone_model>iPhone 5(GSM) 黑色 16GB</phone_model>
<serial_number>C37JRDNTDTWD</serial_number>
<imei_number/>
<active/>
<tele_support>2013-05-01</tele_support>
<tele_support_status>未过期</tele_support_status>
<warranty>2014-01-30</warranty>
<warranty_status>未过期</warranty_status>
<made_area>中国</made_area>
<start_date>2012-12-02</start_date>
<end_date>2012-12-08</end_date>
<color>黑色</color>
<size>16GB</size>
</result>
</root>