GET Visitor Centers
Returns all visitor centers.
Request Information
https://nc.prod.traveliq.co//api/v2/get/visitorlocations
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 welcome center. |
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 visitor center (e.g., open) |
string |
Amenities |
The available amenities of the welcome center. |
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 visitor center |
string |
Response Formats
JSON
[
{
"Id": 917,
"Latitude": 35.113393,
"Longitude": -83.391001,
"Name": "Macon County US 23/441",
"Description": "Adjacent to US Route 23/441, 3 miles north of the Georgia State Line.",
"County": "Camden",
"Highway": "US 17",
"Phone": "(828)631-0272",
"Status": "Open",
"Amenities": "Grilling Areas, Handicapped Accessible Restrooms, Picnic Areas, Recycling, Restrooms, Trash Bins, Water Fountains",
"CarParking": "12",
"CarTrailerParking": "2",
"TruckParking": "1",
"Image": "https://www.ncdot.gov/Style Library/Bing Maps/assets/travel_restarea_centers/macon.jpg"
}
]
XML
<VisitorLocationsList>
<VisitorLocations>
<Id>917</Id>
<Latitude>35.113393</Latitude>
<Longitude>-83.391001</Longitude>
<Name>Macon County US 23/441</Name>
<Description>Adjacent to US Route 23/441, 3 miles north of the Georgia State Line.</Description>
<County>Camden</County>
<Highway>US 17</Highway>
<Phone>(828)631-0272</Phone>
<Status>Open</Status>
<Amenities>Grilling Areas, Handicapped Accessible Restrooms, Picnic Areas, Recycling, Restrooms, Trash Bins, Water Fountains</Amenities>
<CarParking>12</CarParking>
<CarTrailerParking>2</CarTrailerParking>
<TruckParking>1</TruckParking>
<Image>https://www.ncdot.gov/Style Library/Bing Maps/assets/travel_restarea_centers/macon.jpg</Image>
</VisitorLocations>
</VisitorLocationsList>