Seminuevos Mexico Used Car Listings Scraper
Pricing
from $6.15 / 1,000 results
Seminuevos Mexico Used Car Listings Scraper
Scrape used-car listings from Seminuevos.com Mexico: title, price, brand, model, year, mileage, transmission, fuel, body type, location and seller. Export to JSON, CSV, Excel or XML.
Pricing
from $6.15 / 1,000 results
Rating
0.0
(0)
Developer
Scrapers Lat
Maintained by CommunityActor stats
0
Bookmarked
1
Total users
1
Monthly active users
21 hours ago
Last modified
Categories
Share
Seminuevos Mexico Used Car Listings Scraper
Here is one real result, with every field the actor returns (the images array is trimmed here for length):
{"imageUrl": "https://images.latamautos.com/thumbs/w/300x177xC/ptx_migration_mexico/202664/4802824/o_o/pt_4802824_1780602653514.JPG","title": "Mazda Mazda 3 2021","price": 319000,"currency": "MXN","brand": "Mazda","model": "Mazda 3","year": 2021,"mileageKm": 30000,"transmission": "Automática","fuelType": "Gasolina","bodyType": "Coupé","city": "El Arenal","state": "Hidalgo","sellerType": "agency","url": "https://www.seminuevos.com/vehicle/autos-mazda-mazda_3-el_arenal-2021/4802824","listingId": "4802824","description": "$31","features": ["Computadora de viaje","Control de estabilidad (ESP)","Entrada USB","Frenos ABS","Radio AM/FM","Radio MP3","Sensores de lluvia","Techo corredizo"],"images": ["https://images.latamautos.com/thumbs/w/lg/ptx_migration_mexico/202664/4802824/o_o/pt_4802824_1780602653514.JPG","https://images.latamautos.com/thumbs/w/lg/ptx_migration_mexico/202664/4802824/o_o/pt_4802824_1780602654663.JPG","https://images.latamautos.com/thumbs/w/lg/ptx_migration_mexico/202664/4802824/o_o/pt_4802824_1780602655810.JPG"],"sellerName": "EMPA SEMINUEVOS","phone": "7291028182","whatsappPhone": "527291028182","version": "2.5 i Sport Hb At","color": "Gris","hasFinancing": false,"sellerLocation": "Hidalgo","dealerVerified": true,"youtubeVideoUrl": null,"observedAt": "2026-08-10T14:05:19.844Z","error": null}
The most complete Seminuevos scraper available. It returns every field a used-car listing exposes (brand, model, year, price, mileage, transmission, fuel, body type and location), adds the version, color, feature list and full image gallery from each detail page, and captures the seller name, phone and WhatsApp as a usable lead.
📥 Input · 📤 Output · 💰 Pricing · ▶️ Examples
Table of contents
- What it does
- Quickstart
- Input reference
- Output reference
- Example output record
- Run via API and CLI
- Fetch results
- Billing and limits
- FAQ and troubleshooting
What it does
The actor loads a Seminuevos.com search or category URL, paginates through the matching used-car listings, and writes one normalized record per vehicle to the run's dataset. Each record carries title, price and currency, brand, model, year, mileage, transmission, fuel type, body type and location, plus the seller type.
With withDetails on (the default), the actor opens each listing's detail page to add the version, color, feature list, full image gallery, financing flag, dealer verification status, an optional YouTube video, and the seller's name, phone and WhatsApp number as a lead. Missing source values are returned as null, never invented.
Quickstart
Open the actor, paste this into the input, and press Run. It returns up to 10 used cars from Seminuevos Mexico with full detail.
{"startUrl": "https://www.seminuevos.com/usados/-/autos","withDetails": true,"maxListings": 10}
Apply any filters (brand, model, location, price) on seminuevos.com in your browser, then paste the resulting URL into startUrl. For example, https://www.seminuevos.com/usados/-/autos/-/nissan returns only Nissan listings.
Input reference
| Field | Type | Required | Default | Description |
|---|---|---|---|---|
startUrl | string | yes | https://www.seminuevos.com/usados/-/autos | A Seminuevos.com search or category URL. Apply filters on the site and paste the resulting URL, for example https://www.seminuevos.com/usados/-/autos/-/nissan. |
withDetails | boolean | no | true | When on, each listing's detail page is fetched to add description, features, full image gallery, seller name, phone and seller type. Slower but richer. |
maxListings | integer | no | 10 | Maximum listings to collect. |
Output reference
One dataset item per listing. Types: string, integer, boolean, string[], or null when the source value is absent. Fields from description onward come from the detail page and populate when withDetails is on.
| Field | Type | Description |
|---|---|---|
imageUrl | string | Main thumbnail image. |
title | string | Listing title (brand, model, year). |
price | integer | Asking price. |
currency | string | Currency code, usually MXN. |
brand | string | Vehicle brand. |
model | string | Vehicle model. |
year | integer | Model year. |
mileageKm | integer | Odometer reading in kilometers. |
transmission | string | Transmission, for example Automática, Manual. |
fuelType | string | Fuel type, for example Gasolina, Diesel, Híbrido. |
bodyType | string | Body style, for example Sedán, SUV, Coupé. |
city | string | City of the listing. |
state | string | State of the listing. |
sellerType | string | agency or private. |
url | string | Direct link to the listing. |
listingId | string | Seminuevos listing id. |
description | string | Listing description text as published (often short on this site). |
features | string[] | Vehicle features and equipment (detail). |
images | string[] | Full image gallery URLs (detail). |
sellerName | string | Seller or dealership name, the lead (detail). |
phone | string | Seller phone number, the lead (detail). |
whatsappPhone | string | Seller WhatsApp number (detail). |
version | string | Trim or version, for example 2.5 i Sport Hb At (detail). |
color | string | Exterior color (detail). |
hasFinancing | boolean | Whether financing is offered (detail). |
sellerLocation | string | Seller location (detail). |
dealerVerified | boolean | Whether the dealer is verified on Seminuevos (detail). |
youtubeVideoUrl | string | YouTube video link for the vehicle, or null (detail). |
observedAt | string | ISO 8601 timestamp of when the record was collected. |
error | string | null on success. On a failed run, a single item with a populated error field is written instead. |
Example output record
The hero record at the top of this page is a real record from a live run (input {"startUrl":"https://www.seminuevos.com/usados/-/autos","withDetails":true,"maxListings":10}), with the images array trimmed for length. A full run returns every photo URL.
Run via API and CLI
Start a run and wait for it to finish, then read the dataset. Replace <TOKEN> with your Apify API token.
Run synchronously and get dataset items in one call:
curl -X POST "https://api.apify.com/v2/acts/scrapers_lat~seminuevos-scraper/run-sync-get-dataset-items?token=<TOKEN>" \-H "Content-Type: application/json" \-d '{"startUrl":"https://www.seminuevos.com/usados/-/autos/-/nissan","maxListings":25}'
Start a run asynchronously:
curl -X POST "https://api.apify.com/v2/acts/scrapers_lat~seminuevos-scraper/runs?token=<TOKEN>" \-H "Content-Type: application/json" \-d '{"startUrl":"https://www.seminuevos.com/usados/-/autos","withDetails":true,"maxListings":100}'
Apify CLI:
apify call scrapers_lat/seminuevos-scraper \--input '{"startUrl":"https://www.seminuevos.com/usados/-/autos/-/mazda","maxListings":50}'
Fetch results
Every run writes to a dataset. Fetch items as JSON, CSV, or Excel by changing format:
# JSONcurl "https://api.apify.com/v2/datasets/<DATASET_ID>/items?token=<TOKEN>&clean=true&format=json"# CSVcurl "https://api.apify.com/v2/datasets/<DATASET_ID>/items?token=<TOKEN>&clean=true&format=csv"# Paginate large datasetscurl "https://api.apify.com/v2/datasets/<DATASET_ID>/items?token=<TOKEN>&offset=1000&limit=1000"
<DATASET_ID> is returned as defaultDatasetId in the run object. Use offset and limit to page through large result sets. clean=true drops empty and internal fields.
Billing and limits
- Pay per result. You are charged per listing returned (
resultevent). See the pricing tab for the current per-result price. - No charge on failure. If a run errors, the actor writes a single item with a populated
errorfield and does not charge for it. Empty runs cost nothing. - Spend cap respected. Set
maxTotalChargeUsdon the run; once reached, the actor stops emitting and charging further billable results. - Free Apify plans are capped at 10 listings per run. Upgrade for higher
maxListings. - Detail scraping is slower. With
withDetailson, each listing page is fetched individually to add features, gallery and seller contact.
FAQ and troubleshooting
A run returned 0 listings. Why?
The startUrl matched nothing. Open the URL in a browser to confirm it shows listings, and check that any filters in the URL are not too narrow. Zero-result runs are not charged.
How do I get the seller phone, features and photos?
Leave withDetails on (the default). The actor then opens each listing page and adds features, images, sellerName, phone and whatsappPhone.
How do I filter by brand, model or location?
Apply the filters on seminuevos.com in your browser and paste the resulting URL into startUrl. The actor scrapes whatever that URL returns.
Why is the description field short or a price fragment?
Many Seminuevos listings publish little or no free-text description, so the field reflects exactly what the page shows. It is returned as-is, never invented. The structured fields (features, version, color) carry the useful detail.
Does it cover countries other than Mexico? This actor targets Seminuevos.com (Mexico). Provide a seminuevos.com URL.
Is this an official Seminuevos tool? No. This actor is independent and has no affiliation with Seminuevos. It reads only publicly listed data. Use it in accordance with Seminuevos' terms.
Related scrapers
- Kavak Used Cars Scraper: Kavak used-car inventory across LATAM.
- Autocosmos Scraper: Autocosmos vehicle listings.
- Vivanuncios Mexico Scraper: Vivanuncios classified listings.
- TrueCar Listings Scraper: US used and new car listings from TrueCar.
- Neoauto Peru Scraper: Neoauto vehicle listings in Peru.
- Tucarro Colombia Scraper: Tucarro vehicle listings in Colombia.
More scrapers at scrapers.lat
Built and maintained by scrapers.lat, where we publish scrapers for US and Latin American public platforms: company registries, government data, finance, e-commerce and more. Browse the catalog or request a custom scraper at scrapers.lat.
Independent tool, not affiliated with Seminuevos. Accesses only publicly available listing data. Use in accordance with Seminuevos' terms of service.
