Discover/clasificadosonline.com API
live

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.

Endpoints
6
Updated
4mo ago
Try it
Search keyword to filter listings
Car make ID (use get_car_makes_and_models to find IDs). 0 means all makes.
Car model ID. 0 means all models.
Pagination offset (increments of 30)
Town/city filter. Use % for all locations.
Vehicle type filter. 0 means all types.
Maximum year filter
Minimum year filter. 0 means no minimum.
Minimum price filter
Maximum price filter
api.parse.bot/scraper/8dc6bd9b-3b59-4830-92d5-fbed016ec30f/<endpoint>
Ready to send
Fill in the parameters and hit sign in to send to see live response data here.
Use it in your codegrab a free API key at signup
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'
All endpoints · 6 totalclick to expand

Search for car listings on ClasificadosOnline.com with various filters including make, model, year range, price range, and location. Returns paginated results.

Input
ParamTypeDescription
keystringSearch keyword to filter listings
marcastringCar make ID (use get_car_makes_and_models to find IDs). 0 means all makes.
modelostringCar model ID. 0 means all models.
offsetintegerPagination offset (increments of 30)
pueblostringTown/city filter. Use % for all locations.
tipo_cstringVehicle type filter. 0 means all types.
to_yearstringMaximum year filter
from_yearstringMinimum year filter. 0 means no minimum.
low_pricestringMinimum price filter
high_pricestringMaximum price filter
Response
{
  "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.

Common use cases
  • Build a Puerto Rico car price tracker that monitors listing prices by make and model over time using search_car_listings and get_car_listing_detail.
  • Aggregate rental inventory by town and bedroom count across Puerto Rico using search_rental_listings with the pueblo and bedrooms filters.
  • Compile a dataset of active job openings by category and municipality from search_jobs for Puerto Rico labor market analysis.
  • Create a vehicle valuation reference tool using mileage, year, make, model, and price fields from car detail responses.
  • Build a rental alert system that pages through listings with low_price and high_price bounds and surfaces new additions by comparing stored IDs.
  • Generate a structured directory of car makes available on the platform using get_car_makes_and_models for filter UI population.
Pricing & limitsSee full pricing →
TierPriceCredits/monthRate limit
Free$0/mo1005 req/min
Hobby$30/mo1,00020 req/min
Developer$100/mo5,000250 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.

Frequently asked questions
Does ClasificadosOnline.com have an official developer API?+
ClasificadosOnline.com does not publish an official public developer API or documented data access program. This API provides structured access to the data available on the site.
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?+
All three 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?+
Not currently. 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?+
The 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.
Page content last updated . Spec covers 6 endpoints from clasificadosonline.com.
Related APIs in MarketplaceSee all →
craigslist.org API
Search and retrieve Craigslist listings for apartments, vehicles, jobs, services, and other categories across all regional sites to find exactly what you're looking for. Get detailed information about specific listings, browse by location and category, and compare options all in one place.
chileautos.cl API
Search car listings and get detailed vehicle information from Chile's largest auto marketplace, including brands, specifications, and pricing. Find your next vehicle by browsing available cars with complete details all in one place.
autos.mercadolibre.com.ar API
Search for used and new cars on MercadoLibre Argentina and instantly retrieve detailed listings with brand, model, year, mileage, price, location, seller information, and photos. Build car comparison tools, price tracking apps, or market analysis dashboards with comprehensive vehicle data from Argentina's largest online marketplace.
cars.com API
Search for vehicles on Cars.com using filters like price, make, and model, then get detailed specifications and dealer inventory information for any listing you're interested in. Access comprehensive vehicle details including pricing, features, and dealer contact information all in one place.
craigslist.org API
Search Craigslist listings across any region and instantly access structured data including prices, locations, coordinates, images, and direct URLs. Find exactly what you're looking for with organized sale listings that are easy to filter and analyze.
exoticcartrader.com API
Search and browse exotic, collector, and classic car listings with detailed vehicle information including specs, VIN numbers, photos, and lot details. Discover featured vehicles by make or category, read expert reviews, and stay updated with industry blog posts all in one place.
losangeles.craigslist.org API
Search and browse Craigslist Los Angeles listings with powerful filtering options, including keyword search, price ranges, category filters, and location-based results. Retrieve full listing details across all major categories including for sale, housing, jobs, and more.
carsales.com API
Search for cars on Carsales and retrieve detailed listings with technical specifications, makes, and models. Filter and browse available vehicles by make to find exactly what you're looking for.