IP Geo API

IP 地理位置与归属地查询

输入 IP 地址开始查询

支持 IPv4 和 IPv6

位置标注

API 使用说明

Shell
# 基础查询 curl https://geo.metaqiu.cn/api/8.8.8.8 # 精确定位(美团数据源) curl https://geo.metaqiu.cn/api/locate/8.8.8.8
Python
import requests # 基础查询 response = requests.get('https://geo.metaqiu.cn/api/8.8.8.8') print(response.json()) # 精确定位(美团数据源) response = requests.get('https://geo.metaqiu.cn/api/locate/8.8.8.8') print(response.json())