# Track used car listings on Wallapop Italy

**Use case:** 

Exports the latest used car listings from Wallapop Italy into structured rows: price, mileage, year, fuel, location and seller. Set it on a schedule to build a price history of the Italian private market, or run once to size the inventory in a region.

## Input

```json
{
  "start_urls": [
    {
      "url": "https://it.wallapop.com/search?category_id=100&order_by=newest"
    }
  ],
  "max_items": 200,
  "country": "Italy"
}
```

## Output

```json
{
  "item_id": {
    "label": "Item ID",
    "format": "text"
  },
  "listing_url": {
    "label": "Listing URL",
    "format": "link"
  },
  "share_url": {
    "label": "Share URL",
    "format": "link"
  },
  "slug": {
    "label": "Slug",
    "format": "text"
  },
  "modified_date": {
    "label": "Last Modified",
    "format": "date"
  },
  "price": {
    "label": "Price (EUR)",
    "format": "number"
  },
  "currency": {
    "label": "Currency",
    "format": "text"
  },
  "financed_price": {
    "label": "Financed Price (EUR)",
    "format": "number"
  },
  "title": {
    "label": "Title",
    "format": "text"
  },
  "brand": {
    "label": "Brand",
    "format": "text"
  },
  "model": {
    "label": "Model",
    "format": "text"
  },
  "version": {
    "label": "Version / Trim",
    "format": "text"
  },
  "year": {
    "label": "Year",
    "format": "number"
  },
  "km": {
    "label": "Mileage (km)",
    "format": "number"
  },
  "engine": {
    "label": "Fuel Type",
    "format": "text"
  },
  "gear_box": {
    "label": "Gearbox",
    "format": "text"
  },
  "horse_power": {
    "label": "Horsepower (hp)",
    "format": "number"
  },
  "body_type": {
    "label": "Body Type",
    "format": "text"
  },
  "doors": {
    "label": "Doors",
    "format": "number"
  },
  "seats": {
    "label": "Seats",
    "format": "number"
  },
  "type": {
    "label": "Listing Type",
    "format": "text"
  },
  "city": {
    "label": "City",
    "format": "text"
  },
  "postal_code": {
    "label": "Postal Code",
    "format": "text"
  },
  "country_code": {
    "label": "Country",
    "format": "text"
  },
  "latitude": {
    "label": "Latitude",
    "format": "number"
  },
  "longitude": {
    "label": "Longitude",
    "format": "number"
  },
  "shipping_available": {
    "label": "Shipping Available",
    "format": "boolean"
  },
  "seller_id": {
    "label": "Seller ID",
    "format": "text"
  },
  "seller_is_top_profile": {
    "label": "Top Profile",
    "format": "boolean"
  },
  "seller_legal_name": {
    "label": "Seller Legal Name",
    "format": "text"
  },
  "seller_commercial_registry": {
    "label": "Seller Commercial Registry",
    "format": "text"
  },
  "seller_registration_number": {
    "label": "Seller Registration Number",
    "format": "text"
  },
  "seller_email": {
    "label": "Seller Email",
    "format": "text"
  },
  "seller_phone": {
    "label": "Seller Phone",
    "format": "text"
  },
  "seller_self_certification": {
    "label": "Seller Self-Certification",
    "format": "text"
  },
  "images": {
    "label": "Images",
    "format": "array"
  },
  "views": {
    "label": "Views",
    "format": "number"
  },
  "favorites": {
    "label": "Favorites",
    "format": "number"
  },
  "conversations": {
    "label": "Conversations",
    "format": "number"
  },
  "eco_label": {
    "label": "Eco Label",
    "format": "text"
  },
  "category": {
    "label": "Category",
    "format": "text"
  },
  "category_id": {
    "label": "Category ID",
    "format": "text"
  },
  "description": {
    "label": "Description",
    "format": "text"
  },
  "extra_attributes": {
    "label": "Extra Attributes",
    "format": "object"
  },
  "message": {
    "label": "Message",
    "format": "text"
  },
  "reason": {
    "label": "Reason",
    "format": "text"
  }
}
```

## About this Actor

This example demonstrates how to use [wallapop Scraper (Spain,Italy,Portugal)](https://apify.com/fayoussef/wallapop-scraper.md) with a specific input configuration. Visit the [Actor detail page](https://apify.com/fayoussef/wallapop-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/fayoussef/wallapop-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).
