GET Electric Vehicle Charging Stations

Returns all electric vehicle chargers.

Request Information

https://511ga.org/api/v2/get/electricvehiclecharger

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.

string
StationName

Station name 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. Examples: In service, Planned

string
Address

The address of the electric vehicle charger.

string
ConnectorTypes

The types of available connector

string
FacilityType

The facility type

string

Response Formats

JSON

Sample:
[
  {
    "Id": "39985",
    "StationName": "Nalley Nissan of Atlanta",
    "Hours": "9am-8pm M-Sat, 12pm-5pm Sun",
    "Phone": "855-416-9828",
    "Level1": null,
    "Level2": "1",
    "Status": "Public - Call ahead",
    "Address": "2551 The Nalley Way, Atlanta, GA, 30360",
    "ConnectorTypes": "CHAdeMO, J1772",
    "FacilityType": "Car Dealer"
  },
  {
    "Id": "39986",
    "StationName": "Gwinnett Place Nissan",
    "Hours": "Dealership business hours",
    "Phone": "770-476-7771",
    "Level1": null,
    "Level2": "1",
    "Status": "Public - Call ahead",
    "Address": "2555 Pleasant Hill Rd, Duluth, GA, 30096",
    "ConnectorTypes": "CHAdeMO, J1772, CCS",
    "FacilityType": "Car Dealer"
  }
]

XML

Sample:
<ElectricVehicleChargerList>
    <ElectricVehicleCharger>
        <Id>39985</Id>
        <StationName>Nalley Nissan of Atlanta</StationName>
        <Hours>9am-8pm M-Sat, 12pm-5pm Sun</Hours>
        <Phone>855-416-9828</Phone>
        <Level1/>
        <Level2>1</Level2>
        <Status>Public - Call ahead</Status>
        <Address>2551 The Nalley Way, Atlanta, GA, 30360</Address>
        <ConnectorTypes>CHAdeMO, J1772</ConnectorTypes>
        <FacilityType>Car Dealer</FacilityType>
    </ElectricVehicleCharger>
    <ElectricVehicleCharger>
        <Id>39986</Id>
        <StationName>Gwinnett Place Nissan</StationName>
        <Hours>Dealership business hours</Hours>
        <Phone>770-476-7771</Phone>
        <Level1/>
        <Level2>1</Level2>
        <Status>Public - Call ahead</Status>
        <Address>2555 Pleasant Hill Rd, Duluth, GA, 30096</Address>
        <ConnectorTypes>CHAdeMO, J1772, CCS</ConnectorTypes>
        <FacilityType>Car Dealer</FacilityType>
    </ElectricVehicleCharger>
</ElectricVehicleChargerList>