BaroclineBarocline
GaugeRisk Data

getCoordinateRiskData_1

Returns risk information for the supplied peril and coordinates.

GET
/v3/risk/coordinates/{latitude}/{longitude}

Returns risk information for the supplied peril and coordinates in either CSV or JSON (default). The coordinates will be returned as part of the response.

Path Parameters

latitude*number

The requested latitude.

Formatdouble
longitude*number

The requested longitude.

Formatdouble

Query Parameters

format*string

The response format either JSON or CSV (JSON is the default).

Value in"json" | "csv"
userKey*string

The user key.

additionalData?boolean

Request extra data (more than just the risk score, JSON only).

Defaultfalse
returnPerilWithNoData?boolean

Request to have a response of "N/A" returned in place of a risk score when no data is available.

Defaultfalse

Response Body

application/json

curl -X GET "https://gauge.atheniumanalytics.com/v3/risk/coordinates/0.1/0.1?perils=EARTHQUAKE&format=json&userKey=string"
[
  {
    "state": "string",
    "peril": "Cold",
    "riskScore": "string",
    "lat": 0.1,
    "lng": 0.1,
    "address": "string",
    "details": null
  }
]
Empty
Empty
Empty