联系客服: iP138.com客服 iP138客服 |

手机号码查询接口
  • API接口QQ交流群:177096428   iP138 api接口
  • 数据修正QQ处理群:94181690    iP138数据修正

手机号码查询接口支持HTTPS(赠送1000次)

简介:获取手机号码段的省市区以及运营商名称

已连接应用数:22386

国内:网宿cdn; 国际:亚洲中国香港、韩国首尔、日本东京、新加坡、欧洲德国法兰克福、北美洲美国硅谷节点

C#(.net)调用手机号码查询接口示例:

                                    using System;
                                    using System.Collections.Generic;
                                    using System.Web;
                                    using System.Net;

                                    public class IP138
                                    {
                                        public static string GetMobileData(string token, string mobile, string datatype = "txt")
                                        {
                                            string url = string.Format("https://api.ip138.com/mobile/?mobile={0}&datatype={1}&token={2}", mobile, datatype, token);
                                            using (WebClient client = new WebClient())
                                            {
                                                return client.DownloadString(url);
                                            }
                                        }
                                    }

                                    string data = IP138.GetMobileData("00d5cb1fac5dc5cbfe2ff218222a2dfd33", Request.UserHostAddress);
                                    Console.WriteLine(data);
                                    Response.Write(data);