Wallapop Scraper — Listings, Cars & Seller Data avatar

Wallapop Scraper — Listings, Cars & Seller Data

Pricing

from $1.50 / 1,000 results

Go to Apify Store
Wallapop Scraper — Listings, Cars & Seller Data

Wallapop Scraper — Listings, Cars & Seller Data

Scrape Wallapop marketplace listings with clean English fields — prices, images, location, and seller details. Cars mode with full make/model/year/fuel specs, geo-radius search, and incremental monitoring with notifications.

Pricing

from $1.50 / 1,000 results

Rating

0.0

(0)

Developer

Black Falcon Data

Black Falcon Data

Maintained by Community

Actor stats

0

Bookmarked

2

Total users

1

Monthly active users

a day ago

Last modified

Share

What does Wallapop Scraper do?

Wallapop Scraper extracts structured listing data from wallapop.com — including prices, full descriptions, photos, location data, and seller ratings. It supports keyword search, location and radius filters, item-condition and seller-type filters, and controllable result limits across the Spain, Italy, Portugal, France, and United Kingdom markets, so you can run the same query consistently over time. The actor also offers detail enrichment (full descriptions and contact information) and a dedicated cars mode with structured vehicle specifications where the source provides them.

How to use this actor

  • 👉 Register for a free Apify account — no credit card required.
  • 🎉 Just click Sign up free on Apify → and complete a quick signup.
  • 💰 A free Apify account includes $5 in monthly credits — enough to test this actor.
  • ⏳ Scrape during the free trial, with no commitment or upfront payment required.

Key features

  • 🚗 Dedicated cars mode — pick the Cars category for structured vehicle fields on every listing: make, model, year, mileage, fuel, gearbox, body type, horsepower, warranty, and eco label.
  • 📍 Location, radius & 5-market search — Search Spain, Italy, Portugal, France, or the UK — set the market with the country input, center on any city or lat/long, and cap results to a radius.
  • 📋 Full listing detail — two-stage scraping: collect listings, then open each for the full description, engagement counts, and deep car specs. On by default; flip off for speed.
  • 🏪 Seller & shop lead data — opt into seller enrichment: private vs. professional, ratings, a 0–100 trust score, and verifications. Professional shops add full contact details and the public trader disclosure — legal name, email, and registration number.
  • 🔔 Notifications — Telegram, Slack, Discord, WhatsApp Cloud API, and generic webhook out of the box. Pair with incremental for daily new-listing alerts without pipeline glue.
  • 🔗 Paste-mode — build the search on wallapop.com, copy the result-page URL, and paste it — each URL becomes its own search, merged and de-duplicated by listing id.
  • 📦 Compact mode — AI-agent and MCP-friendly payloads with core fields only.
  • ✂️ Description truncation — cap description length with descriptionMaxLength, or pick plain text, HTML, or markdown output.
  • ♻️ Incremental mode — Recurring runs classify listings as NEW, UPDATED, UNCHANGED, or EXPIRED and return only NEW + UPDATED — monitor new listings without re-paying for the whole feed.
  • 📤 Export anywhere — Download the dataset as JSON, CSV, or Excel, or pull it from the Apify API.
  • 🔌 MCP connectors — export results into Notion and other apps through Apify's MCP connectors.

What data can you extract from Wallapop?

Each result includes Core listing fields (listingId, itemId, title, categoryId, category, subcategory, categoryPath, and price, and more), detail fields when enrichment is enabled (description, shopDescription, and detailFetched), and contact information (sellerEmailVerified, sellerPhoneVerified, and shopPhone). In standard mode, all fields are always present — unavailable data points are returned as null, never omitted. In compact mode, only core fields are returned.

Enable detail enrichment in the input to get richer fields such as full descriptions and contact information where the source provides them.

Input

The main inputs are a search keyword, an optional location filter, and a result limit. Additional filters and options are available in the input schema.

Key parameters:

  • query — What to search for, e.g. "iphone 14" or "bmw serie 3". Add several terms to run them all. Leave empty to browse a whole category instead.
  • category — Restrict results to one category. Pick "Cars" to unlock the car-specific filters below. Combine with a search term, or use a category alone to browse. (default: "")
  • country — Which Wallapop market to search. (default: "ES")
  • location — City or area to center the search on (e.g. "Madrid"), or coordinates as "latitude,longitude". Pair with Search Radius to cap distance. (default: [])
  • radiusKm — Only return listings within this many kilometers of the location center. Leave empty for no radius limit.
  • startUrls — Paste one or more Wallapop search URLs (from the address bar). Each URL becomes its own search; results are merged and de-duplicated. Replaces the Search/Category/Location fields above. (default: [])
  • watchSellerIds — Track specific sellers: paste one or more seller IDs to list every active listing from each. Use the sellerId value from this scraper's own output (run a search first, copy the IDs you want). Replaces the Search/Category/Location fields above; pairs well with Incremental Mode. (default: [])
  • sortBy — Result ordering. (default: "most_relevance")
  • postedWithin — Only keep listings posted within this window. Leave on "Any time" for all ages. (default: "all")
  • minPrice — Only listings at or above this amount (market currency).
  • maxPrice — Only listings priced at or below this amount.
  • sellerType — Filter by who is selling — private vs. professional (cars category). Leave empty for both. (default: "")
  • ...and 43 more parameters

