Hi there,
@FPro first thanks for the thread, very helpful.
Everything works as desired, the three cheapest gas stations in the area are displayed dynamically. But now I want to get the price of a specific gas station with the associated price? For example, the gas station with the ID 4143:
{
"id":4143,
"name":"Disk",
"location":{
"address":"Milser Straße 22",
"postalCode":"6060",
"city":"Hall",
"latitude":47.2831587,
"longitude":11.519987
},
"contact":{
"telephone":"435022776061",
"fax":"435022774061",
"mail":"[email protected]",
"website":"http://www.gutmann.cc"
},
"openingHours":[
{
"day":"MO",
"label":"Montag",
"order":1,
"from":"06:00",
"to":"20:00"
},
{
"day":"DI",
"label":"Dienstag",
"order":2,
"from":"06:00",
"to":"20:00"
},
{
"day":"MI",
"label":"Mittwoch",
"order":3,
"from":"06:00",
"to":"20:00"
},
{
"day":"DO",
"label":"Donnerstag",
"order":4,
"from":"06:00",
"to":"20:00"
},
{
"day":"FR",
"label":"Freitag",
"order":5,
"from":"06:00",
"to":"20:00"
},
{
"day":"SA",
"label":"Samstag",
"order":6,
"from":"06:00",
"to":"20:00"
},
{
"day":"SO",
"label":"Sonntag",
"order":7,
"from":"07:00",
"to":"19:00"
},
{
"day":"FE",
"label":"Feiertag",
"order":8,
"from":"07:00",
"to":"19:00"
}
],
"offerInformation":{
"service":false,
"selfService":true,
"unattended":false
},
"paymentMethods":{
"cash":true,
"debitCard":true,
"creditCard":true,
"others":"Gutmann-Card"
},
"paymentArrangements":{
"cooperative":false,
"clubCard":false
},
"otherServiceOffers":"CARWASH",
"position":1,
"open":true,
"prices":[
{
"fuelType":"SUP",
"amount":1.717,
"label":"Super 95"
}
]
},
I would now like to receive the current price for this gas station, no matter how it is ranked. I’ve tried adding the ID directly to the URL, but to no avail.
It would be great if someone could help me with this!