Wallapop Listings Scraper
Pricing
from $15.00 / 1,000 wallapop listings
Wallapop Listings Scraper
Scrape public Wallapop listings for titles, descriptions, prices, images, locations, categories, shipping flags, and seller details.
Pricing
from $15.00 / 1,000 wallapop listings
Rating
0.0
(0)
Developer
Muhammad Afzal
Maintained by CommunityActor stats
0
Bookmarked
2
Total users
1
Monthly active users
a day ago
Last modified
Categories
Share
Free plan limit: Free-plan users can receive up to 5 result records per run. Paid-plan and local/unknown runs retain the Actor's existing limits.
Collect public Wallapop listings as clean JSON for price monitoring, second-hand market research, inventory discovery, and lead qualification. Search by keyword, reuse a filtered Wallapop search URL, or extract one public item page.
The Actor follows Wallapop's public web experience. It first loads the public site, then uses the page-owned search requests and pagination tokens that Wallapop itself exposes to anonymous visitors. Individual item URLs are read from the structured __NEXT_DATA__ embedded in their public pages. No login, private messages, hidden profiles, or CAPTCHA bypass is used.
What the Wallapop scraper extracts
Each default-dataset row is one unique, schema-validated listing.
| Field | Meaning |
|---|---|
listingId, url | Stable Wallapop ID and public item URL |
title, description | Seller-written listing content |
price, currency | Current cash asking price |
categoryId, categoryName, taxonomy | Category and full returned hierarchy |
images | Large and thumbnail image URLs |
location | Approximate city, region, postal code, country, and coordinates |
sellerId | Public seller identifier when returned |
sellerName, sellerType, sellerVerified, sellerRating | Rich seller fields available on direct item URLs |
characteristics | Condition, brand, model, size, or other item summary from direct URLs |
isReserved, isShippable, isRefurbished, hasWarranty | Listing state and fulfillment flags |
createdAt, modifiedAt | Source timestamps when Wallapop returns them |
sourceType, searchQuery, scrapedAt | Provenance and scrape timestamp |
Search results contain the listing description, price, images, approximate location, categories, shipping state, and seller ID. Direct item URLs add the public seller display name, type, verification state, rating, and item characteristics when present.
When to use it
Use this Actor to:
- monitor asking prices for phones, bikes, furniture, collectibles, cars, and other second-hand products;
- find newly posted inventory with
sortBy: "newest"; - compare regional availability by changing latitude, longitude, and country code;
- feed listing records into spreadsheets, databases, alerts, or downstream AI workflows;
- capture a known public item URL with richer public seller information.
Do not use it for login-only data, private messages, contact details that Wallapop does not publish, purchasing, posting listings, or interacting with sellers. It does not download image binaries; it returns the public image URLs.
Input
| Input | Default | Notes |
|---|---|---|
queries | ["iphone"] | Keyword searches, one string per query |
startUrls | none | Public Wallapop /search, /app/search, or /item/ URLs |
maxResults | 50 | Global unique-result and billing cap, 1–1,000 |
maxPagesPerSearch | 5 | Pagination cap per query/search URL, 1–50 |
sortBy | most_relevance | Relevance, newest, either price direction, or distance |
latitude, longitude | Madrid | Search center used for keyword queries |
countryCode | ES | Two-letter country tied to the search center |
proxyConfiguration | direct | Optional proxy; limited permissions may require a direct fallback |
If a search URL already contains filters such as category or price parameters, the Actor preserves them. Explicit URL parameters take precedence over the general sort and location defaults.
Search example
{"queries": ["iphone 15", "macbook air m2"],"maxResults": 100,"maxPagesPerSearch": 3,"sortBy": "newest","latitude": 40.4168,"longitude": -3.7038,"countryCode": "ES"}
Filtered URL and item example
{"queries": [],"startUrls": [{ "url": "https://es.wallapop.com/app/search?keywords=bicicleta&min_sale_price=100&max_sale_price=800" },{ "url": "https://es.wallapop.com/item/example-listing-1234567890" }],"maxResults": 50}
Run through the Apify API
curl -X POST "https://api.apify.com/v2/acts/YOUR_USERNAME~wallapop-listings-scraper/runs?token=YOUR_APIFY_TOKEN" \-H "Content-Type: application/json" \-d '{"queries":["camera sony"],"maxResults":10,"sortBy":"newest"}'
Use an authorization header instead of placing a token in the URL in production systems.
Output example
{"listingId": "xzog9oe7d2j9","title": "iPhone 13 Verde","description": "Teléfono móvil en buen estado con caja original.","url": "https://es.wallapop.com/item/iphone-13-verde-1294249781","price": 250,"currency": "EUR","categoryId": "24200","categoryName": "Technology & electronics","taxonomy": [{ "id": "24200", "name": "Technology & electronics" },{ "id": "9447", "name": "Smartphones" }],"images": [{ "url": "https://cdn.wallapop.com/images/example.jpg?pictureSize=W800", "smallUrl": "https://cdn.wallapop.com/images/example.jpg?pictureSize=W320" }],"location": {"city": "Madrid","region": "Comunidad de Madrid","postalCode": "28070","countryCode": "ES","latitude": 40.42,"longitude": -3.69},"sellerId": "36ewexe7gy6d","sellerName": null,"sellerType": null,"sellerVerified": null,"sellerRating": null,"characteristics": null,"isReserved": false,"isShippable": true,"isRefurbished": false,"hasWarranty": false,"createdAt": "2026-08-23T10:00:04.237Z","modifiedAt": "2026-08-28T19:46:29.901Z","sourceType": "search","searchQuery": "iphone","scrapedAt": "2026-08-30T12:00:00.000Z"}
The OUTPUT key-value-store record contains the classified run outcome (DATA, EMPTY, BLOCKED, FAILED, or REJECTED), delivered result count, charged dataset-event count, pages, inputs, and warnings. Diagnostics never pollute the homogeneous listing dataset.
Pay-per-event pricing
Current Apify event prices and platform-usage treatment are listed in the dedicated Pricing section below.
A 10-listing run costs up to $0.195 in Actor events: $0.005 start + 10 × $0.019. A 100-listing run costs up to $1.905. Apify may enforce a lower maximum charge selected by the user; the Actor checks that limit before crawling and never intentionally emits more billable records than allowed. Platform usage is included.
Reliability and limits
- The default is low-cost direct HTTP because that path returned complete live data during development.
- One coherent device identity, app version, headers, and optional sticky proxy URL are reused for the run.
- HTTP 429 and transient 5xx responses receive bounded backoff; repeated access failures stop without fabricated rows.
- Pagination uses Wallapop's opaque
next_pagetoken and obeys bothmaxPagesPerSearchandmaxResults. - Records are normalized, schema-checked, and deduplicated by
listingIdbefore dataset writes. - Valid partial results are preserved. Warnings and terminal diagnostics are written to
OUTPUT. - Wallapop can change its public web contract or restrict a network range. You can request an authorized Apify proxy with a country consistent with the search. If the Actor's limited-permissions mode prevents proxy initialization, the Actor falls back to the measured direct route and records that fact in
OUTPUT.
Search ranking and inventory are dynamic. Running the same query later can produce different results, and listing timestamps or fields can be absent when Wallapop does not expose them.
Responsible use
Scrape only public information you are permitted to collect. Follow Wallapop's terms, robots policies where applicable, local law, privacy rules, and fair-use expectations. Avoid excessive collection, do not use the output for harassment or unsolicited contact, and apply appropriate retention and access controls to seller identifiers and approximate location data. This Actor is independent and is not affiliated with or endorsed by Wallapop.
For support, include the Apify run ID, the redacted input, the OUTPUT record, and the first relevant warning. Never post tokens, proxy credentials, cookies, or private personal data in an issue.
Pricing
This Actor uses pay-per-event pricing. These are the current Apify Store event prices:
| Event | Price (USD) | When it is charged |
|---|---|---|
apify-default-dataset-item | FREE: $0.019; BRONZE: $0.018; SILVER: $0.017; GOLD: $0.015; PLATINUM: $0.015; DIAMOND: $0.015 | Wallapop listing — One schema-valid Wallapop listing written to the default dataset. |
apify-actor-start | $0.005 | Actor Start — Charged when the Actor starts running. Number of events charged depends on Actor memory (one event per GB, minimum one event). — Charged once per run. |
Apify platform usage for this Actor run is included alongside the event prices above; no separate per-run platform-usage fee is passed to users.
This covers Apify platform usage for this Actor run. Other Apify products or usage outside this Actor run may still follow your account plan.