PatioTuerca Used Cars Scraper (Ecuador)
Pricing
from $17.00 / 1,000 results
PatioTuerca Used Cars Scraper (Ecuador)
Scrape used and semi-new car listings from PatioTuerca in Ecuador with make, model, year, price in USD, mileage, transmission, fuel type, body type, city, seller type and the seller's public contact phone. Filter by make and model. Export to JSON, CSV or Excel.
Pricing
from $17.00 / 1,000 results
Rating
0.0
(0)
Developer
Scrapers Lat
Maintained by CommunityActor stats
0
Bookmarked
2
Total users
1
Monthly active users
14 days ago
Last modified
Categories
Share
PatioTuerca Used Cars Scraper (Ecuador)
Here is one real result, with every field the actor returns:
{"listingId": "1940974","title": "Toyota Highlander Hibrido 2009","make": "Toyota","model": "Highlander Hibrido","year": 2009,"priceAmount": 15800,"priceCurrency": "USD","kilometers": 126500,"transmission": "Automática","fuelType": "Gasolina","bodyType": "Todoterreno","color": "Vino","traction": "4 x 2","engineCc": 3300,"condition": "usado","city": "Cuenca","country": "Ecuador","sellerType": "DEALER","sellerName": "Autocomercio Astudillo","sellerPhone": "0984147408","sellerId": "1609","listingUrl": "https://ecuador.patiotuerca.com/vehicle/autos-toyota-highlander-hibrido-cuenca-2009/1940974","imageUrl": "https://images.patiotuerca.com/thumbs/w/300x177xC/amz_ptf_ecuador/202615/1940974/o_o/pt_1940974_6690677.jpg","searchTerm": "Toyota","source": "PatioTuerca","observedAt": "2026-08-10T14:34:42.245Z"}
The most complete PatioTuerca used-car scraper available. It returns every listing field the marketplace exposes for each vehicle, including price, mileage, full specs, seller name and phone, and location, across the Ecuador, Peru, and Panama sites, so you can build price comparisons and dealer lead lists by make or model.
📥 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 takes a list of makes or "make model" phrases, picks the PatioTuerca country site you choose, paginates through the matching vehicle listings, and writes one normalized record per car to the run's dataset. Each record carries the price and currency, mileage, transmission, fuel type, body type, engine size, color, traction, condition, location, and the seller's name and phone. Each search term is scraped independently. Leave searches empty to scrape all available listings. Missing source values are returned as null, never invented.
Quickstart
Open the actor, paste this into the input, and press Run. It returns 10 Toyota, Chevrolet, and Kia listings in Ecuador.
{"searches": ["Toyota", "Chevrolet", "Kia"],"country": "ecuador","maxCars": 10}
Use make-only terms (Toyota) or make model phrases (Toyota Hilux, Chevrolet Sail). Switch country to peru or panama for those marketplaces.
Input reference
| Field | Type | Required | Default | Description |
|---|---|---|---|---|
searches | string[] | no | ["Toyota", "Chevrolet", "Kia"] | Makes or make model phrases to collect, one per entry. Leave empty to scrape all available listings. One run covers every entry. |
country | enum | no | ecuador | PatioTuerca marketplace: ecuador, peru, panama. |
maxCars | integer | no | 10 | Maximum vehicle listings to collect across all searches (1 to 1000000). |
Output reference
One dataset item per vehicle listing. Types: string, integer, or null when the source value is absent.
| Field | Type | Description |
|---|---|---|
listingId | string | PatioTuerca listing identifier. |
title | string | Listing title (make, model, year). |
make | string | Vehicle make. |
model | string | Vehicle model. |
year | integer | Model year. |
priceAmount | integer | Asking price. |
priceCurrency | string | Currency code, for example USD. |
kilometers | integer | Odometer reading in kilometers. |
transmission | string | Transmission type, for example Automática. |
fuelType | string | Fuel type, for example Gasolina. |
bodyType | string | Body style, for example Todoterreno. |
color | string | Exterior color. |
traction | string | Drivetrain, for example 4 x 4. |
engineCc | integer | Engine displacement in cubic centimeters. |
condition | string | Condition, for example usado. |
city | string | City where the vehicle is listed. |
country | string | Country of the marketplace. |
sellerType | string | Seller type, for example DEALER. |
sellerName | string | Seller or dealership name. |
sellerPhone | string | Seller phone number. |
sellerId | string | Seller identifier. |
listingUrl | string | Canonical listing URL. |
imageUrl | string | Main listing image URL. |
searchTerm | string | The search term this listing was found under. |
source | string | Data source. Always PatioTuerca. |
observedAt | string | ISO 8601 timestamp of when the record was collected. |
Example output record
Real record from a live run (input {"searches": ["Toyota", "Chevrolet", "Kia"], "country": "ecuador", "maxCars": 10}):
{"listingId": "1940507","title": "Toyota 4Runner SR5 2013","make": "Toyota","model": "4Runner SR5","year": 2013,"priceAmount": 48000,"priceCurrency": "USD","kilometers": 88873,"transmission": "Automática","fuelType": "Gasolina","bodyType": "Todoterreno","color": "Gris","traction": "4 x 4","engineCc": 4000,"condition": "usado","city": "Cuenca","country": "Ecuador","sellerType": "DEALER","sellerName": "Autocomercio Astudillo","sellerPhone": "0984147408","sellerId": "1609","listingUrl": "https://ecuador.patiotuerca.com/vehicle/autos-toyota-4runner-sr5-cuenca-2013/1940507","imageUrl": "https://images.patiotuerca.com/thumbs/w/300x177xC/amz_ptf_ecuador/20251230/1940507/o_o/pt_1940507_4369421.jpg","searchTerm": "Toyota","source": "PatioTuerca","observedAt": "2026-08-10T14:34:42.245Z"}
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~patiotuerca-scraper/run-sync-get-dataset-items?token=<TOKEN>" \-H "Content-Type: application/json" \-d '{"searches":["Toyota","Chevrolet"],"country":"ecuador","maxCars":25}'
Start a run asynchronously:
curl -X POST "https://api.apify.com/v2/acts/scrapers_lat~patiotuerca-scraper/runs?token=<TOKEN>" \-H "Content-Type: application/json" \-d '{"searches":["Toyota Hilux"],"country":"peru","maxCars":100}'
Apify CLI:
apify call scrapers_lat/patiotuerca-scraper \--input '{"searches":["Kia"],"country":"panama"}'
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 vehicle listing returned (
resultevent). See the pricing tab for the current per-result price. - No charge on failure. 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 vehicle listings per run. Upgrade for higher
maxCars.
FAQ and troubleshooting
A run returned 0 records. Why?
The search matched no listings on the chosen country site. Try a make-only term or switch country. Zero-result runs are not charged.
Which countries are supported?
Ecuador, Peru, and Panama. Set country to the marketplace you want.
Can I scrape a specific model?
Yes. Use a make model phrase such as Toyota Hilux or Chevrolet Sail in searches. Mix multiple terms in one run.
How do I get all listings, not just a few makes?
Leave searches empty. The actor then collects all available listings up to maxCars.
Does each record include seller contact?
Yes, when the listing publishes it. sellerName and sellerPhone carry the dealer or private seller contact.
Is this an official PatioTuerca tool? No. This actor is independent and reads only publicly available listing data. Use the results in accordance with the source's terms and applicable laws.
Related scrapers
- Chileautos Scraper: Chilean used-car listings.
- Kavak Used Cars Scraper: Kavak used-car listings.
- Carroya Colombia Scraper: Colombian vehicle listings.
- Copart Scraper: Copart vehicle auction listings.
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 PatioTuerca. Accesses only publicly available listing data. Use the results in accordance with the source's terms and applicable laws.