Input examples

Search by keyword — Enter one or more keywords to scrape matching listings across a Wallapop market.

→ Listing rows with price, photos, location, condition and seller — clean English field names.

{
"query": [
"iphone 15"
],
"country": "ES",
"maxResults": 50
}

Cars by make, model & specs — Use the cars vertical to filter by make, model, year, mileage, fuel and price band.

→ Vehicle rows with make, model, year, km, fuel, gearbox, body type, doors, seats and eco label.

{
"category": "cars",
"carBrand": "BMW",
"carModel": "Serie 3",
"minYear": 2018,
"maxKm": 120000,
"maxPrice": 20000,
"country": "ES",
"includeDetails": true,
"maxResults": 50
}

Search a city within a radius — Center the search on any city and cap results to a kilometre radius.

→ Listings near the location, each with a distanceKm field so you can sort by proximity.

{
"query": [
"sofa"
],
"country": "ES",
"location": [
"Barcelona"
],
"radiusKm": 15,
"maxResults": 50
}

Car dealer leads — Target professional sellers and enrich each with shop contact and rating data.

→ Vehicle rows plus seller leads — shop name, phone, website, address, response rate and rating.

{
"category": "cars",
"carBrand": "Audi",
"sellerType": "professional",
"country": "ES",
"includeDetails": true,
"includeSellerProfile": true,
"maxResults": 50
}

Monitor new listings (incremental) — Re-run on a schedule with a stable stateKey to emit only new or changed listings.

→ On each run after the first, only records that are new or whose tracked content changed.

{
"query": [
"ps5"
],
"country": "ES",
"maxResults": 100,
"incrementalMode": true,
"stateKey": "wallapop-ps5-tracker"
}

Output

Each run produces a dataset of structured listing records. Results can be downloaded as JSON, CSV, or Excel from the Dataset tab in Apify Console.

Example listing record

