Skip to content

网络数据

查询IP地理位置信息

描述

根据 IP 地址,查询对应的地理位置信息。同时支持 IPv4 和 IPv6

支持的模式

  • client_credentials

请求方法

GET

请求地址

https://api.ecnu.edu.cn/api/v1/network/ip

请求参数

字段是否必须说明
ipip地址

返回参数

字段说明
ipIP地址
continet大洲
country国家
province省(直辖市)
city
district区县
isp运营商
areaCode行政区划代码(仅国内 IPv4 部分)
countryEnglish国家的英文名
countryCode国家代码
longitude经度,无数据时是空字符串
latitude纬度,无数据时是空字符串

请求示例

curl -H "Authorization: Bearer a4169ff1c5503d6eb94f84d13b6776e0"  "https://api.ecnu.edu.cn/api/v1/network/ip?ip=202.120.80.2"

返回示例

json
{
	"errCode": 0,
	"errMsg": "success",
	"requestId": "4f22f1d3-1445-4bd7-90fb-eed72c7b416f",
	"data": {
		"ip": "202.120.80.2",
		"continent": "亚洲",
		"country": "中国",
		"province": "上海",
		"city": "上海",
		"district": "华东师范大学",
		"isp": "校园网",
		"areaCode": "310000",
		"countryEnglish": "China",
		"countryCode": "CN",
		"longitude": "",
		"latitude": ""
	}
}