# IP地址查询
>[danger] 免费接口,每日100次免费调用
## 接口调用([调用须知](https://www.kancloud.cn/chimney/cn-api/2491302))
>[info] 获取指定IP地址信息
## 请求地址
~~~
GET https://api.cnbook.top/website/ip/info
~~~
## 请求参数
| 名称 | 必填 | 类型 | 说明 |
| --- | --- | --- | --- |
| ip | 是 | string | ip地址 |
## 返回结果说明
| 名称 | 类型 | 类型 | 说明 |
| --- | --- | --- | --- |
| ip | string | 38.94.109.7 | ip地址 |
| continent | string | 北美洲 | 大陆 |
| continent_en | string | North America | 大陆英文名称 |
| continent_code | string | NA | 大陆代码 |
| country | string | 美国 | 国家 |
| country_en | string | United States | 国家英文名称 |
| country_code | string | US | 国家代码 |
| province | string | 华盛顿州 | 省级行政区 |
| province_en | string | Washington | 省级行英文名称 |
| province_code | string | WA | 省级行政区代码 |
| city | string | Seattle | 城市 |
| city_en | string | Seattle | 城市英文名称 |
| postal_code | string | 98121 | 邮政编码 |
| longitude | string | -122.3447 | 经度 |
| latitude | string | 47.614400000000003 | 纬度 |
| time_zone | string | America/Los_Angeles | 时区 |
| network | string | 38.94.108.0/23 | 子网掩码 |
| isp | string | Cogent Communications | 网络运营商 |
#### 返回示例
~~~
{
"code": 0,
"message": "success",
"data": {
"ip": "38.94.109.7",
"continent": "北美洲",
"continent_en": "North America",
"continent_code": "NA",
"country": "美国",
"country_en": "United States",
"country_code": "US",
"province": "华盛顿州",
"province_en": "Washington",
"province_code": "WA",
"city": "Seattle",
"city_en": "Seattle",
"postal_code": "98121",
"longitude": -122.3447,
"latitude": 47.614400000000003,
"time_zone": "America/Los_Angeles",
"network": "38.94.108.0/23",
"isp": "Cogent Communications"
},
"trace": 1634143388
}
~~~