GET Electric Vehicle Charging Stations
Returns all electric vehicle chargers.
Request Information
https://511.alaska.gov/api/v2/get/electricvehiclecharger
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. | string | 
| StationName | Station name of the electric vehicle charger | string | 
| Address | The address of the electric vehicle charger. | string | 
| City | The city of the electric vehicle charger | string | 
| Hours | Hours of operation | string | 
| Phone | Phone number. | string | 
| Level1 | Number of level 1 chargers that are available | string | 
| Level2 | Number of level 2 chargers that are available. | string | 
| Status | The status of the electric vehicle charger | string | 
Response Formats
JSON
[
 {
  "Id": "72524",
  "StationName": "Alaska Electric Light & Power",
  "Address": "5601 Tonsgard Ct",
  "City": "Juneau",
  "Hours": "24 hours daily",
  "Phone": "907-780-2222",
  "Level1": null,
  "Level2": "2",
  "Status": "Public"
 },
 {
  "Id": "81601",
  "StationName": "Marine Parking Garage",
  "Address": "292 Marine Way",
  "City": "Juneau",
  "Hours": "8am-10pm daily; paid lot",
  "Phone": "907-586-5226",
  "Level1": null,
  "Level2": "2",
  "Status": "Public"
 }
]XML
<ElectricVehicleChargerList>
 <ElectricVehicleCharger>
  <Id>72524</Id>
  <StationName>Alaska Electric Light & Power</StationName>
  <Address>5601 Tonsgard Ct</Address>
  <City>Juneau</City>
  <Hours>24 hours daily</Hours>
  <Phone>907-780-2222</Phone>
  <Level1/>
  <Level2>2</Level2>
  <Status>Public</Status>
 </ElectricVehicleCharger>
 <ElectricVehicleCharger>
  <Id>81601</Id>
  <StationName>Marine Parking Garage</StationName>
  <Address>292 Marine Way</Address>
  <City>Juneau</City>
  <Hours>8am-10pm daily; paid lot</Hours>
  <Phone>907-586-5226</Phone>
  <Level1/>
  <Level2>2</Level2>
  <Status>Public</Status>
 </ElectricVehicleCharger>
</ElectricVehicleChargerList>