GET Snow & Ice
Returns current road conditions.
Request Information
https://nc.prod.traveliq.co//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 for Public Display |
Public display of overall message |
string |
| Interstates |
Road conditions for Interstates |
string |
| US/NC Routes |
Road conditions for US & NC routes |
string |
| Secondary Roads |
Road Conditions for Secondary roads |
string |
| AreaName |
Area name. |
string |
| LastUpdated |
The date the condition's details were last updated in Unix time. More information |
integer |
| SortId |
SortId for road conditions |
integer |
| County |
County Name |
string |
Response Formats
JSON
[
{
"Id": 27,
"LocationDescription": "Beaufort",
"Overall for Public Display": "No Report",
"Interstates": null,
"US/NC Routes": null,
"Secondary Roads": null,
"AreaName": "Beaufort",
"LastUpdated": 1742322224,
"SortId": 1,
"County": "Beaufort"
},
{
"Id": 86,
"LocationDescription": "Bertie",
"Overall for Public Display": "No Report",
"Interstates": null,
"US/NC Routes": null,
"Secondary Roads": null,
"AreaName": "Bertie",
"LastUpdated": 1742322224,
"SortId": 2,
"County": "Bertie"
}
]
XML
<RoadConditionsList>
<RoadConditions>
<Id>27</Id>
<LocationDescription>Beaufort</LocationDescription>
<Overall-for-Public-Display>No Report</Overall-for-Public-Display>
<Interstates />
<USNC-Routes />
<Secondary-Roads />
<AreaName>Beaufort</AreaName>
<LastUpdated>1742322224</LastUpdated>
<SortId>1</LastUpdated>
<County>Beaufort</County>
</RoadConditions>
<RoadConditions>
<Id>86</Id>
<LocationDescription>Bertie</LocationDescription>
<Overall-for-Public-Display>No Report</Overall-for-Public-Display>
<Interstates />
<USNC-Routes />
<Secondary-Roads />
<AreaName>Bertie</AreaName>
<LastUpdated>1742322224</LastUpdated>
<SortId>2</LastUpdated>
<County>Bertie</County>
</RoadConditions>
</RoadConditionsList>