PatioTuerca Used Cars Scraper (Ecuador) avatar

PatioTuerca Used Cars Scraper (Ecuador)

Pricing

from $17.00 / 1,000 results

Go to Apify Store
PatioTuerca Used Cars Scraper (Ecuador)

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

Scrapers Lat

Maintained by Community

Actor stats

0

Bookmarked

2

Total users

1

Monthly active users

14 days ago

Last modified

Share

PatioTuerca Used Cars Scraper (Ecuador)

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

Apify Coverage Output Billing

Table of contents

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

FieldTypeRequiredDefaultDescription
searchesstring[]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.
countryenumnoecuadorPatioTuerca marketplace: ecuador, peru, panama.
maxCarsintegerno10Maximum 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.

FieldTypeDescription
listingIdstringPatioTuerca listing identifier.
titlestringListing title (make, model, year).
makestringVehicle make.
modelstringVehicle model.
yearintegerModel year.
priceAmountintegerAsking price.
priceCurrencystringCurrency code, for example USD.
kilometersintegerOdometer reading in kilometers.
transmissionstringTransmission type, for example Automática.
fuelTypestringFuel type, for example Gasolina.
bodyTypestringBody style, for example Todoterreno.
colorstringExterior color.
tractionstringDrivetrain, for example 4 x 4.
engineCcintegerEngine displacement in cubic centimeters.
conditionstringCondition, for example usado.
citystringCity where the vehicle is listed.
countrystringCountry of the marketplace.
sellerTypestringSeller type, for example DEALER.
sellerNamestringSeller or dealership name.
sellerPhonestringSeller phone number.
sellerIdstringSeller identifier.
listingUrlstringCanonical listing URL.
imageUrlstringMain listing image URL.
searchTermstringThe search term this listing was found under.
sourcestringData source. Always PatioTuerca.
observedAtstringISO 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:

# JSON
curl "https://api.apify.com/v2/datasets/<DATASET_ID>/items?token=<TOKEN>&clean=true&format=json"
# CSV
curl "https://api.apify.com/v2/datasets/<DATASET_ID>/items?token=<TOKEN>&clean=true&format=csv"
# Paginate large datasets
curl "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 (result event). See the pricing tab for the current per-result price.
  • No charge on failure. Empty runs cost nothing.
  • Spend cap respected. Set maxTotalChargeUsd on 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.

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.