Get charging location
Learn how to get a charging station's location
This API is to get the charging station's information.
Example request
Request header
To be defined by the vendor.
Request query
Query | Type | Description |
---|---|---|
|
| ID of the station |
Example response
{
"id": "1",
"name": "EV Station KLCC",
"address": "No. 1, Jalan Ampang",
"latitude": 3.1563086,
"longitude": 101.7119679,
"status": "available",
"chargingPoints": [
{
"id": "1",
"label": "1",
"kilowatt": 120,
"status": "available",
"connectors": [
{
"id": "1",
"type": "Type 1",
"kind": "AC",
"status": "available",
"price": "RM1.00/15 min",
"kilowatt": 22,
"discardedAt": "2022-01-01T00:00:00.000Z"
},
{
"id": "2",
"type": "CCS",
"kind": "DC",
"status": "available",
"price": "RM1.00/1 min",
"kilowatt": 120,
}
]
}
]
}
Variable | Type | Description |
---|---|---|
|
| The ID of the station. |
|
| The name of the station. |
|
| The address of the station. |
|
| The city the station is located. |
|
| The state the station is located. |
|
| The country the station is located. |
|
| The latitude of the station (as per Google Maps). |
|
| The longitude of the station (as per Google Maps). |
|
| The current status of the station. |
|
| The charging point at the station. |
|
| The ID of the charging point. |
|
| The label of the charging point. |
|
| The kilowatt available at this charging point. |
|
| The current status of this charging point. |
|
| The time this charging point was removed by the vendor. |
|
| The connector of this particular charging point. |
|
| The ID of the connector. |
|
| The connector type ( |
|
| The type of electrical current ( |
|
| The current status of the connector. |
|
| The charging rate. Ex. |
|
| The kilowatt available at this connector. |
|
| The time this connector was removed by the vendor. |
Updated 16 days ago