Skip to main content
GET
Radius Risk Analysis

Overview

The Radius Risk Analysis API evaluates potential threats and hazards within a circular area around a specified geographic point. This endpoint is ideal for assessing risks in a specific location, planning safe zones, or analyzing area-wide security concerns.

Authentication

This endpoint supports anonymous access for basic risk assessments, though authenticated requests receive more detailed analysis and higher point limits.

Query Parameters

number
required
Center latitude coordinate (-90 to 90)
number
required
Center longitude coordinate (-180 to 180)
number
required
Radius in kilometers (0.1 to 100)
integer
default:"100"
Number of analysis points to generate within the radius (10 to 1000)
  • Anonymous users: max 100 points
  • Authenticated users: max 1000 points
string
Comma-separated list of risk types to analyze. If not provided, all types are assessed.Available types: geopolitical, environmental, infrastructure, crime, traffic, weather
string
default:"medium"
Analysis resolution: low, medium, high
string
ISO 8601 timestamp for time-specific analysis. Defaults to current time.

Example Requests

Response

array
Array of risk assessment points within the specified radius
object
Center point information
object
Area risk summary statistics
array
Detailed threat information for the area
array
Risk zone classifications within the area

Example Response

Use Cases

Emergency Planning

Event Security

Real Estate Assessment

Logistics Planning

Status Codes

OK
Risk analysis completed successfully
Bad Request
Invalid coordinates, radius, or other parameters
Unauthorized
Invalid or missing API key (for authenticated features)
Too Many Requests
Rate limit exceeded
Internal Server Error
Server error during risk analysis

Error Responses

Integration Examples

JavaScript/Web

Python

R

Visualization Tips

Heat Maps

Use the weight values to create color-coded heat maps showing risk intensity across the area.

Zone Boundaries

Render the zones boundaries to clearly delineate safe and dangerous areas.

Threat Markers

Place markers at threat locations with icons representing the threat type and severity.

Distance Rings

Show concentric circles at different distances from the center point for spatial reference.

Next Steps