检测IP地理位置
接口地址 https://apis.kit9.cn/api/ip_location/api.php
请求方式 GET/POST
返回格式 JSON
HTTP/HTTPS 支持
请求示例 https://apis.kit9.cn/api/ip_location/api.php?ip=183.3.226.35
参数说明
参数 | 必填 | 类型 | 说明 |
---|---|---|---|
ip | 是 | String | ip |
返回参数
名称 | 类型 | 说明 | ||
---|---|---|---|---|
code | number | 状态码 200为正常,其它为异常 | ||
msg | string | 状态说明 | ||
data | array | 数组 | ||
country | string | 国家 | ||
prov | string | 省份 | ||
city | string | 城市 | ||
isp | string | 网络 |
返回示例
{ "code": 200, "msg": "success", "data": { "country": "中国", "prov": "广东", "city": "深圳", "isp": "电信" } }