GET Welcome Centers

Returns all welcome centers.

Request Information

https://www.nvroads.com/api/v2/get/visitorlocations

URI Parameters

URI Parameters
NameDescriptionTypeAdditional information
key

Developer Key

string

Required

format

Valid values are 'xml' or 'json', default 'json'.

string

Optional

Response Information

Resource Description


Resource Description
NameDescriptionType
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
Amenities

The available amenities of the welcome center.

string

Response Formats

JSON

Sample:
[
  {
    "Id": 202,
    "Latitude": 35.987306,
    "Longitude": -114.831891,
    "Name": "BOULDER CITY",
    "Amenities": "Wireless Internet, Litter Barrels, Handicap Parking, Total Parking Spaces (16), Men's and Women's Flush Toilets"
  },
  {
    "Id": 201,
    "Latitude": 36.811941,
    "Longitude": -114.062616,
    "Name": "MESQUITE",
    "Amenities": "Wireless Internet, Litter Barrels, Handicap Parking, Men's and Women's Flush Toilets"
  },
  {
    "Id": 203,
    "Latitude": 40.737122,
    "Longitude": -114.057329,
    "Name": "WENDOVER",
    "Amenities": "Wireless Internet, Litter Barrels, Handicap Parking, Men's and Women's Flush Toilets"
  }
]

XML

Sample:
<VisitorLocationsList>
    <VisitorLocations>
        <Id>202</Id>
        <Latitude>35.987306</Latitude>
        <Longitude>-114.831891</Longitude>
        <Name>BOULDER CITY</Name>
        <Amenities>Wireless Internet, Litter Barrels, Handicap Parking, Total Parking Spaces (16), Men's and Women's Flush Toilets</Amenities>
    </VisitorLocations>
    <VisitorLocations>
        <Id>201</Id>
        <Latitude>36.811941</Latitude>
        <Longitude>-114.062616</Longitude>
        <Name>MESQUITE</Name>
        <Amenities>Wireless Internet, Litter Barrels, Handicap Parking, Men's and Women's Flush Toilets</Amenities>
    </VisitorLocations>
    <VisitorLocations>
        <Id>203</Id>
        <Latitude>40.737122</Latitude>
        <Longitude>-114.057329</Longitude>
        <Name>WENDOVER</Name>
        <Amenities>Wireless Internet, Litter Barrels, Handicap Parking, Men's and Women's Flush Toilets</Amenities>
    </VisitorLocations>
</VisitorLocationsList>