get_station_details
gasbuddy.comGets a GasBuddy station record from https://www.gasbuddy.com by station ID. Returns address, coordinates, amenities, brands, fuel types, all current grade prices, operating details, ratings, and a page of customer reviews.
Playground
Runs on Notte and spends your workspace credits — what comes back is the live response, not a sample.
What is get_station_details?
Gets a GasBuddy station record from https://www.gasbuddy.com by station ID. Returns address, coordinates, amenities, brands, fuel types, all current grade prices, operating details, ratings, and a page of customer reviews. It runs on Notte's browser infrastructure and returns structured JSON, so you can call it like any other API — pass station_id, reviews_page and get the result back without maintaining a scraper.
Response
{
"station": {},
"requested_station_id": "<string>"
}Call it
curl --location 'https://us-prod.notte.cc/functions/0e2a3456-9baa-4a46-b839-88712996e390/runs/start' \
--header 'x-notte-api-key: YOUR_API_KEY' \
--header 'Content-Type: application/json' \
--header 'Authorization: Bearer YOUR_API_KEY' \
--data '{
"function_id": "0e2a3456-9baa-4a46-b839-88712996e390",
"variables": {
"station_id": "28422",
"reviews_page": 1
}
}'Ask an agent
Paste this into Claude Code, Cursor or any MCP client to have an agent call this function for you.
Use the Anything API MCP server (https://anything.notte.cc/mcp). Call run(function_id="0e2a3456-9baa-4a46-b839-88712996e390") — the "get_station_details" function, which gets a GasBuddy station record from https://www.gasbuddy.com by station ID. Returns address, coordinates, amenities, brands, fuel types, all current grade prices, operating details, ratings, and a page of customer reviews.. It takes station_id (str), reviews_page (int). Return the result as structured JSON.