# Oikotie Filter URL Scraper: Paste A Search From The Address Bar

**Use case:** 

Paste any Oikotie filter/search URL copied from the browser address bar (city, district, building type and other filters included) and scrape exactly those matching for-sale listings as structured data.

## Input

```json
{
  "source": "both",
  "scrapeMode": "directUrls",
  "location": "Tampere",
  "maxItems": 200,
  "includeDetails": true,
  "directUrls": [
    {
      "url": "https://asunnot.oikotie.fi/myytavat-asunnot?locations=%5B%5B1676,4,%22Malmi,%20Helsinki%22%5D%5D&cardType=100&buildingType%5B%5D=4&buildingType%5B%5D=8"
    }
  ],
  "proxy": {
    "useApifyProxy": false
  }
}
```

## Output

```json
{
  "source": {
    "label": "Source",
    "format": "text"
  },
  "listingId": {
    "label": "ID",
    "format": "text"
  },
  "url": {
    "label": "URL",
    "format": "link"
  },
  "title": {
    "label": "Title",
    "format": "text"
  },
  "price": {
    "label": "Price (EUR)",
    "format": "number"
  },
  "priceSell": {
    "label": "Sell price",
    "format": "number"
  },
  "pricePerSquareMeter": {
    "label": "EUR/m²",
    "format": "number"
  },
  "address": {
    "label": "Address",
    "format": "text"
  },
  "city": {
    "label": "City",
    "format": "text"
  },
  "district": {
    "label": "District",
    "format": "text"
  },
  "postalCode": {
    "label": "Postal code",
    "format": "text"
  },
  "area": {
    "label": "Area (m²)",
    "format": "number"
  },
  "totalArea": {
    "label": "Total area (m²)",
    "format": "number"
  },
  "rooms": {
    "label": "Rooms",
    "format": "number"
  },
  "roomStructure": {
    "label": "Room layout",
    "format": "text"
  },
  "floor": {
    "label": "Floor",
    "format": "number"
  },
  "floorCount": {
    "label": "Floors",
    "format": "number"
  },
  "constructionYear": {
    "label": "Year built",
    "format": "number"
  },
  "propertyType": {
    "label": "Type",
    "format": "text"
  },
  "ownershipType": {
    "label": "Ownership",
    "format": "text"
  },
  "energyClass": {
    "label": "Energy",
    "format": "text"
  },
  "heating": {
    "label": "Heating",
    "format": "text"
  },
  "maintenanceFee": {
    "label": "Maint. fee",
    "format": "number"
  },
  "financialFee": {
    "label": "Financial fee",
    "format": "number"
  },
  "debtShareAmount": {
    "label": "Debt share",
    "format": "number"
  },
  "availabilityDescription": {
    "label": "Available",
    "format": "text"
  },
  "agentName": {
    "label": "Agent",
    "format": "text"
  },
  "agentPhone": {
    "label": "Phone",
    "format": "text"
  },
  "agentTitle": {
    "label": "Agent title",
    "format": "text"
  },
  "agencyName": {
    "label": "Agency",
    "format": "text"
  },
  "agencyPhone": {
    "label": "Agency phone",
    "format": "text"
  },
  "images": {
    "label": "Images",
    "format": "array"
  }
}
```

## About this Actor

This example demonstrates how to use [Finland Real Estate Scraper [$0.70/1K💰] | Etuovi + Oikotie](https://apify.com/ahmed_jasarevic/etuovi-scraper.md) with a specific input configuration. Visit the [Actor detail page](https://apify.com/ahmed_jasarevic/etuovi-scraper.md) to learn more, explore other use cases, and run it yourself.


## How to integrate an Actor?

This Task's input is already configured above. Use it as-is rather than inventing a new one.

Do not guess an integration path. Every one of them is in the agent quickstart at https://apify.com/agents.md: the Apify MCP server, Agent Skills with the Apify CLI, the JavaScript and Python clients, the REST API, and the account-free path for an agent with no human to sign in. It also carries the rule on stating cost before the first paid run.

For full API examples (JavaScript, Python, CLI, MCP, OpenAPI), see this Task's Actor page: https://apify.com/ahmed_jasarevic/etuovi-scraper.md

Each client library has reference documentation the quickstart does not restate: [JavaScript/TypeScript](https://docs.apify.com/api/client/js/docs.md) (`npm install apify-client`) and [Python](https://docs.apify.com/api/client/python/docs.md) (`pip install apify-client`).
