IP Address Risk Profiling
Provides an IP address risk profiling API service, enabling developers to quickly access IP risk profile information and integrate it into business systems.
Documentation
IP Address Risk Profiling API Overview
The IP Address Risk Profiling API helps developers quickly process IP risk assessments within their systems. It returns structured results and is ideal for scenarios such as cybersecurity analysis, access risk control, and data governance.
Use Cases
- Integrate IP address risk profiling capabilities into internal systems, SaaS platforms, automated workflows, or admin dashboards.
- Suitable for business scenarios requiring stable API calls, standardized responses, and orchestratable interface capabilities.
- We recommend combining this with rate limiting, failure retry mechanisms, and result caching strategies to improve overall integration stability.
Integration Recommendations
- Verify request parameter formats, authentication methods, and error code handling logic before integration.
- For high-frequency calling 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 advise incorporating secondary evaluations based on your business rules 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": "114.114.114.114",
"coordsys": "wgs84"
}Response Example
{
"code": "SUCCESS",
"message": "success",
"data": {
"riskLevel": "low",
"tags": [],
"isProxy": false,
"isVpn": false
}
}Request Fields
The fields below are derived from example JSON for integration reference only.
| Path | Type | Sample |
|---|---|---|
| ip | string | 114.114.114.114 |
| 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.riskLevel | string | low |
| data.tags | array | [] |
| data.isProxy | boolean | false |
| data.isVpn | boolean | false |