Discover/Autocentrum API
live

Autocentrum APIautocentrum.pl

Find current fuel prices at gas stations across Poland by searching by city, station name, or brand. Compare prices in real-time to locate the cheapest fuel options near you with easy navigation through paginated results.

Endpoint health
monitored
search_stations
Checks pendingself-healing
Endpoints
1
Updated
3h ago
Try it
Page number for pagination (1-based).
Search term matching city name, station brand, or street address (e.g. 'Warszawa', 'Shell Kraków', 'Orlen').
api.parse.bot/scraper/10adcad3-b712-4aa5-8ee3-54f199c7da0d/<endpoint>
Ready to send
Fill in the parameters and hit sign in to send to see live response data here.
Call it over HTTPgrab a free API key at signup
curl -X GET 'https://api.parse.bot/scraper/10adcad3-b712-4aa5-8ee3-54f199c7da0d/search_stations?page=1&query=Warszawa' \
  -H 'X-API-Key: $PARSE_API_KEY'
Python SDK · recommended

Typed, relational, agent-ready

A generated client with real types, enums, and the links between objects — the structure a flat JSON response can't carry. Autocompletes in your editor and reads cleanly to coding agents.

  • Fully typed · autocompletes
  • Objects link to objects
  • Typed errors & pagination

Typed Python client. Set up the SDK in your uv project, then pull this API’s typed client:

uv add parse-sdk
uv run parse init
uv run parse add --marketplace autocentrum-pl-api

uv run parse add --marketplace pulls a pinned snapshot of this canonical API — it won’t change underneath you. To customize it, subscribe and swap to your own copy.


"""Walkthrough: AutoCentrum fuel prices SDK — search stations in Poland."""
from parse_apis.autocentrum_pl_api import AutoCentrum, ParseError

client = AutoCentrum()

# Search for fuel stations in Warsaw, capped to 5 results
for price in client.fuel_prices.search(query="Warszawa", limit=5):
    print(f"{price.brand} {price.address} — {price.fuel_type}: {price.price} PLN ({price.updated_at})")

# Drill into a specific brand in another city
result = client.fuel_prices.search(query="Shell Kraków", limit=1).first()
if result:
    print(f"\nFirst Shell in Kraków: {result.station_name}, {result.city}")
    print(f"  {result.fuel_type}: {result.price} PLN (updated: {result.updated_at})")

# Handle errors gracefully
try:
    for item in client.fuel_prices.search(query="Orlen Gdańsk", limit=3):
        print(f"{item.station_name} — {item.fuel_type}: {item.price} PLN")
except ParseError as exc:
    print(f"Error searching stations: {exc}")

print("\nexercised: fuel_prices.search (by city / by brand+city / error handling)")
All endpoints · 1 totalmissing one? ·

Search fuel stations in Poland by city, station name, brand, or address. Returns a flat list of fuel price records — one entry per fuel type per station — ordered by most recently updated. Each record includes station name, brand, street address, city, fuel type, price in PLN, and a relative timestamp of the last price update. Results are paginated with 15 stations per page.

Input
ParamTypeDescription
pageintegerPage number for pagination (1-based).
queryrequiredstringSearch term matching city name, station brand, or street address (e.g. 'Warszawa', 'Shell Kraków', 'Orlen').
Response
{
  "type": "object",
  "fields": {
    "page": "integer",
    "query": "string",
    "results": "array of fuel price records with station_name, brand, address, city, fuel_type, price, updated_at",
    "total_pages": "integer"
  },
  "sample": {
    "page": 1,
    "query": "Warszawa",
    "results": [
      {
        "city": "Warszawa",
        "brand": "BP",
        "price": 6.64,
        "address": "Modlińska 54",
        "fuel_type": "ON",
        "updated_at": "dzisiaj",
        "station_name": "BP Modlińska 54"
      },
      {
        "city": "Warszawa",
        "brand": "Shell",
        "price": 6.79,
        "address": "Wał Miedzeszyński 219",
        "fuel_type": "FuelSave 95",
        "updated_at": "wczoraj",
        "station_name": "Shell Wał Miedzeszyński 219"
      }
    ],
    "total_pages": 16
  }
}

About the Autocentrum API

The Autocentrum API on Parse exposes 1 endpoint for the publicly available data on autocentrum.pl. Calls return JSON over HTTPS and are billed per successful response.

Pin a release with the API-Snapshot-Version header so canonical updates don't silently change your contract.

Related APIs
carfax.com API
carfax.com API
gasprices.aaa.com API
Access national, state, and metro-level gas prices from AAA in real time. Compare fuel costs across regions, view historical price trends, check EV charging rates, and browse the latest AAA fuel market news.
cars.com API
Search for vehicles on Cars.com using filters like price, make, and model, then get detailed specifications and dealer inventory information for any listing you're interested in. Access comprehensive vehicle details including pricing, features, and dealer contact information all in one place.
carmax.com API
Search CarMax's inventory to find vehicles by make, model, price, and features, then access detailed specs, photos, and pricing for any car that interests you. Locate nearby CarMax stores, view their hours and contact information, and browse the specific inventory available at each location.
bringatrailer.com API
Search live and historical Bring a Trailer auctions to find pricing trends, model comparisons, and detailed listing information for classic and collectible vehicles. Track auction results, compare price trends across models, and browse the complete directory of makes and models available on the platform.
autotrader.com API
Search Autotrader.com vehicle listings and access detailed information like pricing, specifications, and VIN data with flexible filtering options. Browse all available vehicle makes and models to refine your search across thousands of listings.
autoscout24.com API
Search millions of car listings on AutoScout24 and filter results by make, model, price, mileage, and other vehicle specifications. Explore vehicle taxonomy and aggregated data to discover market trends and compare automotive options across Europe's largest car marketplace.
otomoto.pl API
Browse and retrieve vehicle listings from otomoto.pl, Poland's leading automotive marketplace. Search by make, model, and category, fetch full listing details and photos, or paginate through bulk results.