clasificadosonline.com APIclasificadosonline.com ↗
Access Puerto Rico classifieds data via API: search car listings, rental properties, and jobs from ClasificadosOnline.com with location, price, and make/model filters.
curl -X GET 'https://api.parse.bot/scraper/8dc6bd9b-3b59-4830-92d5-fbed016ec30f/search_car_listings?key=Toyota&offset=0' \ -H 'X-API-Key: $PARSE_API_KEY'
Search for car listings on ClasificadosOnline.com with various filters including make, model, year range, price range, and location. Returns paginated results.
| Param | Type | Description |
|---|---|---|
| key | string | Search keyword to filter listings |
| marca | string | Car make ID (use get_car_makes_and_models to find IDs). 0 means all makes. |
| modelo | string | Car model ID. 0 means all models. |
| offset | integer | Pagination offset (increments of 30) |
| pueblo | string | Town/city filter. Use % for all locations. |
| tipo_c | string | Vehicle type filter. 0 means all types. |
| to_year | string | Maximum year filter |
| from_year | string | Minimum year filter. 0 means no minimum. |
| low_price | string | Minimum price filter |
| high_price | string | Maximum price filter |
{
"type": "object",
"fields": {
"total": "integer total number of matching listings",
"offset": "integer current pagination offset",
"listings": "array of car listing summaries with id, title, price, image_url, detail_url"
},
"sample": {
"data": {
"total": 3000,
"offset": 0,
"listings": [
{
"id": "13015570",
"price": "$39,995",
"title": "2024 Jeep WranglerJeepWrangler2024AutomaticaMillasArecibo",
"image_url": "https://imgcache.clasificadosonline.com/FF/T/2026/5/14/5142026125931AMjjyjtkg1.jpg",
"detail_url": "https://www.clasificadosonline.com/UDTransDetail.asp?AutoNumAnuncio=13015570"
}
]
},
"status": "success"
}
}About the clasificadosonline.com API
This API exposes 6 endpoints covering ClasificadosOnline.com, Puerto Rico's classifieds platform for vehicles, rental properties, and employment. Use search_car_listings to query cars by make, model, year range, price, and town, then fetch full detail — including mileage, transmission, and photo URLs — via get_car_listing_detail. Rental and job search are covered by dedicated endpoints with their own filter sets.
Car Listings
The search_car_listings endpoint accepts filters for marca (make ID), modelo (model ID), from_year, to_year, pueblo (town), and price-adjacent keyword searches. Make and model IDs are not arbitrary strings — use get_car_makes_and_models first to retrieve the full list of valid id and name pairs. Pagination is controlled by offset in increments of 30; the total field in every response tells you how many records exist so you can page through the full result set. get_car_listing_detail returns structured fields: make, model, year, price, mileage, location, description, and an array of photos URLs.
Rental Listings
search_rental_listings filters by pueblo, bedrooms, category, area (neighborhood keyword), low_price, and high_price for monthly rent. Search results include bedrooms, bathrooms, type, and location at the summary level. The detail endpoint, get_rental_listing_detail, adds sq_ft, parking, and description, plus a photos array. The city field in detail responses maps to the town returned in the search summary location field.
Jobs
search_jobs accepts keyword, category, pueblo, and offset. Each result in the listings array includes company, title, category, location, and a detail_url. Note that the jobs endpoint returns summary data only — there is no separate job detail endpoint in the current API surface, so job-level description and contact information are accessible via the detail_url link in each result.
- Build a Puerto Rico car price tracker that monitors listing prices by make and model over time using
search_car_listingsandget_car_listing_detail. - Aggregate rental inventory by town and bedroom count across Puerto Rico using
search_rental_listingswith thepuebloandbedroomsfilters. - Compile a dataset of active job openings by category and municipality from
search_jobsfor Puerto Rico labor market analysis. - Create a vehicle valuation reference tool using
mileage,year,make,model, andpricefields from car detail responses. - Build a rental alert system that pages through listings with
low_priceandhigh_pricebounds and surfaces new additions by comparing stored IDs. - Generate a structured directory of car makes available on the platform using
get_car_makes_and_modelsfor filter UI population.
| Tier | Price | Credits/month | Rate limit |
|---|---|---|---|
| Free | $0/mo | 100 | 5 req/min |
| Hobby | $30/mo | 1,000 | 20 req/min |
| Developer | $100/mo | 5,000 | 250 req/min |
One credit = one API call regardless of which marketplace API you call. Exceeding the rate limit returns a 429 response. Authenticate with the X-API-Key header.
Does ClasificadosOnline.com have an official developer API?+
What does `get_car_listing_detail` return beyond what the search endpoint shows?+
search_car_listings returns summary-level fields: id, title, price, image_url, and detail_url. The detail endpoint adds make, model, year, mileage, location, description, and a full photos array with multiple image URLs — useful when you need complete vehicle information rather than just enough to display a result card.How does pagination work across the search endpoints?+
search_car_listings, search_rental_listings, search_jobs) use an offset parameter. Results are returned in pages of 30. The total field in each response gives the total matching count, so you can calculate how many pages exist and iterate by incrementing offset by 30 until you have all records.Does the jobs endpoint return full job descriptions?+
search_jobs returns listing summaries — company, title, category, location, and detail_url — but there is no job detail endpoint that fetches the full description or contact information. You can fork this API on Parse and revise it to add a job detail endpoint using the detail_url from each result.Does the rental detail endpoint return pets or utilities policy?+
get_rental_listing_detail response includes parking, bedrooms, bathrooms, sq_ft, price, description, and photos. Pets policy is not a discrete structured field in the current response shape, though it may appear in the free-text description. You can fork this API on Parse and revise it to parse and surface pets policy as a dedicated field if the source listing exposes it.