IPv6 Geolocation Lookup
Provides an IPv6 geolocation lookup API service, allowing developers to quickly query IPv6 location information and seamlessly integrate it into business systems.
Documentation
IPv6 Geolocation Lookup API Overview
The IPv6 Geolocation Lookup API helps developers quickly process IPv6 location queries within their systems. It returns structured results and is ideal for scenarios like regional identification, user profiling, and risk control analysis.
Use Cases
- Integrate IPv6 geolocation lookup capabilities into internal systems, SaaS platforms, automated workflows, or operational backends.
- Suitable for business scenarios requiring stable API calls, standardized responses, and orchestratable interface capabilities.
- We recommend combining this with rate limiting, failure retries, and result caching strategies to improve overall integration stability.
Integration Advice
- Before integrating, verify the request parameter format, authentication method, and error code handling logic.
- For high-frequency query scenarios, it is recommended to implement log tracking, timeout control, and idempotency handling.
- If the results are used for risk control or automated decision-making, we suggest combining them with business rules for secondary validation rather than relying solely on the API response.
Integration Examples
Includes ready-to-use Shell, Python, Go, Java, and PHP examples for direct integration.
Request Example
{
"ip": "2001:4860:4860::8888",
"coordsys": "wgs84"
}Response Example
{
"code": "SUCCESS",
"message": "success",
"data": {
"country": "美国",
"province": "加利福尼亚州",
"city": "芒廷维尤"
}
}Request Fields
The fields below are derived from example JSON for integration reference only.
| Path | Type | Sample |
|---|---|---|
| ip | string | 2001:4860:4860::8888 |
| coordsys | string | wgs84 |
Response Fields
The fields below are derived from example JSON for integration reference only.
| Path | Type | Sample |
|---|---|---|
| code | string | SUCCESS |
| message | string | success |
| data | object | {...} |
| data.country | string | 美国 |
| data.province | string | 加利福尼亚州 |
| data.city | string | 芒廷维尤 |