IP地址查询(详版)
最后更新于:2022-04-02 08:18:38
## IP地址查询(详版)
>[danger]### 会员接口,仅限会员使用,购买[API会员](https://market.topthink.com/product/210)
![](https://docs.gechiui.com/gc-content/uploads/sites/kancloud/5b/0f/5b0fc4a432d4f56a341333de4deca903_200x200.png)
> 最新的IP地址库查询接口,根据IP地址查询归属地/州/国家/省市区/经纬度及网络运营商ISP等信息。不传任何参数的情况下,默认为请求来源ip的相关信息。
## 接口调用([调用须知](https://docs.topthink.com/think-api/1835086))
### 请求地址
```
GET https://api.topthink.com/website/ip
```
### 请求参数
| 名称 | 类型 | 必填 | 说明 |
| --- | --- | --- | --- |
| appCode| string| 是|用户授权码,参考[API调用](https://docs.topthink.com/think-api/1835086) |
| ip | string | 是 | IP地址 |
### 返回`data`参数
| 名称 | 类型 | 示例值 | 说明 |
| --- | --- | --- | --- |
| continent | string | 亚洲 | 大陆州 |
| country | string | 中国 | 国家 |
| province | string | 上海 | 省级行政区 |
| city | string | 上海 | 城市 |
| district | string | 黄埔 | 地区 |
| isp | string | 移动 | 网络运营商 |
| areacode | string | 310100 | 地区编码 |
| countrycode | string | CN | 国家代码 |
| countryenglish | string | China | 国家英文名称 |
| longitude | string | 121.472644 | 经度 |
| latitude | string | 31.231706 | 纬度 |
## SDK调用
```
$client = new Client("YourAppCode");
$result = $client->websiteIp()
->withIp('183.192.70.211')
->request();
```
返回示例:
~~~
{
"code":0,
"message": "成功",
"data": [
{
"ip": "183.192.70.211",
"continent":"亚洲",
"country":"中国",
"province":"上海",
"city":"上海",
"district":"徐汇区",
"isp":"移动",
"areacode":"310100",
"countrycode":"CN",
"countryenglish":"China",
"longitude":"121.472644",
"latitude":"31.231706"
}
]
}
~~~
';