/v1/infrastructure-riskInfrastructure Risk API
Evaluate an IP address as part of infrastructure validation, exposure assessment and security investigation workflows.
Common use cases
Check one IP address
Send a JSON object containing ip.
curl -X POST https://api.threatprevent.io/v1/infrastructure-risk \
-H "Content-Type: application/json" \
-H "x-api-key: YOUR_API_KEY" \
-d '{"ip":"8.8.8.8"}'{
"endpoint": "infrastructure-risk",
"risk": "low",
"risk_score": 20,
"source_type": "infrastructure_scan",
"target": "hashed-or-normalised-target",
"charged": true,
"is_free": false,
"unit_price_pence": 25,
"billable_units": 1,
"total_price_pence": 25,
"charged_from_credit_pence": 25,
"overage_pence": 0,
"remaining_credit_pence": 2475
}Interactive API explorer
Response will appear here.
/v1/infrastructure-risk/bulkBulk Infrastructure Risk
Submit up to 10,000 IP addresss in one HTTP request. Billing is calculated by records processed.
curl -X POST https://api.threatprevent.io/v1/infrastructure-risk/bulk \
-H "Content-Type: application/json" \
-H "x-api-key: YOUR_API_KEY" \
-d '{"ips":["8.8.8.8","1.1.1.1","9.9.9.9"]}'{
"results": [
{
"ip": "8.8.8.8",
"risk": "low"
},
{
"ip": "1.1.1.1",
"risk": "medium"
},
{
"ip": "9.9.9.9",
"risk": "low"
}
],
"charged": true,
"is_free": false,
"unit_price_pence": 25,
"billable_units": 3,
"total_price_pence": 75,
"charged_from_credit_pence": 75,
"overage_pence": 0
}Interactive API explorer
Response will appear here.
Risk interpretation
No significant risk signal identified from the intelligence currently available.
A risk signal warrants additional review before making the decision.
Significant risk indicators are present and the decision should be escalated.
Escalate the infrastructure for investigation.
Review the infrastructure context and supporting evidence.
Proceed according to your normal infrastructure controls.
Decision-support notice
Threat intelligence is time-sensitive and cannot provide visibility of every threat. Risk results should be used as an additional decision signal rather than as the sole control for critical business decisions.
