How to get details for a fuel station

This section provides an example of a request for detailed information about a specific fuel station.

📘

Note

This example uses a HERE API key to authenticate your request. For the available authentication options, see the Identity and Access Management Developer Guide

User story

Based on the results of a search for fuel stations, you want to find more information about a specific station.

Request Summary

ResourceDescription
stations/{id}Where id is an attribute of the fuelStation element with a unique value. For more information, see Station Details.

Request

📘

Note

id values change without notice. If the id is no longer available, a 404 not found returns a status message.

This code block demonstrates the complete request, specifying that the response data is in JSON format.

https://fuel.hereapi.com/v3/stations/276u33d9-7642e89e6c884fe697aee09fa91e21be
?apiKey=\{YOUR\_API\_KEY\}

Response

The response to the request contains:

  • station opening hours
  • station address details
  • fuel price information

This is the example response in JSON format:

{
    "id": "276u33d9-7642e89e6c884fe697aee09fa91e21be",
    "modified": "2026-06-10T04:30:00.000Z",
    "timeZone": "Europe/Berlin",
    "name": "ARAL",
    "brand": "Aral",
    "brandIcon": "https://fuel.hereapi.com/static/brand/icon/48/generic.png",
    "open24x7": true,
    "address": {
        "label": "Sonnenallee 113, Berlin, 12045",
        "countryCode": "DEU",
        "state": "Berlin",
        "city": "Berlin",
        "district": "Neukölln",
        "street": "Sonnenallee",
        "postalCode": "12045",
        "houseNumber": "113"
    },
    "contacts": {
        "phones": [
            {
                "value": "+49306811313",
                "label": "PHONE"
            }
        ],
        "faxes": [
            {
                "value": "+49306814070",
                "label": "FAX"
            }
        ]
    },
    "position": {
        "lat": 52.48148,
        "lng": 13.44137
    },
    "access": {
        "lat": 52.48133,
        "lng": 13.44099
    },
    "prices": [
        {
            "price": 2.059,
            "fuelType": "55",
            "unit": "l",
            "currency": "EUR",
            "modified": "2026-06-11T05:40:36.000Z"
        },
        {
            "price": 1.789,
            "fuelType": "1",
            "unit": "l",
            "currency": "EUR",
            "modified": "2026-06-11T07:07:06.000Z"
        },
        {
            "price": 2.179,
            "fuelType": "40",
            "unit": "l",
            "currency": "EUR",
            "modified": "2026-06-11T05:40:36.000Z"
        },
        {
            "price": 1.869,
            "fuelType": "53",
            "unit": "l",
            "currency": "EUR",
            "modified": "2026-06-11T07:07:06.000Z"
        },
        {
            "price": 1.809,
            "fuelType": "54",
            "unit": "l",
            "currency": "EUR",
            "modified": "2026-06-11T07:07:06.000Z"
        }
    ],
    "stationDetails": {
        "openingHours": {
            "regularSchedule": [
                {
                    "days": [
                        "mo",
                        "tu",
                        "we",
                        "th",
                        "fr",
                        "sa",
                        "su"
                    ],
                    "periods": [
                        {
                            "from": "00:00:00",
                            "to": "24:00:00"
                        }
                    ]
                }
            ]
        },
        "restrictedAccess": false,
        "accessibilities": [
            "Suitable for cars",
            "Suitable for medium trucks"
        ]
    }
}

For more details about responses to this type of request refer to Fuel Stations Response.


Did this page help you?