GET Welcome Centers
Returns all welcome centers.
Request Information
https://nc.prod.traveliq.co//api/v2/get/welcomecenter
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 |
Latitude |
The latitude describing the location. Format: double between -90 and 90. |
double |
Longitude |
The longitude describing the location. Format: double between -180 and 180. |
double |
Name |
Name of the item |
string |
Description |
The description of the item. |
string |
County |
The county name |
string |
Highway |
The highway name |
string |
Phone |
Phone number. |
string |
Status |
Status of welcome center (e.g., open). |
string |
Amenities |
List of available amenities |
string |
CarParking |
Total number of car parking |
string |
CarTrailerParking |
Total number of car trailer parking |
string |
TruckParking |
Total number of truck parking |
string |
Image |
Image of welcome center |
string |
Response Formats
JSON
[
{
"Id": 918,
"Latitude": 35.234722,
"Longitude": -82.204167,
"Name": "Polk County I-26",
"Description": "At Milepost 36 South of Columbus on I-26.",
"County": "Dare",
"Highway": "US 158",
"Phone": "(828)631-0272",
"Status": "Open",
"Amenities": "Family Restrooms, Grilling Areas, Handicapped Accessible Restrooms, Picnic Areas, Recycling, Restrooms, Trash Bins, Vending Machines, Water Fountains",
"CarParking": "132",
"CarTrailerParking": "5",
"TruckParking": "7",
"Image": "https://www.ncdot.gov/Style Library/Bing Maps/assets/travel_restarea_centers/polk.jpg"
}
]
XML
<WelcomeCenterList>
<WelcomeCenter>
<Id>918</Id>
<Latitude>35.234722</Latitude>
<Longitude>-82.204167</Longitude>
<Name>Polk County I-26</Name>
<Description>At Milepost 36 South of Columbus on I-26.</Description>
<County>Dare</County>
<Highway>US 158</Highway>
<Phone>(828)631-0272</Phone>
<Status>Open</Status>
<Amenities>Family Restrooms, Grilling Areas, Handicapped Accessible Restrooms, Picnic Areas, Recycling, Restrooms, Trash Bins, Vending Machines, Water Fountains</Amenities>
<CarParking>132</CarParking>
<CarTrailerParking>5</CarTrailerParking>
<TruckParking>7</TruckParking>
<Image>https://www.ncdot.gov/Style Library/Bing Maps/assets/travel_restarea_centers/polk.jpg</Image>
</WelcomeCenter>
</WelcomeCenterList>