# Nettiauto Scraper (`rastriq/nettiauto-scraper`) Actor

- **URL**: https://apify.com/rastriq/nettiauto-scraper.md
- **Developed by:** [Rastriq — Structured data from the world](https://apify.com/rastriq) (community)
- **Categories:** E-commerce, Lead generation
- **Stats:** 2 total users, 1 monthly users, 100.0% runs succeeded, 0 bookmarks
- **User rating**: No ratings yet

## Pricing

from $1.50 / 1,000 results

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

## Nettiauto Scraper — Extract Car Listings from Finland's Largest Marketplace

**Nettiauto Scraper** extracts structured used car data from [nettiauto.com](https://www.nettiauto.com/vaihtoautot), Finland's leading automotive marketplace. Get price, mileage, year, fuel type, gearbox, location, and images from ~79,000 active listings in a single run.

### What is Nettiauto Scraper?

Finding competitive pricing data across the Finnish used car market typically means hours of manual browsing and copy-pasting from Nettiauto.com. **Nettiauto Scraper** automates that entire process. It crawls listing pages, extracts structured data from every vehicle ad using JSON-LD parsing, and delivers clean, analysis-ready datasets in JSON, CSV, or Excel.

Nettiauto.com is Finland's largest car marketplace with approximately 79,000 active listings at any given time. It covers every major brand — from Toyota and Volkswagen to Tesla and BMW — including both private sellers and professional dealers across all Finnish regions. Whether you need market intelligence, pricing benchmarks, or data for a valuation model, Nettiauto Scraper gives you reliable, up-to-date data without the manual effort.

### What data does Nettiauto Scraper extract?

Each listing returns up to 18 structured fields:

| Field | Description |
|---|---|
| 🆔 `id` | Nettiauto listing ID |
| 📝 `title` | Full listing title (e.g. "Toyota Corolla 1.8 Hybrid (2022)") |
| 🏭 `make` | Car manufacturer/brand |
| 🚗 `model` | Model name |
| 📅 `year` | Registration year |
| 🛣️ `km` | Mileage in kilometres |
| 🐎 `hp` | Engine horsepower |
| 💰 `price` | Asking price |
| 💱 `currency` | Currency code (always EUR) |
| ⛽ `fuel_type` | Sähkö (EV), Diesel, Bensiini, Hybridi |
| ⚙️ `gearbox` | Automaatti / Manuaali |
| 🏙️ `city` | Seller city |
| 📍 `region` | Region in Finland (e.g. Uusimaa, Pirkanmaa) |
| 🏢 `is_professional` | `true` for dealers, `false` for private sellers |
| 🖼️ `img_url` | Primary listing image URL |
| 🔗 `url` | Direct link to the listing on Nettiauto |
| 🌐 `source` | Always `nettiauto` |
| ⏱️ `scraped_at` | ISO 8601 extraction timestamp |

### How to use Nettiauto Scraper

Follow these steps to start extracting car listings from Nettiauto:

1. **Go to the Actor page** — Navigate to the [Nettiauto Scraper](https://apify.com/rastriq/nettiauto-scraper) page on Apify Store.
2. **Click "Start"** — This opens the Actor's input configuration screen in Apify Console.
3. **Configure your inputs** — Set a specific `make` (e.g. `toyota`) to filter by brand, or leave it empty to scrape all makes. Adjust `maxPages` and `maxItems` to control volume.
4. **Set proxy (optional)** — Under the Advanced section, configure proxy settings. Residential proxies from Finland are recommended for the best success rate.
5. **Click "Start"** — The Actor begins crawling Nettiauto.com and extracting listings. A typical run of 1,000 listings takes 2–4 minutes.
6. **Download results** — Once the run finishes, go to the **Output** tab. Export your data as **JSON**, **CSV**, or **Excel** — ready for spreadsheets, BI tools, or your own pipeline.

### Input parameters

| Parameter | Type | Description | Default |
|---|---|---|---|
| `make` | string | Brand name as it appears in the URL (e.g. `toyota`, `volkswagen`, `bmw`). Leave empty to scrape all brands. | — |
| `maxPages` | integer | Maximum number of search result pages to crawl. Each page contains ~25 listings. | `3` |
| `maxItems` | integer | Hard cap on the total number of listings extracted. | `100` |
| `proxyConfiguration` | object | Proxy settings. Residential proxies from Finland are recommended. | Apify default |

### Output example

Each listing is returned as a structured JSON object:

```json
{
  "id": "abc123",
  "title": "Toyota Corolla 1.8 Hybrid (2022)",
  "make": "Toyota",
  "model": "Corolla",
  "year": 2022,
  "km": 45000,
  "hp": 122,
  "price": 27900,
  "currency": "EUR",
  "fuel_type": "Hybridi",
  "gearbox": "Automaatti",
  "city": "Helsinki",
  "region": "Uusimaa",
  "is_professional": true,
  "img_url": "https://img.nettiauto.com/toyota/corolla/large_12345.jpg",
  "url": "https://www.nettiauto.com/toyota/corolla/12345",
  "source": "nettiauto",
  "scraped_at": "2026-07-01T10:30:00Z"
}
```

### Pricing

Nettiauto Scraper uses a pay-per-event pricing model:

- **Platform fee**: $0.005 per start
- **Per result**: $0.0015 per listing extracted
- **Example**: 1,000 listings cost approximately **$1.50**

This makes Nettiauto Scraper one of the most affordable ways to collect structured automotive data from the Finnish market at scale.

### Use cases

- **Price monitoring** — Track used car prices across Finland for competitive benchmarking
- **EV and hybrid market analysis** — Monitor the adoption of electric and hybrid vehicles in the Finnish market
- **Dealer vs. private seller analysis** — Compare pricing strategies between professional dealers and private sellers
- **Regional market intelligence** — Analyze pricing and inventory differences across Finnish regions
- **Valuation models** — Feed structured listing data into automated car valuation tools and dashboards

### Related scrapers

Looking for car data from other European markets? Check out these scrapers by Rastriq:

- 🇵🇱 [OtoMoto Scraper](https://apify.com/rastriq/otomoto-scraper) — Poland's largest car marketplace
- 🇷🇸 [Polovni Automobili Scraper](https://apify.com/rastriq/polovni-automobili-scraper) — Serbia's leading auto marketplace
- 🇪🇸 [Coches.net Scraper](https://apify.com/rastriq/coches-net-scraper) — Spain's top car marketplace

### FAQ

#### Is scraping Nettiauto legal?

Nettiauto Scraper extracts only publicly available listing data that any visitor can see without logging in. The scraper respects `robots.txt` and uses reasonable request rates. As with any scraping tool, users are responsible for complying with applicable laws and the website's terms of service in their jurisdiction.

#### Does Nettiauto Scraper require login?

No. Nettiauto Scraper only accesses publicly visible listing pages. No account or login credentials are needed.

#### How many results can I get?

Nettiauto.com typically has around 79,000 active listings. You can scrape all of them by setting `maxItems` to a high value and removing the `maxPages` limit, or use filters to target specific brands and control costs.

***

### 🇪🇸 Nettiauto Scraper en español

**Nettiauto Scraper** extrae datos estructurados de anuncios de coches de [nettiauto.com](https://www.nettiauto.com/vaihtoautot), el mayor marketplace de coches usados de Finlandia. Obtiene precio, kilometraje, año, tipo de combustible, cambio, ubicación e imágenes de ~79.000 anuncios activos. Los resultados se exportan en JSON, CSV o Excel, listos para análisis de mercado, benchmarking de precios o modelos de valoración. Consulta los scrapers relacionados de Rastriq para mercados de coches en Polonia, Serbia y España.

***

Built by [Rastriq](https://rastriq.io) — structured data from the world's marketplaces.

# Actor input Schema

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

Brand name as in URL (e.g. toyota)

## `maxPages` (type: `integer`):

Max search pages to crawl.

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

Hard cap on listings.

## `proxyConfiguration` (type: `object`):

Proxy configuration.

## Actor input object example

```json
{
  "maxPages": 3,
  "maxItems": 100
}
```

# Actor output Schema

## `results` (type: `string`):

All scraped car listings. Each item contains make, model, year, mileage, price (EUR), fuel type, gearbox and image URL.

# 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 = {
    "maxPages": 3,
    "maxItems": 100
};

// Run the Actor and wait for it to finish
const run = await client.actor("rastriq/nettiauto-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 = {
    "maxPages": 3,
    "maxItems": 100,
}

# Run the Actor and wait for it to finish
run = client.actor("rastriq/nettiauto-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 '{
  "maxPages": 3,
  "maxItems": 100
}' |
apify call rastriq/nettiauto-scraper --silent --output-dataset

```

## MCP server setup

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

```

## OpenAPI specification

Download the OpenAPI definition: https://api.apify.com/v2/actors/pBnXcDs4eJKfnfXUG/builds/1lxMcc75p2mpuXfX6/openapi.json
