# Scrape luxury boats for sale from Blocket.se

**Use case:** 

Export boat ads over 500,000 SEK from Blocket.se with title, price, make, boat type, length, year and city, priciest first — in CSV or JSON.

## Input

```json
{
  "searchQueries": [
    "iphone"
  ],
  "category": "boats",
  "region": "all",
  "priceMin": 500000,
  "sellerType": "all",
  "shippingOnly": false,
  "publishedWithin": "any",
  "sortBy": "price-desc",
  "startUrls": [],
  "maxResults": 300
}
```

## Output

```json
{
  "id": {
    "label": "Ad ID",
    "format": "text"
  },
  "url": {
    "label": "Ad URL",
    "format": "link"
  },
  "title": {
    "label": "Title",
    "format": "text"
  },
  "description": {
    "label": "Description",
    "format": "text"
  },
  "price": {
    "label": "Price (SEK)",
    "format": "number"
  },
  "currency": {
    "label": "Currency",
    "format": "text"
  },
  "priceText": {
    "label": "Price text",
    "format": "text"
  },
  "category": {
    "label": "Category",
    "format": "text"
  },
  "subcategory": {
    "label": "Subcategory",
    "format": "text"
  },
  "region": {
    "label": "Region (län)",
    "format": "text"
  },
  "regionSlug": {
    "label": "Region slug",
    "format": "text"
  },
  "city": {
    "label": "City",
    "format": "text"
  },
  "zipCode": {
    "label": "Zip",
    "format": "text"
  },
  "latitude": {
    "label": "Lat",
    "format": "number"
  },
  "longitude": {
    "label": "Lng",
    "format": "number"
  },
  "sellerName": {
    "label": "Seller name (business ads only)",
    "format": "text"
  },
  "sellerType": {
    "label": "Seller type",
    "format": "text"
  },
  "sellerUrl": {
    "label": "Seller page (business ads only)",
    "format": "link"
  },
  "shipping": {
    "label": "Shipping offered",
    "format": "boolean"
  },
  "condition": {
    "label": "Condition",
    "format": "text"
  },
  "conditionGrade": {
    "label": "Condition grade",
    "format": "text"
  },
  "brand": {
    "label": "Brand",
    "format": "text"
  },
  "imageUrl": {
    "label": "Main photo",
    "format": "link"
  },
  "imageUrls": {
    "label": "All photos",
    "format": "array"
  },
  "make": {
    "label": "Make (vehicle)",
    "format": "text"
  },
  "model": {
    "label": "Model (vehicle)",
    "format": "text"
  },
  "modelSpec": {
    "label": "Model spec",
    "format": "text"
  },
  "year": {
    "label": "Year",
    "format": "number"
  },
  "mileage": {
    "label": "Mileage (km)",
    "format": "number"
  },
  "fuel": {
    "label": "Fuel",
    "format": "text"
  },
  "gearbox": {
    "label": "Gearbox",
    "format": "text"
  },
  "regno": {
    "label": "Reg. number",
    "format": "text"
  },
  "horsepower": {
    "label": "Horsepower",
    "format": "number"
  },
  "engineType": {
    "label": "Engine type (boats)",
    "format": "text"
  },
  "engineVolumeCc": {
    "label": "Engine volume (cc)",
    "format": "number"
  },
  "lengthFeet": {
    "label": "Length (ft, boats)",
    "format": "number"
  },
  "widthCm": {
    "label": "Beam (cm, boats)",
    "format": "number"
  },
  "topSpeedKnots": {
    "label": "Top speed (knots)",
    "format": "number"
  },
  "hullMaterial": {
    "label": "Hull material (boats)",
    "format": "text"
  },
  "publishedAt": {
    "label": "Posted",
    "format": "text"
  },
  "searchQuery": {
    "label": "Search keyword",
    "format": "text"
  },
  "sourceListUrl": {
    "label": "Source list URL",
    "format": "link"
  },
  "scrapedAt": {
    "label": "Scraped",
    "format": "text"
  }
}
```

## About this Actor

This example demonstrates how to use [Blocket.se Scraper](https://apify.com/solidcode/blocket-scraper.md) with a specific input configuration. Visit the [Actor detail page](https://apify.com/solidcode/blocket-scraper.md) to learn more, explore other use cases, and run it yourself.


## 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.
This Task's input is already configured above — use it as-is rather than inventing a new one.

- **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 full API examples (JavaScript, Python, CLI, MCP, OpenAPI), see this Task's Actor page: https://apify.com/solidcode/blocket-scraper.md

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).
