# Scrape used cars under 5,000 EUR on Wallapop Spain

**Use case:** 

Pulls the newest private car listings on Wallapop Spain priced under 5,000 EUR, with price, mileage, year, location and seller details per row. Built for dealers and flippers who want the cheap end of the market in a spreadsheet every morning instead of refreshing the app.

## Input

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

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