Fast IP Geolocation & Country Lookup
收藏资源简介:
Ultra-fast IP geolocation API. Get country, city, timezone, and latitude/longitude from any IPv4 or IPv6 address with sub-millisecond latency.
数据集概述:Fast IP Geolocation & Country Lookup
这是一款高性能、低延迟的 IP 地理定位 API,用于将 IPv4 和 IPv6 地址解析为国家、城市、时区和经纬度坐标。
核心特性
- 超低延迟:基于本地数据库查询,响应时间可低至亚毫秒级。
- 全球覆盖:支持全球范围内的 IPv4 和 IPv6 地址。
- 可靠数据源:由强大的 DB-IP City 数据库(
dbip-city.mmdb)驱动。 - 简单集成:返回干净的 JSON 负载,易于在任何编程语言中解析。
鉴权方式
所有 API 请求必须包含以下请求头以完成身份验证:
| 请求头 | 类型 | 必填 | 描述 |
|---|---|---|---|
x-rapidapi-key |
string | 是 | 您的 RapidAPI 密钥。未授权的请求将返回 403 状态。 |
x-rapidapi-host |
string | 是 | fast-ip-geolocation-country-lookup.p.rapidapi.com |
接口详情
端点:GET https://fast-ip-geolocation-country-lookup.p.rapidapi.com/v1/lookup
查询参数:
| 参数 | 类型 | 必填 | 描述 |
|---|---|---|---|
ip |
string | 是 | 目标 IPv4 或 IPv6 地址(例如 8.8.8.8)。 |
响应示例(200 OK):
json { "ip": "8.8.8.8", "country_code": "US", "country_name": "United States", "city": "Mountain View", "time_zone": "America/Los_Angeles", "location": { "latitude": 37.386, "longitude": -122.0838 } }
错误响应:
| 状态码 | 描述 | 示例负载 |
|---|---|---|
| 400 Bad Request | 提供的 IP 地址格式无效 | {"detail": "Invalid IP address: ..."} |
| 403 Forbidden | 缺少或无效的 x-rapidapi-key 请求头 |
{"detail": "Unauthorized request"} |
| 404 Not Found | 有效的 IP 地址在数据库中未找到 | {"detail": "IP address not found in database"} |
集成示例
cURL:
bash curl -X GET "https://fast-ip-geolocation-country-lookup.p.rapidapi.com/v1/lookup?ip=8.8.8.8" -H "x-rapidapi-key: YOUR_SECRET_KEY" -H "x-rapidapi-host: fast-ip-geolocation-country-lookup.p.rapidapi.com"
Python (Requests):
python import requests
url = "https://fast-ip-geolocation-country-lookup.p.rapidapi.com/v1/lookup" querystring = {"ip": "8.8.8.8"}
headers = { "x-rapidapi-key": "YOUR_SECRET_KEY", "x-rapidapi-host": "fast-ip-geolocation-country-lookup.p.rapidapi.com" }
response = requests.get(url, headers=headers, params=querystring) print(response.json())
附加信息
- API 创建者:rxmrb699
- 订阅者:3
- 类别:位置(Location)
- 服务表现:服务级别 100%,延迟 9ms,人气指数 9.1
- 订阅计划:
- BASIC:$0.00 / 月
- PRO:$5.00 / 月
- ULTRA:$25.00 / 月



