Why Use Our Widget?

Live Prices

Data updated hourly from 10,000+ stations across Australia

Easy Integration

Just 2 lines of code to add to any website

All States

Coverage across NSW, VIC, QLD, WA, SA, TAS, NT, ACT

No Registration

Start using immediately with no API keys required

Live Demo

This is what the widget looks like when embedded on your site:

Quick Start

Copy and paste this code into your HTML where you want the widget to appear:

<!-- Petrolmate Fuel Price Widget --> <div id="petrolmate-widget" data-state="VIC"></div> <script src="https://petrolmate.com.au/js/petrolmate-widget.js"></script>

Configuration Options

Customise the widget using data attributes:

Attribute Values Description
data-state NSW, VIC, QLD, WA, SA, TAS, NT, ACT Australian state (default: VIC)
data-fuel ULP, E10, DIESEL, PULP95, PULP98, LPG, all Fuel type filter (default: all)
data-theme light, dark, auto Widget theme (default: auto - matches system)

Examples

NSW Unleaded only:

<div id="petrolmate-widget" data-state="NSW" data-fuel="ULP"></div>

Queensland all fuel types:

<div id="petrolmate-widget" data-state="QLD"></div>

Western Australia Diesel:

<div id="petrolmate-widget" data-state="WA" data-fuel="DIESEL"></div>

Multiple Widgets

Add multiple widgets on the same page using the class instead of ID:

<!-- Multiple widgets with different states --> <div class="petrolmate-widget" data-state="NSW"></div> <div class="petrolmate-widget" data-state="VIC"></div> <div class="petrolmate-widget" data-state="QLD"></div> <script src="https://petrolmate.com.au/js/petrolmate-widget.js"></script>

API Access

Need direct API access for advanced integrations?

Get State Prices

// GET request - no authentication required https://petrolmate.com.au/api/widget/prices?state=VIC&fuel=all // Response { "success": true, "state": "VIC", "prices": [ {"fuel_type": "ULP", "avg_price": "175.5", "min_price": "159.9", "max_price": "189.9"}, {"fuel_type": "E10", "avg_price": "171.2", ...} ], "updated": "2025-01-15T10:30:00" }

CORS enabled - the API can be called from any domain.

Ready to Add Fuel Prices to Your Site?

Copy the code above and paste it into your HTML.

Open Petrolmate

Support