Marketplace
No threads yet
Live

get_gas_station_details

fuelo.net

Retrieves current user-reported fuel prices and complete station details for a Fuelo station ID from https://pl.fuelo.net. Returns station identity, brand, full address, coordinates, contact and amenity data, plus per-liter PLN prices and submission timestamps.

Parameters1
Runs9
Updated10d ago
Operational9 runs · 100% succeeded
30 days agotoday

Playground

Runs on Notte and spends your workspace credits — what comes back is the live response, not a sample.

What is get_gas_station_details?

Retrieves current user-reported fuel prices and complete station details for a Fuelo station ID from https://pl.fuelo.net. Returns station identity, brand, full address, coordinates, contact and amenity data, plus per-liter PLN prices and submission timestamps. It runs on Notte's browser infrastructure and returns structured JSON, so you can call it like any other API — pass station_id and get the result back without maintaining a scraper.

Response

{
  "station": {},
  "fuel_prices": [
    {
      "currency": "<string>",
      "fuel_type": "<string>",
      "display_unit": "<string>",
      "submitted_at": "<string>",
      "fuel_icon_url": "<string>",
      "user_reported": true,
      "price_per_liter_pln": 0
    }
  ],
  "price_report": {}
}

Call it

curl --location 'https://us-prod.notte.cc/functions/16ccb68b-8883-44fc-b9e0-f14bcea38315/runs/start' \
--header 'x-notte-api-key: YOUR_API_KEY' \
--header 'Content-Type: application/json' \
--header 'Authorization: Bearer YOUR_API_KEY' \
--data '{
    "function_id": "16ccb68b-8883-44fc-b9e0-f14bcea38315",
    "variables": {
        "station_id": 88867
    }
}'

Ask an agent

Paste this into Claude Code, Cursor or any MCP client to have an agent call this function for you.

prompt
Use the Anything API MCP server (https://anything.notte.cc/mcp).

Call run(function_id="16ccb68b-8883-44fc-b9e0-f14bcea38315") — the "get_gas_station_details" function, which retrieves current user-reported fuel prices and complete station details for a Fuelo station ID from https://pl.fuelo.net. Returns station identity, brand, full address, coordinates, contact and amenity data, plus per-liter PLN prices and submission timestamps..

It takes station_id (int). Return the result as structured JSON.