{
"listingId": "a8520679841ec171968be5cd025fef5c308df8f34998dbaf2d2af5f563634935",
"itemId": "e65qk8ex5p6o",
"title": "Audi A3 35 TFSI SPORTBACK S-LINE",
"description": "Audi A3 35 TFSI de 150 cv, con pack S-line, del año 2019 en color blanco con 128.000 km completamente impecable en estado de re-estreno. \nEquipado con multitud de extras entre los que destacamos: \n- P...",
"categoryId": 100,
"category": "Coches",
"categoryPath": "Coches",
"price": 17900,
"priceText": "17.900 €",
"currency": "EUR",
"url": "https://es.wallapop.com/item/audi-a3-35-tfsi-sportback-s-line-1275843824",
"portalUrl": "https://es.wallapop.com/item/audi-a3-35-tfsi-sportback-s-line-1275843824",
"webSlug": "audi-a3-35-tfsi-sportback-s-line-1275843824",
"imageUrl": "https://cdn.wallapop.com/images/10420/l3/lr/__/c10420p1275843824/i6579844476.jpg?pictureSize=W800",
"imageUrls": [
"https://cdn.wallapop.com/images/10420/l3/lr/__/c10420p1275843824/i6579844476.jpg?pictureSize=W800",
"https://cdn.wallapop.com/images/10420/l3/lr/__/c10420p1275843824/i6579844490.jpg?pictureSize=W800",
"https://cdn.wallapop.com/images/10420/l3/lr/__/c10420p1275843824/i6579844616.jpg?pictureSize=W800",
"https://cdn.wallapop.com/images/10420/l3/lr/__/c10420p1275843824/i6579844588.jpg?pictureSize=W800",
"https://cdn.wallapop.com/images/10420/l3/lr/__/c10420p1275843824/i6579844591.jpg?pictureSize=W800",
"https://cdn.wallapop.com/images/10420/l3/lr/__/c10420p1275843824/i6579844595.jpg?pictureSize=W800",
"https://cdn.wallapop.com/images/10420/l3/lr/__/c10420p1275843824/i6579844580.jpg?pictureSize=W800",
"https://cdn.wallapop.com/images/10420/l3/lr/__/c10420p1275843824/i6579844551.jpg?pictureSize=W800",
"https://cdn.wallapop.com/images/10420/l3/lr/__/c10420p1275843824/i6579844537.jpg?pictureSize=W800",
"https://cdn.wallapop.com/images/10420/l3/lr/__/c10420p1275843824/i6579844541.jpg?pictureSize=W800",
"https://cdn.wallapop.com/images/10420/l3/lr/__/c10420p1275843824/i6579844506.jpg?pictureSize=W800",
"https://cdn.wallapop.com/images/10420/l3/lr/__/c10420p1275843824/i6579844557.jpg?pictureSize=W800",
"https://cdn.wallapop.com/images/10420/l3/lr/__/c10420p1275843824/i6579844486.jpg?pictureSize=W800",
"https://cdn.wallapop.com/images/10420/l3/lr/__/c10420p1275843824/i6579844544.jpg?pictureSize=W800",
"https://cdn.wallapop.com/images/10420/l3/lr/__/c10420p1275843824/i6579844500.jpg?pictureSize=W800",
"https://cdn.wallapop.com/images/10420/l3/lr/__/c10420p1275843824/i6579844533.jpg?pictureSize=W800",
"https://cdn.wallapop.com/images/10420/l3/lr/__/c10420p1275843824/i6579844522.jpg?pictureSize=W800",
"https://cdn.wallapop.com/images/10420/l3/lr/__/c10420p1275843824/i6579844570.jpg?pictureSize=W800",
"https://cdn.wallapop.com/images/10420/l3/lr/__/c10420p1275843824/i6579844497.jpg?pictureSize=W800",
"https://cdn.wallapop.com/images/10420/l3/lr/__/c10420p1275843824/i6579844609.jpg?pictureSize=W800",
"https://cdn.wallapop.com/images/10420/l3/lr/__/c10420p1275843824/i6579844611.jpg?pictureSize=W800",
"https://cdn.wallapop.com/images/10420/l3/lr/__/c10420p1275843824/i6579844597.jpg?pictureSize=W800",
"https://cdn.wallapop.com/images/10420/l3/lr/__/c10420p1275843824/i6579844601.jpg?pictureSize=W800",
"https://cdn.wallapop.com/images/10420/l3/lr/__/c10420p1275843824/i6579844615.jpg?pictureSize=W800",
"https://cdn.wallapop.com/images/10420/l3/lr/__/c10420p1275843824/i6579844607.jpg?pictureSize=W800",
"https://cdn.wallapop.com/images/10420/l3/lr/__/c10420p1275843824/i6579844583.jpg?pictureSize=W800",
"https://cdn.wallapop.com/images/10420/l3/lr/__/c10420p1275843824/i6579844529.jpg?pictureSize=W800",
"https://cdn.wallapop.com/images/10420/l3/lr/__/c10420p1275843824/i6579844621.jpg?pictureSize=W800",
"https://cdn.wallapop.com/images/10420/l3/lr/__/c10420p1275843824/i6579847691.jpg?pictureSize=W800"
],
"imageCount": 29,
"city": "Oviedo",
"region": "Principado de Asturias",
"postalCode": "33005",
"countryCode": "ES",
"latitude": 43.363970244938,
"longitude": -5.86561728542,
"distanceKm": 373.35,
"reserved": false,
"isRefurbished": false,
"hasWarranty": false,
"isShippable": false,
"shippingAllowed": false,
"isBumped": true,
"isTopProfileSeller": false,
"createdAt": "2026-06-25T19:56:17.814Z",
"modifiedAt": "2026-06-25T19:59:10.628Z",
"publishedAge": "17m",
"views": 1,
"favoritesCount": 0,
"conversations": 0,
"carBrand": "Audi",
"carModel": "A3",
"carYear": 2019,
"carVersion": "Sportback 35 TFSI 150 S Line Edition 5p",
"carKm": 128000,
"carFuel": "Gasoline",
"carHorsePower": 150,
"carGearbox": "Manual",
"carBodyType": "Small car",
"carDoors": 5,
"carSeats": 5,
"carEcoLabel": "C",
"sellerId": "qjwy14vor4zo",
"sellerName": "PRIME GARAGE SL",
"sellerType": "professional",
"sellerIsShop": true,
"sellerIsVerified": true,
"sellerRegisteredAt": "2025-02-15T17:59:32.000Z",
"sellerUrl": "https://www.wallapop.com/user/primegaragesl-463668629",
"sellerResponseRate": "less_than_three_hours",
"sellerRatingAverage": 5,
"sellerScore": 100,
"sellerEmailVerified": true,
"sellerPhoneVerified": true,
"sellerKycVerified": false,
"shopAddress": "Calle Jose Echegaray 6, 33013, Oviedo, Asturias, Principado de Asturias, ESP",
"shopPhone": "981960764",
"shopWebsite": "www.primegarage.es",
"shopOpeningHours": "Horario de 10:00 h a 14:00 h de lunes a viernes, solo atendemos con cita previa en nuestras instalaciones.",
"shopDescription": "En PRIME GARAGE SL somos apasionados por los coches y comprometidos en ofrecer la mejor experiencia en la compra y venta de vehículos. Con amplia experiencia en el mercado, nos hemos consolidado como...",
"contentQuality": "full",
"detailFetched": true,
"scrapedAt": "2026-06-25T20:13:55.363Z",
"source": "wallapop.com"
}

