# Polish Vehicle Auction Scraper - Licytacje Komornicze Pojazdów (`inn4u/polish-vehicle-auction-scraper`) Actor

Scrape vehicle auctions from Polish government sources (IAS/KAS tax authorities, bailiff courts). Get make, model, VIN, price, mileage, registration for cars, trucks, motorcycles at government auctions across all 16 Polish voivodeships.

- **URL**: https://apify.com/inn4u/polish-vehicle-auction-scraper.md
- **Developed by:** [Inn4U](https://apify.com/inn4u) (community)
- **Categories:** E-commerce, Business
- **Stats:** 6 total users, 0 monthly users, 100.0% runs succeeded, 0 bookmarks
- **User rating**: No ratings yet

## Pricing

from $50.00 / 1,000 cost per offers

This Actor is paid per event. You are not charged for the Apify platform usage, but only a fixed price for specific events.

Learn more: https://docs.apify.com/platform/actors/running/actors-in-store#pay-per-event

## What's an Apify Actor?

Actors are web data automations that power AI and operations. They run on the Apify platform to scrape websites, process data, connect APIs, and automate workflows.
In Batch mode, an Actor accepts a well-defined JSON input, performs an action which can take anything from a few seconds to a few hours,
and optionally produces a well-defined JSON output, datasets with results, or files in key-value store.
In Standby mode, an Actor provides a web server which can be used as a website, API, or an MCP server.
Actors are written with capital "A".

## How to integrate an Actor?

If asked about integration, you help developers integrate Actors into their projects.
You adapt to their stack and deliver integrations that are safe, well-documented, and production-ready.
The best way to integrate Actors is as follows.

- **AI agents and MCP clients** — the [Apify MCP server](https://docs.apify.com/integrations/mcp.md) at `https://mcp.apify.com` (remote, streamable HTTP, OAuth on first use).
- **Agentic workflows and local Actor development** — [Agent Skills](https://apify.com/.well-known/agent-skills/index.json) with the [Apify CLI](https://docs.apify.com/cli/docs.md): `npm install -g apify-cli`, then `apify login`.
- **JavaScript/TypeScript projects** — the official [JS/TS client](https://docs.apify.com/api/client/js/docs.md): `npm install apify-client`.
- **Python projects** — the official [Python client](https://docs.apify.com/api/client/python/docs.md): `pip install apify-client`.
- **Any other language** — the [REST API](https://docs.apify.com/api/v2.md).

For usage examples, see the [API](#api) section below.

For more details, see Apify documentation as [Markdown index](https://docs.apify.com/llms.txt) and [Markdown full-text](https://docs.apify.com/llms-full.txt).

# README

## Polish Vehicle Auction Scraper - Licytacje Komornicze Pojazdów

Find vehicles at **Polish government auctions** — below market price. Data from **402 sources**: 16 Tax Administration Chambers (IAS) + 367 individual Tax Offices (US) covering all 16 voivodeships.

Znajdź pojazdy na **licytacjach skarbowych** — poniżej ceny rynkowej. Dane z **402 źródeł**: 16 Izb Administracji Skarbowej + 367 Urzędów Skarbowych pokrywających wszystkie 16 województw.

### Coverage / Pokrycie

**402 data sources across all 16 Polish voivodeships:**

| Region | Sources | Platform |
| --- | --- | --- |
| mazowieckie | 39 (IAS + 38 US) | kas.gov.pl |
| małopolskie | 20 (IAS + 19 US) | kas.gov.pl |
| śląskie | 34 (IAS + 33 US) | gov.pl |
| dolnośląskie | 35 (IAS + 34 US) | gov.pl |
| wielkopolskie | 31 (IAS + 30 US) | kas.gov.pl |
| łódzkie | 30 (IAS + 29 US) | gov.pl |
| podkarpackie | 24 (IAS + 23 US) | gov.pl |
| pomorskie | 18 (IAS + 17 US) | kas.gov.pl |
| lubelskie | 19 (IAS + 18 US) | kas.gov.pl |
| kujawsko-pomorskie | 19 (IAS + 18 US) | kas.gov.pl |
| warmińsko-mazurskie | 16 (IAS + 15 US) | kas.gov.pl |
| zachodniopomorskie | 17 (IAS + 16 US) | kas.gov.pl |
| podlaskie | 16 (IAS + 15 US) | kas.gov.pl |
| świętokrzyskie | 16 (IAS + 15 US) | gov.pl |
| lubuskie | 12 (IAS + 11 US) | kas.gov.pl |
| opolskie | 12 (IAS + 11 US) | kas.gov.pl |

### What you get / Co otrzymujesz

Each result contains:

| Field | Example | Description |
| --- | --- | --- |
| `vehicleMake` | Ford | Marka pojazdu |
| `vehicleModel` | Mondeo | Model |
| `vehicleYear` | 2006 | Rok produkcji |
| `vehicleVin` | WF05XXGBB56Y47246 | Numer VIN |
| `vehicleRegistration` | WOT54553 | Nr rejestracyjny |
| `vehicleMileage` | 284000 km | Przebieg |
| `vehicleFuel` | diesel | Rodzaj paliwa |
| `startingPrice` | 3750 | Cena wywołania (PLN) |
| `estimatedValue` | 5000 | Wartość szacunkowa (PLN) |
| `auctionDate` | 2026-04-14 | Data licytacji |
| `auctionType` | pierwsza | Typ: pierwsza / druga / wolna ręka |
| `province` | mazowieckie | Województwo |
| `organizerOffice` | Urząd Skarbowy w Otwocku | Organizator |
| `url` | https://... | Link do ogłoszenia |

### Input parameters / Parametry

| Parameter | Type | Default | Description |
| --- | --- | --- | --- |
| `region` | string | all | Województwo (e.g. `mazowieckie`, `slaskie`) |
| `maxItems` | number | 50 | Max results (1-500) |
| `priceMin` | number | — | Min starting price in PLN |
| `priceMax` | number | — | Max starting price in PLN |
| `make` | string | — | Filter by brand (e.g. `Toyota`, `BMW`) |

### Example output

```json
{
    "vehicleMake": "Ford",
    "vehicleModel": "Mondeo",
    "vehicleYear": 2006,
    "vehicleVin": "WF05XXGBB56Y47246",
    "vehicleRegistration": "WOT54553",
    "vehicleMileage": "284000 km",
    "startingPrice": 3750,
    "estimatedValue": 5000,
    "auctionDate": "2026-04-14",
    "auctionType": "pierwsza",
    "province": "mazowieckie",
    "organizerOffice": "Urząd Skarbowy w Otwocku",
    "url": "https://www.mazowieckie.kas.gov.pl/...",
    "clientCategory": "pojazdy",
    "currency": "PLN"
}
```

### Features / Funkcje

- **402 sources** — every Tax Office in Poland, updated daily at 18:00 CET
- **PDF parsing** — extracts data from PDF auction announcements (PyMuPDF)
- **Multi-vehicle PDFs** — detects and splits PDFs with multiple vehicles
- **Brand recognition** — 80+ brands with fuzzy matching (fixes typos)
- **Delta detection** — only new/changed auctions, no duplicates
- **Quality scoring** — each listing scored 0-100 based on data completeness
- **Circuit breaker** — auto-disables broken sources, re-enables after 24h
- **Vehicle history** — enriched from historiapojazdu.gov.pl (when registration date available)

### Use cases

- **Car dealers** — find vehicles below market price at government auctions
- **Investors** — monitor auction prices and trends across Poland
- **Alert services** — notify users when specific makes/models appear
- **Data analytics** — vehicle pricing datasets from government sources

### Pricing

- **$0.05 per vehicle** (Cost per offer)
- Data updated daily (Mon-Fri 18:00 CET)
- Results sorted by data quality (most complete first)

### Data sources

All data comes from official Polish government websites:

- 16 Izby Administracji Skarbowej (Tax Administration Chambers)
- 367 Urzędy Skarbowe (individual Tax Offices) — kas.gov.pl and gov.pl
- PDF auction announcements parsed automatically

# Actor input Schema

## `region` (type: `string`):

Filter by Polish voivodeship. Leave empty for all regions.

## `maxItems` (type: `integer`):

Maximum number of vehicle listings to return

## `priceMin` (type: `integer`):

Minimum starting price in PLN

## `priceMax` (type: `integer`):

Maximum starting price in PLN

## `make` (type: `string`):

Filter by brand (e.g. Toyota, BMW, Volkswagen)

## Actor input object example

```json
{
  "region": "",
  "maxItems": 50
}
```

# API

You can run this Actor programmatically using our API. Below are code examples in JavaScript, Python, and CLI, as well as the OpenAPI specification and MCP server setup.

## JavaScript example

```javascript
import { ApifyClient } from 'apify-client';

// Initialize the ApifyClient with your Apify API token
// Replace the '<YOUR_API_TOKEN>' with your token
const client = new ApifyClient({
    token: '<YOUR_API_TOKEN>',
});

// Prepare Actor input
const input = {};

// Run the Actor and wait for it to finish
const run = await client.actor("inn4u/polish-vehicle-auction-scraper").call(input);

// Fetch and print Actor results from the run's dataset (if any)
console.log('Results from dataset');
console.log(`💾 Check your data here: https://console.apify.com/storage/datasets/${run.defaultDatasetId}`);
const { items } = await client.dataset(run.defaultDatasetId).listItems();
items.forEach((item) => {
    console.dir(item);
});

// 📚 Want to learn more 📖? Go to → https://docs.apify.com/api/client/js/docs

```

## Python example

```python
from apify_client import ApifyClient

# Initialize the ApifyClient with your Apify API token
# Replace '<YOUR_API_TOKEN>' with your token.
client = ApifyClient("<YOUR_API_TOKEN>")

# Prepare the Actor input
run_input = {}

# Run the Actor and wait for it to finish
run = client.actor("inn4u/polish-vehicle-auction-scraper").call(run_input=run_input)

# Fetch and print Actor results from the run's dataset (if there are any)
print("💾 Check your data here: https://console.apify.com/storage/datasets/" + run["defaultDatasetId"])
for item in client.dataset(run["defaultDatasetId"]).iterate_items():
    print(item)

# 📚 Want to learn more 📖? Go to → https://docs.apify.com/api/client/python/docs/quick-start

```

## CLI example

```bash
echo '{}' |
apify call inn4u/polish-vehicle-auction-scraper --silent --output-dataset

```

## MCP server setup

```json
{
    "mcpServers": {
        "apify": {
            "command": "npx",
            "args": [
                "mcp-remote",
                "https://mcp.apify.com/?tools=inn4u/polish-vehicle-auction-scraper",
                "--header",
                "Authorization: Bearer <YOUR_API_TOKEN>"
            ]
        }
    }
}

```

## OpenAPI specification

Download the OpenAPI definition: https://api.apify.com/v2/actors/p2ALKbh2kZ4aoeERi/builds/ZsBILsafhNBztcM61/openapi.json
