Fuel Price - all fuel types
This section provides an example of a fuel price request for all fuel types.
User story
You want to obtain prices for all
fuel types within 5km of latitude 52.53087 and longitude 13.44176, which is in Berlin, Germany. Latitude and longitude values are in WGS 84 format.
Request Summary
Request
This code block demonstrates the complete request, specifying that the response data are to be delivered in JSON format.
https://fuel-v2.cc.api.here.com/fuel/stations.json
?prox=52.53087,13.44176,5000
&apiKey={YOUR_API_KEY}
Here is the same request indicating that the response data are to be delivered in XML format.
https://fuel-v2.cc.api.here.com/fuel/stations.xml
?prox=52.53087,13.44176,5000
&apiKey={YOUR_API_KEY}
Response
The response to the request contains:
- the fuel prices of all the fuel types which meet the search criteria (within proximity radius). If price is estimated, the fuelPrice element does not contain any price information, only that the fuel type is available at this station (fuel type 4 -
Premium
). - list of stations that fit the specified criteria with additional details
This is the example response in JSON format:
{
"hasMore":true,
"fuelStations":{
"fuelStation":[
{
"brand":"TOTAL",
"brandIcon":"http://origin.stg.cld.vcdn.data.here.com/p/d/autox_stg/dt/icons/2015-05-06/total.png",
"fuelPrice":[
{
"price":1.469,
"fuelType":"27",
"unit":"l",
"currency":"EUR",
"lastUpdateTimestamp":"2015-03-12T10:17:45.000Z"
},
{
"price":1.389,
"fuelType":"1",
"unit":"l",
"currency":"EUR",
"lastUpdateTimestamp":"2015-03-12T10:17:45.000Z"
},
{
"price":0.619,
"fuelType":"14",
"unit":"l",
"currency":"EUR",
"lastUpdateTimestamp":"2015-02-25T11:04:41.000Z"
},
{
"price":1.299,
"fuelType":"11",
"unit":"l",
"currency":"EUR",
"lastUpdateTimestamp":"2015-03-12T10:17:45.000Z"
}
],
"open24x7":true,
"stationDetails":{
"openingHours":{
"regularOpeningHours":[
{
"daymask":127,
"period":[
{
"from":"00:00:00",
"to":"24:00:00"
}
]
}
]
}
},
"address":{
"city":"Berlin",
"country":"DEU",
"region":"Berlin",
"street":"Margarete-Sommer-Stra�e",
"streetNumber":"2",
"postalCode":"10407"
},
"contacts":{
"phone":[
{
"value":"+493042852514",
"label":"PHONE"
}
]
},
"distance":0,
"position":{
"latitude":52.53087,
"longitude":13.44176
},
"name":"TOTAL",
"id":"276u33dc-d1d2783a63404a6789f281438f32375f",
"pvId":"50664433",
"lastUpdateTimestamp":"2014-12-14T11:01:41.609Z",
"timeZone":"Europe/Berlin"
}
]
}
}
This is the example response in XML format:
<fuel:fuelStationsResult>
<hasMore>true</hasMore>
<fuelStations>
<fuelStation id="276u33dc-d1d2783a63404a6789f281438f32375f" pvId="50664433" lastUpdateTimestamp="2014-12-14T11:01:41.609Z" timeZone="Europe/Berlin">
<fuelPrice fuelType="27" unit="l" currency="EUR" lastUpdateTimestamp="2015-03-12T10:17:45.000Z">
<price>1.469</price>
</fuelPrice>
<fuelPrice fuelType="1" unit="l" currency="EUR" lastUpdateTimestamp="2015-03-12T10:17:45.000Z">
<price>1.389</price>
</fuelPrice>
<fuelPrice fuelType="14" unit="l" currency="EUR" lastUpdateTimestamp="2015-02-25T11:04:41.000Z">
<price>0.619</price>
</fuelPrice>
<fuelPrice fuelType="11" unit="l" currency="EUR" lastUpdateTimestamp="2015-03-12T10:17:45.000Z">
<price>1.299</price>
</fuelPrice>
<address>
<city>Berlin</city>
<country>DEU</country>
<region>Berlin</region>
<street>Margarete-Sommer-Straße</street>
<streetNumber>2</streetNumber>
<postalCode>10407</postalCode>
</address>
<contacts>
<phone>
<value>+493042852514</value>
<label>PHONE</label>
</phone>
</contacts>
<distance>0</distance>
<position>
<latitude>52.53087</latitude>
<longitude>13.44176</longitude>
</position>
<name>TOTAL</name>
<brand>TOTAL</brand>
<brandIcon>http://origin.stg.cld.vcdn.data.here.com/p/d/autox_stg/dt/icons/2015-05-06/total.png</brandIcon>
<open24x7>true</open24x7>
<stationDetails>
<openingHours>
<regularOpeningHours>
<daymask>127</daymask>
<period>
<from>00:00:00</from>
<to>24:00:00</to>
</period>
</regularOpeningHours>
</openingHours>
</stationDetails>
</fuelStation>
</fuelStations>
</fuel:fuelStationsResult>
For more details about responses to this type of request refer to Fuel Stations Response.