GET Road Conditions
Returns current road conditions.
Request Information
https://www.nvroads.com/api/v2/get/roadconditions
URI Parameters
Name | Description | Type | Additional information |
---|---|---|---|
key |
Developer Key |
string |
Required |
format |
Valid values are 'xml' or 'json', default 'json'. |
string |
Optional |
Response Information
Resource Description
Name | Description | Type |
---|---|---|
Id |
A unique identifier. |
integer |
LocationDescription |
A description of the location that is affected. Often described as from one road to another. |
string |
Overall Status |
Represents the primary status of the winter road condition. |
string |
Secondary Conditions |
Represents the secondary conditions of the winter road condition. |
string |
AreaName |
Area name. |
string |
RoadwayName |
The roadway which this condition affects. |
string |
EncodedPolyline |
A single string storing a series of coordinates. More information |
string |
LastUpdated |
The date the condition's details were last updated in Unix time. More information |
integer |
Response Formats
JSON
[
{
"Id": 3,
"LocationDescription": "from NV-373 to NV-374",
"Overall Status": "Chains Required, All Vehicles except 4-wheel drive with Snow tires",
"Secondary Conditions": [
"Wind Alert - Vehicles over 9 feet use caution"
],
"AreaName": "Statewide",
"RoadwayName": "US-95",
"EncodedPolyline": "w~~pFhygwUlF{RdBkGvB}HvN{h@FS",
"LastUpdated": 1655411925
},
{
"Id": 4,
"LocationDescription": "from NV-160 to NV-373",
"Overall Status": "Chains Required, All Vehicles except 4-wheel drive with Snow tires",
"Secondary Conditions": [
"Wind Alert - Vehicles over 9 feet use caution"
],
"AreaName": "Statewide",
"RoadwayName": "US-95",
"EncodedPolyline": "qnpgFhc_kUxb@gIbC_@",
"LastUpdated": 1655411925
}
]
XML
<RoadConditionsList>
<RoadConditions>
<Id>3</Id>
<LocationDescription>from NV-373 to NV-374</LocationDescription>
<Overall-Status>Chains Required, All Vehicles except 4-wheel drive with Snow tires</Overall-Status>
<Secondary-Conditions>Wind Alert - Vehicles over 9 feet use caution</Secondary-Conditions>
<AreaName>Statewide</AreaName>
<RoadwayName>US-95</RoadwayName>
<EncodedPolyline>w~~pFhygwUlF{RdBkGvB}HvN{h@FS</EncodedPolyline>
<LastUpdated>1657897886</LastUpdated>
</RoadConditions>
<RoadConditions>
<Id>4</Id>
<LocationDescription>from NV-160 to NV-373</LocationDescription>
<Overall-Status>Holding Traffic</Overall-Status>
<Secondary-Conditions>Wind Alert - Vehicles over 9 feet use caution</Secondary-Conditions>
<AreaName>Statewide</AreaName>
<RoadwayName>US-95</RoadwayName>
<EncodedPolyline>qnpgFhc_kUxb@gIbC_@</EncodedPolyline>
<LastUpdated>1657897886</LastUpdated>
</RoadConditions>
</RoadConditionsList>