# 🇫🇮 Tori.fi Finland Classifieds Scraper (`hipersoft/tori-scraper`) Actor

Scrape for-sale listings from Tori.fi, Finland's largest classifieds marketplace: title, price, condition, brand, image and listing URL. Search any keyword or paste a Tori.fi URL and export one clean row per listing as JSON, CSV or Excel.

- **URL**: https://apify.com/hipersoft/tori-scraper.md
- **Developed by:** [hiper soft](https://apify.com/hipersoft) (community)
- **Categories:** E-commerce
- **Stats:** 2 total users, 1 monthly users, 100.0% runs succeeded, 0 bookmarks
- **User rating**: No ratings yet

## Pricing

from $0.0015 / listing scraped

This Actor is paid per event. You are not charged for the Apify platform usage, but only a fixed price for specific events.
Since this Actor supports Apify Store discounts, the price gets lower the higher subscription plan you have.

Learn more: https://docs.apify.com/actors/running/actors-in-store.md#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

## 🇫🇮 Tori.fi Finland Classifieds Scraper

Scrape for-sale listings from **Tori.fi**, Finland's largest classifieds marketplace, into clean, structured JSON, CSV or Excel. Search **any keyword** across every category — electronics, vehicles, furniture, fashion, tools, hobbies and more — and pull **title, price, condition, brand, image and the listing URL** in one tidy row per item. Built for price research, market monitoring, resale sourcing and automations.

### Features

- 🔎 **Search by keyword** — just type what you're looking for (e.g. `iphone`, `volvo v70`, `sohva`) and collect matching listings.
- 🔗 **Paste a Tori.fi URL** — already have a search, category or region page open? Paste its URL and the scraper picks it up.
- 💶 **Prices in euros** — the asking price as a clean number, plus the currency, for every listing.
- 🏷️ **Condition & brand** — see whether an item is used or new and the brand where the seller provides it.
- 🖼️ **Images** — the listing photo URL, ready for previews and catalogues.
- 📄 **Full details (optional)** — turn on `includeDetails` to also collect the complete description, item category and extra attributes.
- 🧮 **Volume control** — set `maxItems` to balance coverage and cost.
- 📤 **Clean export** — one row per listing as JSON, CSV, Excel or XML.

### Input

```json
{
  "queries": ["iphone", "volvo v70"],
  "maxItems": 100,
  "includeDetails": false
}
```

| Field | Description |
| --- | --- |
| `queries` | One or more keywords to search on Tori.fi. Each keyword runs its own search and the results are combined. |
| `startUrls` | Optional. One or more Tori.fi search, category or region page URLs. Scraped in addition to any keywords. |
| `maxItems` | Maximum number of listings to collect across all searches (0 = no limit). |
| `includeDetails` | Also open each listing's page to collect the full description, category and extra attributes. Slower, richer. |
| `maxConcurrency` | How many detail pages to fetch in parallel when `includeDetails` is on. |

#### How to search

Type any keyword into `queries` and run. To target a specific category or region, open [tori.fi](https://www.tori.fi), run or browse a search, then paste the result-page URL into `startUrls`. Pagination is followed automatically.

### Use cases

- Track asking prices for a product across Finland's biggest classifieds marketplace.
- Source resale and flipping opportunities by keyword.
- Build and refresh a second-hand market dataset for price and demand analysis.
- Monitor new listings for cars, electronics, furniture or collectibles.
- Feed structured listing records into a CRM, spreadsheet or analytics pipeline.

### What you get

Each listing is one dataset record:

```json
{
  "listingId": "37048578",
  "title": "Apple iPhone 7 älypuhelin 32 GB musta",
  "description": "Apple iPhone 7 älypuhelin 32 GB musta",
  "price": 40,
  "currency": "EUR",
  "condition": "Used",
  "brand": "Apple",
  "imageUrl": "https://img.tori.net/dynamic/default/item/37048578/ce1d8a98-45a5-4465-8793-7e05f1006ae5",
  "url": "https://www.tori.fi/recommerce/forsale/item/37048578",
  "collectedAt": "2026-09-05T02:32:39.874Z"
}
```

With `includeDetails` on, each row also carries `fullDescription`, `category`, `imageUrlLarge` and an `attributes` object.

#### Output schema

| Field | Type | Description |
|---|---|---|
| `listingId` | string | Tori.fi's unique identifier for the listing. |
| `title` | string | Listing title. |
| `description` | string | Short listing description. |
| `price` | number | Asking price in euros. |
| `currency` | string | Price currency (EUR). |
| `condition` | string | `Used` or `New`, where provided. |
| `brand` | string | Brand name, where provided. |
| `imageUrl` | string (URL) | Listing photo URL. |
| `url` | string (URL) | Direct link to the listing on Tori.fi. |
| `collectedAt` | string | When the row was collected (ISO). |

### Related Actors

- [Vinted Scraper](https://apify.com/hipersoft/vinted-scraper)
- [MercadoLibre Scraper](https://apify.com/hipersoft/mercadolibre-scraper)
- [eBay Scraper](https://apify.com/hipersoft/ebay-scraper)
- [Grailed Scraper](https://apify.com/hipersoft/grailed-scraper)

### FAQ

**Do I need a Tori.fi account?**
No. Just enter a keyword and run.

**Can I get the full description and category?**
Yes. Turn on `includeDetails` to collect each listing's full description, category and extra attributes.

**How many listings can I collect?**
As many as your searches return. Use `maxItems` to control the volume and cost.

**What export formats are supported?**
JSON, CSV, Excel and XML, plus the Apify API for programmatic access.

**Can I use this with n8n?**
Yes. Use the [Apify node for n8n](https://docs.apify.com/platform/integrations/n8n) to run this Actor and pull its dataset straight into an n8n workflow — trigger it on a schedule, then route the listing rows to a database, spreadsheet or messaging step.

**Can I connect it to other tools?**
The Tori.fi Scraper can be connected with almost any cloud service or web app thanks to [integrations on the Apify platform](https://apify.com/integrations). It works with [Make](https://apify.com/integrations/make), [Zapier](https://apify.com/integrations/zapier), [Slack](https://docs.apify.com/platform/integrations/slack), [Airbyte](https://docs.apify.com/platform/integrations/airbyte), [GitHub](https://docs.apify.com/platform/integrations/github), [Google Drive](https://docs.apify.com/platform/integrations/drive) and [many more](https://apify.com/integrations), plus the [Apify API](https://docs.apify.com/api/v2), JavaScript/Python clients and MCP. Or use [webhooks](https://docs.apify.com/platform/integrations/webhooks) to trigger an action whenever a run finishes.

### Notes

Returns only public Tori.fi listing data — the same information any visitor can see. This is an independent tool and is not affiliated with, endorsed by or connected to Tori.fi; "Tori" is a trademark of its respective owner. Original clean-room implementation.

# Actor input Schema

## `queries` (type: `array`):

One or more keywords to search on Tori.fi — for example 'iphone', 'volvo v70' or 'sohva'. Each keyword runs its own search and the results are combined. Leave Start URLs empty to use this.

## `startUrls` (type: `array`):

Optional. One or more Tori.fi search, category or region page URLs to scrape. Paste the URL straight from your browser. When set, these are scraped in addition to any keywords. The scraper follows the page's own pagination automatically.

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

Maximum number of listings to collect across all searches (0 = no limit; collect everything the searches return).

## `includeDetails` (type: `boolean`):

Also open each listing's own page to collect the full description, item category and extra attributes. This makes runs slower but returns richer data.

## `maxConcurrency` (type: `integer`):

How many listing detail pages to fetch in parallel when 'Include full details' is on.

## Actor input object example

```json
{
  "queries": [
    "iphone"
  ],
  "maxItems": 100,
  "includeDetails": false,
  "maxConcurrency": 5
}
```

# Actor output Schema

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

The results as dataset items.

# 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 = {
    "queries": [
        "iphone"
    ]
};

// Run the Actor and wait for it to finish
const run = await client.actor("hipersoft/tori-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 = { "queries": ["iphone"] }

# Run the Actor and wait for it to finish
run = client.actor("hipersoft/tori-scraper").call(run_input=run_input)

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

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

```

## CLI example

```bash
echo '{
  "queries": [
    "iphone"
  ]
}' |
apify call hipersoft/tori-scraper --silent --output-dataset

```

## MCP server setup

```json
{
    "mcpServers": {
        "apify": {
            "type": "http",
            "url": "https://mcp.apify.com/?tools=fetch-actor-details,hipersoft/tori-scraper"
        }
    }
}
```

The hosted server signs you in with OAuth on first connect, so no API token belongs in this config. Clients without OAuth support can send an `Authorization: Bearer <APIFY_API_TOKEN>` header instead, using a token from API & Integrations in Apify Console (https://console.apify.com/settings/integrations).

## OpenAPI specification

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