Incremental fields

When incremental mode is on, each record also carries:

  • changeType — one of NEW, UPDATED, UNCHANGED, REAPPEARED, EXPIRED. Default output covers NEW / UPDATED / REAPPEARED; set emitUnchanged: true or emitExpired: true to opt into the others.
  • isRepost, repostOfId, repostDetectedAt — populated when a new listing matches the tracked content of a previously expired one. Set skipReposts: true to drop detected reposts from the output.

How to scrape Wallapop

  1. Go to Wallapop Scraper in Apify Console.
  2. Enter a search keyword and optional location filter.
  3. Set maxResults to control how many results you need.
  4. Enable includeDetails if you need full descriptions, contact info.
  5. Click Start and wait for the run to finish.
  6. Export the dataset as JSON, CSV, or Excel.

Use cases

  • Extract listing data from Wallapop for market research and competitive analysis.
  • Track pricing trends across regions and categories over time.
  • Monitor new and changed vehicles on scheduled runs without processing the full dataset every time.
  • Use structured location data for regional analysis, mapping, and geo-targeting.
  • Feed structured data into AI agents, MCP tools, and automated pipelines using compact mode.
  • Export clean, structured data to dashboards, spreadsheets, or data warehouses.
  • Benchmark seller / dealer reputation using rating fields.

How much does it cost to scrape Wallapop?

Wallapop Scraper uses pay-per-event pricing. You pay a small fee when the run starts and then for each result that is actually produced.

  • Run start: $0.005 per run
  • Per result: $0.0015 per listing record

Example costs:

  • 10 results: $0.02
  • 25 results: $0.042
  • 100 results: $0.15
  • 200 results: $0.3
  • 500 results: $0.76

Example: recurring monitoring savings

These examples compare full re-scrapes with incremental runs at different churn rates. Churn is the share of vehicles that are new or whose tracked content changed since the previous run. Actual churn depends on your query breadth, source activity, and polling frequency — the scenarios below are examples, not predictions.

Example setup: 200 results per run, daily polling (30 runs/month). Event-pricing examples scale linearly with result count.

Churn rateFull re-scrape run costIncremental run costSavings vs full re-scrapeMonthly cost after baseline
5% — stable niche query$0.30$0.02$0.28 (93%)$0.60
15% — moderate broad query$0.30$0.05$0.26 (84%)$1.50
30% — high-volume aggregator$0.30$0.10$0.21 (69%)$2.85

Full re-scrape monthly cost at daily polling: $9.15. First month with incremental costs $0.89 / $1.75 / $3.06 for the 5% / 15% / 30% scenarios because the first run builds baseline state at full cost before incremental savings apply.

Platform usage (compute and proxies) is billed separately by Apify based on actual consumption. Incremental runs consume less on result processing, though fixed per-run overhead stays the same.

FAQ

How many results can I get from Wallapop?

The number of results depends on the search query and available vehicles on Wallapop. Use the maxResults parameter to control how many results are returned per run.

Does Wallapop Scraper support recurring monitoring?

Yes. Enable incremental mode to only receive new or changed vehicles on subsequent runs. This is ideal for scheduled monitoring where you want to track changes over time without re-processing the full dataset.

Can I integrate Wallapop Scraper with other apps?

Yes. Wallapop Scraper works with Apify's integrations to connect with tools like Zapier, Make, Google Sheets, Slack, and more. You can also use webhooks to trigger actions when a run completes.

Can I use Wallapop Scraper with the Apify API?

Yes. You can start runs, manage inputs, and retrieve results programmatically through the Apify API. Client libraries are available for JavaScript, Python, and other languages.

Can I use Wallapop Scraper through an MCP Server?

Yes. Apify provides an MCP Server that lets AI assistants and agents call this actor directly. Use compact mode, descriptionMaxLength, a single descriptionFormat, and excludeEmptyFields to keep payloads manageable for LLM context windows.

This actor extracts publicly available data from Wallapop. Web scraping of public information is generally considered legal, but you should always review the target site's terms of service and ensure your use case complies with applicable laws and regulations, including GDPR where relevant.

Your feedback

If you have questions, need a feature, or found a bug, please open an issue on the actor's page in Apify Console. Your feedback helps us improve.

You might also like

Getting started with Apify

New to Apify? Create a free account with $5 credit — no credit card required.

  1. Sign up — $5 platform credit included
  2. Open this actor and configure your input
  3. Click Start — export results as JSON, CSV, or Excel

Need more later? See Apify pricing.