2023-08-20 06:09:23 +00:00
|
|
|
# ip-info-lookup-server
|
|
|
|
仿照 ip.p3terx.com 样式构建的ip信息查询服务
|
|
|
|
|
|
|
|
|
|
|
|
## Usage
|
|
|
|
GET / get ip info from your ip address
|
|
|
|
|
|
|
|
POST / get json-formatted ip info from your ip address
|
|
|
|
|
2023-08-20 06:50:18 +00:00
|
|
|
GET /ip/{ip} get ip info from provided ip address
|
2023-08-20 06:09:23 +00:00
|
|
|
|
2023-08-20 06:50:18 +00:00
|
|
|
POST /ip/{ip} get json-formatted ip info from provided ip address
|
2023-08-20 06:09:23 +00:00
|
|
|
|
|
|
|
Example:
|
|
|
|
```bash
|
|
|
|
curl ip.qqs.tw
|
|
|
|
curl ip.qqs.tw/ip/114.114.114.114
|
|
|
|
```
|