PetrolMate (AU + NZ)
SkillSearchQuery live AU & NZ fuel prices from petrolmate.com.au's public API. Search stations near any AU or NZ location, filter by supported fuel type, sort by price or distance. Covers AU state FuelCheck data and NZ Gaspy data. No API key or authentication required.
Available today. Use it from your connected AI after setup.
No other account needed.
Connect ahel once, and every AI you use reads what you have installed.
Then ask your AI: use the PetrolMate (AU + NZ) skill
What this skill tells your AI
The instructions your AI receives, as published by thecolab-ai/.skills in skills/petrolmate-nz-au/SKILL.md and read by ahel’s review.
Goal
Query live AU and NZ fuel prices from petrolmate.com.au's public API through a lightweight CLI. Covers Australian state fuel data (NSW/QLD/VIC/SA/TAS FuelCheck) and NZ crowd-sourced data (Gaspy). No authentication required.
Use this when
- A user asks for current fuel prices at a specific AU or NZ location
- A user wants the cheapest fuel type near them ("cheapest 95 near St Heliers")
- A user wants to compare fuel prices across stations in an area
- A user asks "where's the cheapest diesel near me?"
- A user wants to filter by brand (Shell, BP, Z, NPD, etc.)
- The Gaspy authenticated API or PetrolSpy is unavailable, or the user wants official FuelCheck data for AU
Do not use this for
- National average prices (use
gaspy-nz summaryfor NZ, no AU equivalent via PetrolMate) - Fuel supply, vessel tracking, or geopolitical risk (use
fuelclock-nz) - Historical price trends or charts
- User-reported Gaspy station search (use
gaspy-nzstations orpetrolspy-nz)
Preferred workflow
- Run
search --location "st heliers" --fuel PULP95for a location-based price comparison - Use
--radius 10to widen the search,--radius 3to tighten - Use
--brand Shellto filter to a specific brand - Use
--sort distancewhen you care about proximity over price - Use
--jsonfor machine-readable output or piping to jq - Note that not all fuel types are available in all regions — NSW FuelCheck only reports ULP, E10, LPG, E85
CLI
Run with:
python3 skills/petrolmate-nz-au/scripts/cli.py <command> [flags]
search
Search for stations near a location.
# By named location (from built-in lookup or PetrolMate geocoding)
python3 skills/petrolmate-nz-au/scripts/cli.py search --location "st heliers"
# Filter by fuel type, sorted cheapest first
python3 skills/petrolmate-nz-au/scripts/cli.py search --location "st heliers" --fuel PULP95
# Wider radius, filter by brand
python3 skills/petrolmate-nz-au/scripts/cli.py search --location "auckland" --fuel DIESEL --radius 10 --brand Z
# Custom coordinates
python3 skills/petrolmate-nz-au/scripts/cli.py search --lat -33.86 --lon 151.20 --fuel PULP98 --json
# IP-based location
python3 skills/petrolmate-nz-au/scripts/cli.py search --geoip --fuel ULP --radius 3
# Australian address (PetrolMate geocodes it)
python3 skills/petrolmate-nz-au/scripts/cli.py search --location "Brisbane QLD" --fuel DIESEL
locations
List built-in location names:
python3 skills/petrolmate-nz-au/scripts/cli.py locations
fuel-types
List available fuel types:
python3 skills/petrolmate-nz-au/scripts/cli.py fuel-types
Fuel Type Codes
| Code | Description |
|---|---|
| ULP | Unleaded 91 |
| E10 | E10 (Ethanol 10%) |
| PULP95 | Premium 95 |
| PULP98 | Premium 98 |
| PREMIUM | Premium (95+98) |
| DIESEL | Diesel |
| PDIESEL | Premium Diesel |
| DIESEL_PREMIUM | Premium Diesel (alias for PDIESEL) |
| LPG | LPG/Autogas |
| E85 | E85 (Ethanol 85%) |
| B20 | Biodiesel B20 |
Resources
- CLI entrypoint:
scripts/cli.py - API notes and data sources:
references/api-notes.md
Notes
- PetrolMate aggregates official (AU) and crowd-sourced (NZ) data — AU prices are typically more reliable
hours_oldshows data freshness; NZ Gaspy data can be 1–2 days old- Prices are displayed in cents (divide by 100 for dollars)
--locationfirst checks the built-in lookup table, then falls back to PetrolMate geocoding- No third-party dependencies — Python stdlib only (
urllib+json) - Fuel-type coverage varies by region and station -- not all types are available everywhere
Signals
- GitHub stars
- 25
- Forks
- 6
- Last commit
- Sep 2026
Advanced
- Catalog kind
- skill
- Gateway key
petrolmate-nz-au- Source
- github.com/thecolab-ai/.skills