- Notifications
You must be signed in to change notification settings - Fork126
Free IP information query APIs / 免费IP信息查询API接口,GET请求,可直接访问,无任何鉴权
License
ihmily/ip-info-api
Folders and files
| Name | Name | Last commit message | Last commit date | |
|---|---|---|---|---|
Repository files navigation
该存储库收集了各种免费的IP查询API,无需配置任何key直接可访问,使大家能够快速访问IP信息,如地理位置、ISP详细信息和网络类型。请根据自己的需求选择合适的API,持续更新中,欢迎star和pr
1.可查询本机IP和通过IP查询信息
https://webapi-pc.meitu.com/common/ip_location(已失效)
https://www.ip.cn/api/index?ip=&type=0(已失效)
https://whois.pconline.com.cn/ipJson.jsp?ip=&json=true
https://api.vore.top/api/IPdata?ip=
http://demo.ip-api.com/json/?lang=zh-CN
https://api.qjqq.cn/api/Local(已失效)
http://ip-api.com/json/?lang=zh-CN
https://searchplugin.csdn.net/api/v1/ip/get(已失效)
https://api.db-ip.com/v2/free/self
https://freeipapi.com/api/json
https://ipwhois.app/json/?format=json
2.只可查询本机(访客)IP信息
https://ip.useragentinfo.com/json(已失效)
https://cdid.c-ctrip.com/model-poc2/h
https://vv.video.qq.com/checktime?otype=ojson
https://api.uomg.com/api/visitor.info?skey=1
https://test.ipw.cn/api/ip/myip?json
https://ipv4.my.ipinfo.app/api/ipDetails.php
https://g3.letv.com/r?format=1
https://qifu-api.baidubce.com/ip/local/geo/v1/district
https://r.inews.qq.com/api/ip2city
https://geolocation-db.com/json
https://api.ipbase.com/v1/json
https://api.ipquery.io/?format=json
https://check.torproject.org/api/ip
https://api.live.bilibili.com/xlive/web-room/v1/index/getIpInfo
https://i.news.qq.com/api/ip2city
https://ipv4.gdt.qq.com/get_client_ip
3.只可通过IP查询信息
http://opendata.baidu.com/api.php?co=&resource_id=6006&oe=utf8&query=
https://get.geojs.io/v1/ip/geo/121.8.215.106.json
https://ipinfo.io/widget/demo/121.8.215.106
https://ipapi.com/ip_api.php?ip=121.8.215.106(已失效)
https://db-ip.com/demo/home.php?s=121.8.215.106
https://mesh.if.iqiyi.com/aid/ip/info?version=1.1.1&ip=121.8.215.106(已失效)
5.只需要获取IP
地址①:https://webapi-pc.meitu.com/common/ip_location?ip=(已失效)
请求类型:GET
请求参数:ip(可选)
CORS跨域支持:否
请求示例:
# 查询本机iphttps://webapi-pc.meitu.com/common/ip_location# 通过ip查询信息https://webapi-pc.meitu.com/common/ip_location?ip=121.8.215.106示例结果:
{ "reqid": "40b7cf49-ad3f-4184-acd3-9f5a574dc7c4", "code": 0, "data": { "121.8.215.106": { "area_code": "86", "city": "广州市", "city_id": 160063402, "continent": "亚洲", "continent_code": "AP", "country_id": 100000, "isp": "电信", "latitude": 23.3283, "longitude": 113.75837, "nation": "中国", "nation_code": "CN", "province": "广东", "province_id": 440000, "subdivision_1_iso_code": "*", "subdivision_1_name": "广东", "subdivision_2_iso_code": "*", "subdivision_2_name": "广州市", "time_zone": "UTC+8" } }}
地址②:https://www.ip.cn/api/index?ip=&type=0(已失效)
请求类型:GET
请求参数:ip(可选)、type
CORS跨域支持:否
请求示例:
# 查询本机ip(type=0)https://www.ip.cn/api/index?ip=&type=0# 通过ip查询信息(type=1)https://www.ip.cn/api/index?ip=121.8.215.106&type=1对于国外ip的位置信息不太准确
示例结果:
{ "rs": 1, "code": 0, "address": "中国 广东省 广州市 电信", "ip": "121.8.215.106", "isDomain": 0}
地址③:https://whois.pconline.com.cn/ipJson.jsp?ip=&json=true
请求类型:GET
请求参数(可选):ip、json
CORS跨域支持:否
请求示例:
# 查询本机iphttps://whois.pconline.com.cn/ipJson.jsp?ip=&json=true# 通过ip查询信息https://whois.pconline.com.cn/ipJson.jsp?ip=121.8.215.106&json=true对于国外ip的位置信息不太准确
示例结果:
{ "ip": "121.8.215.106", "pro": "广东省", "proCode": "440000", "city": "广州市", "cityCode": "440100", "region": "", "regionCode": "0", "addr": "广东省广州市 电信", "regionNames": "", "err": ""}
地址④:https://api.vore.top/api/IPdata?ip=
请求类型:GET
请求参数(可选):ip
CORS跨域支持:是
请求示例:
# 查询本机iphttps://api.vore.top/api/IPdata?ip=# 通过ip查询信息https://api.vore.top/api/IPdata?ip=121.8.215.106示例结果:
{ "code": 200, "msg": "SUCCESS", "ipinfo": { "type": "ipv4", "text": "121.8.215.106", "cnip": true }, "ipdata": { "info1": "广东省", "info2": "广州市", "info3": "增城", "isp": "电信" }, "adcode": { "o": "广东省广州市增城 - 电信", "p": "广东", "c": "广州", "n": "广东-广州", "r": "广东-广州", "a": "440100", "i": true }, "tips": "接口由VORE-API(https:\/\/api.vore.top\/)免费提供", "time": 1708576755}
请求类型:GET
请求参数(可选):路径参数(ip)
CORS跨域支持:是
请求示例:
# 查询本机iphttps://api.ip.sb/geoip/# 通过ip查询信息https://api.ip.sb/geoip/121.8.215.106示例结果:
{ "organization": "China Telecom", "longitude": 113.2539, "city": "Guangzhou", "timezone": "Asia/Shanghai", "isp": "China Telecom", "offset": 28800, "region": "Guangdong", "asn": 4134, "asn_organization": "Chinanet", "country": "China", "ip": "121.8.215.106", "latitude": 23.1181, "continent_code": "AS", "country_code": "CN", "region_code": "GD"}
地址⑥:https://api.ip2location.io/
请求类型:GET
请求参数(可选):路径参数(ip)
CORS跨域支持:否
请求示例:
# 查询本机iphttps://api.ip2location.io/# 通过ip查询信息https://api.ip2location.io/?ip=121.8.215.106示例结果:
{ "ip": "121.8.215.106", "country_code": "CN", "country_name": "China", "region_name": "Guangdong", "city_name": "Guangzhou", "latitude": 23.127361, "longitude": 113.26457, "zip_code": "510140", "time_zone": "+08:00", "asn": "4134", "as": "Asia Pacific Network Information Centre", "is_proxy": true, "message": "Limit to 500 queries per day. Sign up for a Free plan at https://www.ip2location.io to get 30K queries per month."}
请求类型:GET
请求参数(可选):ip
CORS跨域支持:否
请求示例:
# 查询本机ipcurl realip.cchttps://realip.cc/https://realip.cc/simple # 只返回ip# 通过ip查询信息https://realip.cc/?ip=121.8.215.106示例结果:
{ "ip": "103.143.161.60", "city": "Hong Kong", "province": null, "country": "Hong Kong", "continent": "Asia", "isp": "TWOWIN CO., LIMITED", "time_zone": "Asia/Hong_Kong", "latitude": 22.2842, "longitude": 114.1759, "postal_code": null, "iso_code": "HK", "network": "103.143.160.0/23", "notice": "api文档在/docs路径下,调用并发数是有限制的 ©2021-09-27->now", "provider": "Powered by Bboysoul", "blog": "https://www.bboy.app", "tg_group": "https://t.me/bboyapp", "data_updatetime": 202403010, "count": 10345364}
地址⑧:http://demo.ip-api.com/json/?fields=66842623&lang=zh-CN
请求类型:GET
请求参数(可选):路径参数(ip)、lang ...
CORS跨域支持:否
请求示例:
# lang optional valueen:English (default) 英语(默认)zh-CN:中国 (Chinese)de:Deutsch (German) Deutsch (德语)es:Español (Spanish) Español (西班牙语)fr:Français (French) Français (法语)ja:日本語 (Japanese) 日本语( Japanese)ru:Русский (Russian) Русский (俄语)# 注意是http !!!# 查询本机iphttp://demo.ip-api.com/json/?fields=66842623&lang=zh-CN# 通过ip查询信息http://demo.ip-api.com/json/121.8.215.106?fields=66842623&lang=zh-CNAPI docs:https://ip-api.com/docs/api:json示例结果:
{ "status": "success", "continent": "亚洲", "continentCode": "AS", "country": "中国", "countryCode": "CN", "region": "GD", "regionName": "广东", "city": "广州市", "district": "", "zip": "", "lat": 23.1181, "lon": 113.2539, "timezone": "Asia/Shanghai", "offset": 28800, "currency": "CNY", "isp": "Chinanet", "org": "Chinanet GD", "as": "AS4134 CHINANET-BACKBONE", "asname": "CHINANET-BACKBONE", "mobile": false, "proxy": true, "hosting": false, "query": "121.8.215.106"}
请求类型:GET
请求参数(可选):ip
CORS跨域支持:是
请求示例:
# 查询本机iphttps://ip-api.io/json# 通过ip查询信息https://ip-api.io/json?ip=121.8.215.106示例结果:
{ "callingCode": "86", "city": "Guangzhou", "countryCapital": "Beijing", "country_code": "CN", "country_name": "China", "currency": "CNY", "currencySymbol": "¥", "emojiFlag": "🇨🇳", "flagUrl": "https://ip-api.io/images/flags/cn.svg", "ip": "121.8.215.106", "is_in_european_union": false, "latitude": 23.1181, "longitude": 113.2539, "metro_code": 0, "organisation": "Chinanet", "region_code": "GD", "region_name": "Guangdong", "suspiciousFactors": { "isProxy": false, "isSpam": false, "isSuspicious": false, "isTorNode": false }, "time_zone": "Asia/Shanghai", "zip_code": ""}
请求类型:GET
请求参数(可选):路径参数(ip)
CORS跨域支持:是
请求示例:
# 查询本机iphttps://ipapi.co/json/# 通过ip查询信息https://ipapi.co/121.8.215.106/json/示例结果:
{ "ip": "121.8.215.106", "network": "121.8.128.0/17", "version": "IPv4", "city": "Guangzhou", "region": "Guangdong", "region_code": "GD", "country": "CN", "country_name": "China", "country_code": "CN", "country_code_iso3": "CHN", "country_capital": "Beijing", "country_tld": ".cn", "continent_code": "AS", "in_eu": false, "postal": null, "latitude": 23.1181, "longitude": 113.2539, "timezone": "Asia/Shanghai", "utc_offset": "+0800", "country_calling_code": "+86", "currency": "CNY", "currency_name": "Yuan Renminbi", "languages": "zh-CN,yue,wuu,dta,ug,za", "country_area": 9596960, "country_population": 1411778724, "asn": "AS4134", "org": "Chinanet"}
请求类型:GET
请求参数(可选):ip
CORS跨域支持:是
请求示例:
# 查询本机iphttps://api.ipapi.is# 通过ip查询信息https://api.ipapi.is/?ip=121.8.215.106示例结果:
{ "ip": "121.8.215.106", "rir": "APNIC", "is_bogon": false, "is_mobile": false, "is_crawler": false, "is_datacenter": false, "is_tor": false, "is_proxy": true, "is_vpn": false, "is_abuser": true, "company": { "name": "CHINANET Guangdong province network", "abuser_score": "0.0003 (Very Low)", "domain": "chinatelecom.cn", "type": "isp", "network": "121.8.0.0 - 121.15.255.255", "whois": "https://api.ipapi.is/?whois=121.8.0.0" }, "asn": { "asn": 4134, "abuser_score": "0.0013 (Low)", "route": "121.8.0.0/13", "descr": "CHINANET-BACKBONE No.31,Jin-rong Street, CN", "country": "cn", "active": true, "org": "No.31,Jin-rong Street", "domain": "chinatelecom.cn", "abuse": "anti-spam@chinatelecom.cn", "type": "business", "updated": "2021-06-15", "rir": "APNIC", "whois": "https://api.ipapi.is/?whois=AS4134" }, "location": { "continent": "AS", "country": "China", "country_code": "CN", "state": "Guangdong", "city": "Guangzhou", "latitude": 23.117, "longitude": 113.25, "zip": "510800", "timezone": "Asia/Shanghai", "local_time": "2024-03-16T13:50:41+08:00", "local_time_unix": 1710568241, "is_dst": false }, "elapsed_ms": 0.81}
请求类型:GET
请求参数(可选):路径参数(ip)
CORS跨域支持:是
请求示例:
# 查询本机iphttps://api.ip.sb/geoip# 通过ip查询信息https://api.ip.sb/geoip/121.8.215.106示例结果:
{ "organization": "China Telecom", "longitude": 113.2539, "city": "Guangzhou", "timezone": "Asia/Shanghai", "isp": "China Telecom", "offset": 28800, "region": "Guangdong", "asn": 4134, "asn_organization": "Chinanet", "country": "China", "ip": "121.8.215.106", "latitude": 23.1181, "continent_code": "AS", "country_code": "CN", "region_code": "GD"}
地址13:https://api.qjqq.cn/api/Local(已失效)
请求类型:GET
请求参数(可选):ip
CORS跨域支持:是
请求示例:
# 查询本机iphttps://api.qjqq.cn/api/Local# 通过ip查询信息https://api.qjqq.cn/api/district?ip=121.8.215.106示例结果:
{ "code": 200, "data": { "ip": "222.79.44.74", "continent": "亚洲", "country_english": "", "country": "中国", "prov": "福建", "city": "福州", "district": "", "isp": "电信", "lat": "26.075302", "lng": "119.306239", "area_code": "350100", "city_code": "0591", "elevation": "29", "time_zone": "Asia/Shanghai", "weather_station": "CHXX0031", "zip_code": "350000" }, "msg": "success", "ip": "222.79.44.74", "time": "2024-04-07 18:38:08", "source": "青桔API:api.qjqq.cn"}
地址14:http://ip-api.com/json/?lang=zh-CN
请求类型:GET
请求参数(可选):路径参数(ip)
CORS跨域支持:否
请求示例:
# 查询本机iphttp://ip-api.com/json/?lang=zh-CN# 通过ip查询信息http://ip-api.com/json/121.8.215.106?lang=zh-CN示例结果:
{ "status": "success", "country": "中国", "countryCode": "CN", "region": "GD", "regionName": "广东", "city": "广州市", "zip": "", "lat": 23.1181, "lon": 113.2539, "timezone": "Asia/Shanghai", "isp": "Chinanet", "org": "Chinanet GD", "as": "AS4134 CHINANET-BACKBONE", "query": "121.8.215.106"}
地址15:https://searchplugin.csdn.net/api/v1/ip/get(已失效)
请求类型:GET
请求参数(可选):ip
CORS跨域支持:否
请求示例:
# 查询本机iphttps://searchplugin.csdn.net/api/v1/ip/get?ip=# 通过ip查询信息https://searchplugin.csdn.net/api/v1/ip/get?ip=121.8.215.106示例结果:
{ "code": 200, "msg": "success", "data": { "address": "中国 福建 福州 电信", "ip": "222.79.44.201" }}
地址16:https://api.db-ip.com/v2/free/self
请求类型:GET
请求参数(可选):ip
CORS跨域支持:否
请求示例:
# 查询本机iphttps://api.db-ip.com/v2/free/self# 通过ip查询信息https://api.db-ip.com/v2/free/121.8.215.106示例结果:
{ "ipAddress": "121.8.215.106", "continentCode": "AS", "continentName": "Asia", "countryCode": "CN", "countryName": "China", "stateProv": "Guangdong", "city": "Guangzhou"}
地址17:https://freeipapi.com/api/json
请求类型:GET
请求参数(可选):ip
CORS跨域支持:是
请求示例:
# 查询本机iphttps://freeipapi.com/api/json# 通过ip查询信息https://freeipapi.com/api/json/121.8.215.106示例结果:
{ "ipVersion": 4, "ipAddress": "121.8.215.106", "latitude": 23.127361, "longitude": 113.264572, "countryName": "China", "countryCode": "CN", "timeZone": "+08:00", "zipCode": "510140", "cityName": "Guangzhou", "regionName": "Guangdong", "isProxy": true, "continent": "Asia", "continentCode": "AS", "currency": { "code": "CNY", "name": "Yuan Renminbi" }, "language": "Mandarin", "timeZones": [ "Asia/Shanghai", "Asia/Urumqi" ], "tlds": [ ".cn", ".公司", ".网络" ]}
地址18:https://ipwhois.app/json/?format=json
请求类型:GET
请求参数(可选):ip
CORS跨域支持:是
请求示例:
# 查询本机iphttps://ipwhois.app/json/?format=json# 通过ip查询信息https://ipwhois.app/json/121.8.215.106?format=json示例结果:
{ "ip": "121.8.215.106", "success": true, "type": "IPv4", "continent": "Asia", "continent_code": "AS", "country": "China", "country_code": "CN", "country_flag": "https://cdn.ipwhois.io/flags/cn.svg", "country_capital": "Beijing", "country_phone": "+86", "country_neighbours": "AF,BT,HK,IN,KG,KP,KZ,LA,MM,MN,MO,NP,PK,RU,TJ,VN", "region": "Guangdong Province", "city": "Guangzhou", "latitude": 23.12911, "longitude": 113.264385, "asn": "AS4134", "org": "Chinanet Guangdong Province Network", "isp": "No. 1,jin rong Street", "timezone": "Asia/Shanghai", "timezone_name": "CST", "timezone_dstOffset": 0, "timezone_gmtOffset": 28800, "timezone_gmt": "+08:00", "currency": "Chinese Yuan", "currency_code": "CNY", "currency_symbol": "¥", "currency_rates": 7.234, "currency_plural": "Chinese yuan"}
地址①:https://ip.useragentinfo.com/json(已失效)
请求类型:GET
请求参数:无
CORS跨域支持:是
请求示例:
https://ip.useragentinfo.com/json示例结果:
{ "country": "韩国", "short_name": "KR", "province": "首尔", "city": "", "area": "", "isp": "微软云", "net": "数据中心", "ip": "20.249.16.173", "code": 200, "desc": "success"}
请求类型:GET
请求参数:无
CORS跨域支持:否
请求示例:
http://httpbin.org/ip示例结果:
{ "origin": "20.249.16.173"}
地址③:https://cdid.c-ctrip.com/model-poc2/h
请求类型:GET
请求参数:无
CORS跨域支持:否
请求示例:
https://cdid.c-ctrip.com/model-poc2/h示例结果:
20.249.16.173
地址④:https://vv.video.qq.com/checktime?otype=ojson
请求类型:GET
请求参数:otype
CORS跨域支持:否
请求示例:
https://vv.video.qq.com/checktime?otype=ojsonotype=json时返回类型为jsonp
示例结果:
{ "s": "o", "t": 1708586979, "ip": "222.79.47.146", "pos": "---", "rand": "FRM_cmo206yshBHl5h4_9A=="}
地址⑤:https://api.uomg.com/api/visitor.info?skey=1
请求类型:GET
请求参数:无
CORS跨域支持:是
请求示例:
https://api.uomg.com/api/visitor.info?skey=1示例结果:
{ "code": 1, "ip": "20.249.16.173", "system": "Windows 10 x64 Edition", "browser": "Chrome 114.0.0.0", "time": "2024-02-22 15:37:33"}
地址⑥:https://test.ipw.cn/api/ip/myip?json
请求类型:GET
请求参数:无
CORS跨域支持:否
请求示例:
https://test.ipw.cn/api/ip/myip?json示例结果:
{ "code": 1, "ip": "20.249.16.173", "system": "Windows 10 x64 Edition", "browser": "Chrome 114.0.0.0", "time": "2024-02-22 15:37:33"}
请求类型:GET
请求参数(可选):format
CORS跨域支持:否
请求示例:
format:text, json, jsonp# IPv4https://api.ipify.org?format=json# IPv6https://api64.ipify.org/?format=json示例结果:
{ "ip": "185.151.146.112"}
地址⑧:https://ipv4.my.ipinfo.app/api/ipDetails.php
请求类型:GET
请求参数:无
CORS跨域支持:是
请求示例:
https://ipv4.my.ipinfo.app/api/ipDetails.php示例结果:
{ "ip": "8.210.218.24", "asn": "AS45102 ALIBABA-CN-NET Alibaba US Technology Co., Ltd., CN", "continent": "AS", "continentLong": "Asia", "flag": "https://my.ipinfo.app/imgs/flags/4x3/sg.svg", "country": "Singapore"}
地址⑨:https://g3.letv.com/r?format=1
请求类型:GET
请求参数:format
CORS跨域支持:否
请求示例:
# format=1 返回jsonhttps://g3.letv.com/r?format=1# format=2 返回XMLhttps://g3.letv.com/r?format=2示例结果:
{ "ipint": "1957453184", "host": "116.172.93.128", "remote": "116.172.93.128", "ipstart": "1957445632", "ipend": "1957455871", "geo": "CN.30.722.2", "desc": "中国-宁夏-中卫市-联通", "buss": "bussid=6,alv=80,orgqos=5,host=2,port=80", "curtime": 1722063761, "identify": "1731505687:8140", "fixlist": "", "qosfix": "", "prior": "", "manual": "", "perfect": "0", "recommend": "3345,50041,50042,50057,50058,50072,50073,50074,50075,50076", "nodelist": [ { "gone": 50041, "name": "中国-北京市-第三方保留ISP-1", "pid": 1, "aid": 5, "isp": 888, "detail": "", "location": "http://play4.cp21.ott.cibntv.net/letvabcdeasktf512K" } ]}
地址⑩:https://iplark.com/ipstack
请求类型:GET
请求参数:无
CORS跨域支持:否
请求示例:
https://iplark.com/ipstack示例结果:
{ "ip": "38.207.137.254", "type": "ipv4", "continent_code": "NA", "continent_name": "北美", "country_code": "US", "country_name": "美国", "region_code": "NY", "region_name": "纽约州", "city": "Manhattan", "zip": "10020", "latitude": 40.7589111328125, "longitude": -73.97901916503906, "msa": "35620", "dma": "501", "radius": null, "ip_routing_type": "fixed", "connection_type": "tx", "location": { "geoname_id": 5125771, "capital": "Washington D.C.", "languages": [ { "code": "en", "name": "English", "native": "English" } ], "country_flag": "https://assets.ipstack.com/flags/us.svg", "country_flag_emoji": "🇺🇸", "country_flag_emoji_unicode": "U+1F1FA U+1F1F8", "calling_code": "1", "is_eu": false }, "time_zone": { "id": "America/New_York", "current_time": "2024-11-04T22:52:33-05:00", "gmt_offset": -18000, "code": "EST", "is_daylight_saving": false }}
地址11:https://qifu-api.baidubce.com/ip/local/geo/v1/district
请求类型:GET
请求参数:无
CORS跨域支持:是
请求示例:
https://qifu-api.baidubce.com/ip/local/geo/v1/district示例结果:
{ "code": "Success", "data": { "continent": "亚洲", "country": "中国", "zipcode": "350007", "timezone": "UTC+8", "accuracy": "区县", "owner": "中国电信", "isp": "中国电信", "source": "数据挖掘", "areacode": "CN", "adcode": "350104", "asnumber": "4134", "lat": "26.016978", "lng": "119.323547", "radius": "13.7621", "prov": "福建省", "city": "福州市", "district": "仓山区" }, "charge": true, "msg": "查询成功", "ip": "222.79.47.251", "coordsys": "WGS84"}
地址12:https://r.inews.qq.com/api/ip2city
请求类型:GET
请求参数:无
CORS跨域支持:否
请求示例:
https://r.inews.qq.com/api/ip2city示例结果:
{ "ret": 0, "errMsg": "", "ip": "38.207.136.53", "provcode": "0", "citycode": "0", "country": "美国", "province": "Texas", "city": "", "district": "", "isp": "", "districtCode": "", "callback": ""}
地址13:https://myip.ipip.net/json
请求类型:GET
请求参数:无
CORS跨域支持:是
请求示例:
https://myip.ipip.net/json示例结果:
{ "ret": "ok", "data": { "ip": "121.8.215.106", "location": [ "中国", "广东省", "广州市", "", "电信" ] }}
地址14:https://ifconfig.me/all.json
请求类型:GET
请求参数:无
CORS跨域支持:是
请求示例:
https://ifconfig.me/all.json示例结果:
{ "ip_addr": "121.8.215.106", "remote_host": "unavailable", "user_agent": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/121.0.0.0 Safari/537.36 Edg/121.0.0.0", "port": "59532", "language": "zh-CN,zh;q=0.9,en;q=0.8,en-GB;q=0.7,en-US;q=0.6", "method": "GET", "encoding": "gzip, deflate, br", "mime": "text/html,application/xhtml+xml,application/xml;q=0.9,image/avif,image/webp,image/apng,*/*;q=0.8,application/signed-exchange;v=b3;q=0.7", "via": "1.1 google", "forwarded": "121.8.215.106,34.160.111.145"}
地址15:https://geolocation-db.com/json
请求类型:GET
请求参数:无
CORS跨域支持:是
请求示例:
https://geolocation-db.com/json示例结果:
{ "country_code": "SG", "country_name": "Singapore", "city": "Singapore", "postal": null, "latitude": 1.2931, "longitude": 103.8558, "IPv4": "121.8.215.106", "state": "Central Singapore Community Development Council"}
地址16:https://api.myip.com
请求类型:GET
请求参数:无
CORS跨域支持:否
请求示例:
https://api.myip.com示例结果:
{ "ip": "8.210.158.178", "country": "Hong Kong", "cc": "HK"}
请求类型:GET
请求参数:无
CORS跨域支持:是
请求示例:
https://ipapi.co/json示例结果:
{ "ip": "8.210.158.178", "network": "8.210.156.0/22", "version": "IPv4", "city": "Hong Kong", "region": null, "region_code": null, "country": "HK", "country_name": "Hong Kong", "country_code": "HK", "country_code_iso3": "HKG", "country_capital": "Hong Kong", "country_tld": ".hk", "continent_code": "AS", "in_eu": false, "postal": null, "latitude": 22.2842, "longitude": 114.1759, "timezone": "Asia/Hong_Kong", "utc_offset": "+0800", "country_calling_code": "+852", "currency": "HKD", "currency_name": "Dollar", "languages": "zh-HK,yue,zh,en", "country_area": 1092, "country_population": 7451000, "asn": "AS45102", "org": "Alibaba US Technology Co., Ltd."}
地址18:https://wtfismyip.com/json
请求类型:GET
请求参数:无
CORS跨域支持:是
请求示例:
https://wtfismyip.com/json示例结果:
{ "YourFuckingIPAddress": "8.210.158.178", "YourFuckingLocation": "Hong Kong, Hong Kong", "YourFuckingHostname": "8.210.158.178", "YourFuckingISP": "Alibaba (US) Technology Co., Ltd.", "YourFuckingTorExit": false, "YourFuckingCity": "Hong Kong", "YourFuckingCountry": "Hong Kong", "YourFuckingCountryCode": "HK"}
地址19:https://api.ipbase.com/v1/json
请求类型:GET
请求参数:无
CORS跨域支持:是
请求示例:
https://api.ipbase.com/v1/json示例结果:
{ "ip": "8.210.158.178", "country_code": "HK", "country_name": "Hong Kong S.A.R.", "region_code": null, "region_name": "Central and Western", "city": "Hong Kong", "zip_code": "-", "time_zone": "Asia/Hong_Kong", "latitude": 22.285520553588867, "longitude": 114.1576919555664, "metro_code": 0}
地址20:https://api.ipquery.io/?format=json
请求类型:GET
请求参数:无
CORS跨域支持:是
请求示例:
https://api.ipquery.io/?format=json示例结果:
{ "ip": "8.210.158.178", "isp": { "asn": "AS45102", "org": "Alibaba (US) Technology Co., Ltd.", "isp": "Alibaba (US) Technology Co., Ltd." }, "location": { "country": "Hong Kong", "country_code": "HK", "city": "Hong Kong", "state": "Kowloon", "zipcode": "999077", "latitude": 22.333551599813337, "longitude": 114.16016200912814, "timezone": "Asia/Hong_Kong", "localtime": "2025-02-07T03:42:03" }, "risk": { "is_mobile": false, "is_vpn": false, "is_tor": false, "is_proxy": false, "is_datacenter": true, "risk_score": 0 }}
地址21:https://1.1.1.1/cdn-cgi/trace
请求类型:GET
请求参数:无
CORS跨域支持:否
请求示例:
https://1.1.1.1/cdn-cgi/trace示例结果:
fl=382f226h=1.1.1.1ip=121.8.215.106ts=1741448917.615visit_scheme=httpsuag=Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/133.0.0.0 Safari/537.36 Edg/133.0.0.0colo=NRTsliver=nonehttp=http/2loc=JPtls=TLSv1.3sni=offwarp=offgateway=offrbi=offkex=X25519MLKEM768
地址22:https://check.torproject.org/api/ip
请求类型:GET
请求参数:无
CORS跨域支持:否
请求示例:
https://check.torproject.org/api/ip示例结果:
{ "IsTor": false, "IP": "121.8.215.106"}
地址23:https://api.live.bilibili.com/xlive/web-room/v1/index/getIpInfo
请求类型:GET
请求参数:无
CORS跨域支持:否
请求示例:
https://api.live.bilibili.com/xlive/web-room/v1/index/getIpInfo示例结果:
{ "code":0, "message":"0", "ttl":1, "data":{ "addr":"220.1.1.1", "country":"中国", "province":"北京", "city":"北京", "isp":"电信", "latitude":"39.938884", "longitude":"116.397459" // 精确到同城 }}
地址24:https://i.news.qq.com/api/ip2city
请求类型:GET
请求参数:无
CORS跨域支持:否
请求示例:
https://i.news.qq.com/api/ip2city示例结果:
{ "ret": 0, "errMsg": "", "ip": "223.199.183.154", "provcode": "21", "citycode": "233", "country": "中国", "province": "海南省", "city": "海口市", "district": "", "isp": "", "districtCode": "460100", "callback": ""}
地址25:https://ipv4.gdt.qq.com/get_client_ip
请求类型:GET
请求参数:无
CORS跨域支持:否
返回类型:text/plain
请求示例:
https://ipv4.gdt.qq.com/get_client_ip示例结果:
223.199.183.154
地址①:http://opendata.baidu.com/api.php?co=&resource_id=6006&oe=utf8&query=
请求类型:GET
请求参数:query
CORS跨域支持:否
请求示例:
https://opendata.baidu.com/api.php?co=&resource_id=6006&oe=utf8&query=121.8.215.106示例结果:
{ "status": "0", "t": "", "set_cache_time": "", "data": [ { "ExtendedLocation": "", "OriginQuery": "121.8.215.106", "appinfo": "", "disp_type": 0, "fetchkey": "121.8.215.106", "location": "广东省广州市 电信", "origip": "121.8.215.106", "origipquery": "121.8.215.106", "resourceid": "6006", "role_id": 0, "shareImage": 1, "showLikeShare": 1, "showlamp": "1", "titlecont": "IP地址查询", "tplt": "ip" } ]}
地址②:https://get.geojs.io/v1/ip/geo/121.8.215.106.json
请求类型:GET
请求参数:你的ip
CORS跨域支持:是
请求示例:
https://get.geojs.io/v1/ip/geo/121.8.215.106.json示例结果:
{ "country": "China", "timezone": "Asia/Shanghai", "ip": "121.8.215.106", "organization": "AS4134 Chinanet", "asn": 4134, "area_code": "0", "organization_name": "Chinanet", "country_code": "CN", "country_code3": "CHN", "continent_code": "AS", "latitude": "23.1181", "region": "Guangdong", "city": "Guangzhou", "longitude": "113.2539", "accuracy": 1000}
地址③:https://ipinfo.io/widget/demo/121.8.215.106
请求类型:GET
请求参数:你的ip
CORS跨域支持:是
请求示例:
https://ipinfo.io/widget/demo/121.8.215.106示例结果:
{ "input": "121.8.215.106", "data": { "ip": "121.8.215.106", "city": "Shenzhen", "region": "Guangdong", "country": "CN", "loc": "22.5455,114.0683", "org": "AS4134 CHINANET-BACKBONE", "timezone": "Asia/Shanghai", "asn": { "asn": "AS4134", "name": "CHINANET-BACKBONE", "domain": "chinatelecom.com.cn", "route": "121.8.0.0/13", "type": "isp" }, "company": { "name": "CHINANET Guangdong province network", "domain": "chinatelecom.cn", "type": "isp" }, "privacy": { "vpn": false, "proxy": false, "tor": false, "relay": false, "hosting": false, "service": "" }, "abuse": { "address": "No.31 ,jingrong street,beijing, 100032", "country": "CN", "email": "anti-spam@chinatelecom.cn", "name": "ABUSE CHINANETCN", "network": "121.8.0.0/13", "phone": "+000000000" } }}
地址④:https://ipapi.com/ip_api.php?ip=121.8.215.106(已失效)
请求类型:GET
请求参数:ip
CORS跨域支持:否
请求示例:
https://ipapi.com/ip_api.php?ip=121.8.215.106示例结果:
{ "ip": "121.8.215.106", "hostname": "121.8.215.106", "type": "ipv4", "continent_code": "AS", "continent_name": "Asia", "country_code": "CN", "country_name": "China", "region_code": "GD", "region_name": "Guangdong", "city": "Guangzhou", "zip": "510000", "latitude": 23.124719619750977, "longitude": 113.23860931396484, "location": { "geoname_id": 1809858, "capital": "Beijing", "languages": [ { "code": "zh", "name": "Chinese", "native": "中文" } ], "country_flag": "https://assets.ipstack.com/flags/cn.svg", "country_flag_emoji": "🇨🇳", "country_flag_emoji_unicode": "U+1F1E8 U+1F1F3", "calling_code": "86", "is_eu": false }, "time_zone": { "id": "Asia/Shanghai", "current_time": "2024-03-15T15:14:15+08:00", "gmt_offset": 28800, "code": "CST", "is_daylight_saving": false }, "currency": { "code": "CNY", "name": "Chinese Yuan", "plural": "Chinese yuan", "symbol": "CN¥", "symbol_native": "CN¥" }, "connection": { "asn": 4134, "isp": "Chinanet" }, "security": { "is_proxy": false, "proxy_type": null, "is_crawler": false, "crawler_name": null, "crawler_type": null, "is_tor": false, "threat_level": "low", "threat_types": null }}
地址⑤:https://db-ip.com/demo/home.php?s=121.8.215.106
请求类型:GET
请求参数:s=你的ip
CORS跨域支持:否
请求示例:
https://db-ip.com/demo/home.php?s=121.8.215.106示例结果:
{ "status": "ok", "demoInfo": { "ipAddress": "121.8.215.106", "continentCode": "AS", "continentName": "Asia", "countryCode": "CN", "countryName": "中国", "isEuMember": false, "currencyCode": "CNY", "currencyName": "Yuan Renminbi", "phonePrefix": "86", "languages": [ "zh-CN", "yue", "wuu", "dta", "ug", "za" ], "stateProvCode": "GD", "stateProv": "广东", "district": "广州", "city": "小楼", "geonameId": 1790085, "latitude": 23.379, "longitude": 113.763, "gmtOffset": 8, "timeZone": "Asia/Shanghai", "weatherCode": "CHXX5497", "asNumber": 4134, "asName": "CHINANET-BACKBONE", "isp": "Chinanet", "usageType": "corporate", "organization": "Chinanet GD", "isCrawler": false, "isProxy": false, "threatLevel": "high", "threatDetails": [ "attack-source", "attack-target:web" ] }}
地址⑥:https://mesh.if.iqiyi.com/aid/ip/info?version=1.1.1&ip=21.8.215.106(已失效)
请求类型:GET
请求参数:ip=查询的ip地址
CORS跨域支持:是
请求示例:
https://mesh.if.iqiyi.com/aid/ip/info?version=1.1.1&ip=121.8.215.106示例结果:
{ "code": "0", "msg": "success", "data": { "continentCN": "亚洲", "countryCN": "中国", "zoneCN": "华南", "provinceCN": "广东", "cityCN": "广州", "countyCN": "增城区", "townCN": "*", "ispCN": "电信", "continentID": 1, "countryID": 48, "zoneID": 5, "provinceID": 3, "cityID": 3001, "countyID": 3001012, "ispID": 26, "townID": 0, "latitude": "23.328300", "longitude": "113.758370", "overseasRegion": false }}当ip参数值为空时,查询的是请求者的地址信息。
根据地区名称或者经纬度查询IP信息
地址①:https://nominatim.openstreetmap.org/search?format=json&q=
请求类型:GET
请求参数:q(位置) 、lat(纬度) 、lon(经度)
CORS跨域支持:是
请求示例:
# 通过地区查询ip信息https://nominatim.openstreetmap.org/search?format=json&q=广东深圳南山区# 通过经纬度查询ip信息https://nominatim.openstreetmap.org/search?format=json&lat=22.5317523&lon=113.9734125109087示例结果:
{ "place_id": 298782202, "licence": "Data © OpenStreetMap contributors, ODbL 1.0. http://osm.org/copyright", "osm_type": "way", "osm_id": 741753433, "lat": "37.42202505", "lon": "-122.08407788511707", "class": "leisure", "type": "outdoor_seating", "place_rank": 30, "importance": 0.00006277943083843774, "addresstype": "leisure", "name": "", "display_name": "Amphitheatre Parkway, 山景城, Santa Clara County, 加利福尼亚州/加利福尼亞州, 94043, 美利坚合众国/美利堅合眾國", "address": { "road": "Amphitheatre Parkway", "city": "山景城", "county": "Santa Clara County", "state": "加利福尼亚州/加利福尼亞州", "ISO3166-2-lvl4": "US-CA", "postcode": "94043", "country": "美利坚合众国/美利堅合眾國", "country_code": "us" }, "boundingbox": [ "37.4219599", "37.4221426", "-122.0842118", "-122.0839386" ]}
1.只返回本机(访客)IP地址,通过curl访问测试
- 请求类型:GET
curl ifconfig.mecurl ifconfig.escurl icanhazip.comcurl ipinfo.io/ipcurl ipecho.net/ipcurl ident.mecurl eth0.mecurl ipaddr.sitecurl ipaddress.shcurl l2.io/ipcurl tnx.nl/ipcurl wgetip.comcurl ip.tyk.nucurl curlmyip.netcurl ipcalf.comcurl checkip.amazonaws.comcurl https://myexternalip.com/json示例结果:
121.8.215.106
About
Free IP information query APIs / 免费IP信息查询API接口,GET请求,可直接访问,无任何鉴权
Topics
Resources
License
Uh oh!
There was an error while loading.Please reload this page.