Discover/ClasificadosOnline API
live

ClasificadosOnline 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.

Endpoint health
verified 3d ago
get_car_makes_and_models
get_rental_listing_detail
search_car_listings
search_rental_listings
get_car_listing_detail
6/6 passing latest checkself-healing
Endpoints
6
Updated
18d ago

What is the ClasificadosOnline 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.

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.
Call it over HTTPgrab a free API key at signup
curl -X GET 'https://api.parse.bot/scraper/8dc6bd9b-3b59-4830-92d5-fbed016ec30f/search_car_listings?marca=4&modelo=0&offset=0&pueblo=%25&tipo_c=0&to_year=2026&from_year=2015&low_price=0&high_price=50000' \
  -H 'X-API-Key: $PARSE_API_KEY'
Python SDK · recommended

Typed, relational, agent-ready

A generated client with real types, enums, and the links between objects — the structure a flat JSON response can't carry. Autocompletes in your editor and reads cleanly to coding agents.

  • Fully typed · autocompletes
  • Objects link to objects
  • Typed errors & pagination

Typed Python client. Set up the SDK in your uv project, then pull this API’s typed client:

uv add parse-sdk
uv run parse init
uv run parse add --marketplace clasificadosonline-com-api

uv run parse add --marketplace pulls a pinned snapshot of this canonical API — it won’t change underneath you. To customize it, subscribe and swap to your own copy.

"""ClasificadosOnline: search cars, rentals, and jobs in Puerto Rico."""
from parse_apis.ClasificadosOnline_Puerto_Rico_API import (
    ClasificadosOnline, CarListingSummary, CarListing, ListingNotFound,
)

client = ClasificadosOnline()

# Browse available car makes to find valid filter IDs.
for make in client.car_makes.list(limit=5):
    print(make.name, make.id)

# Search for cars under $40,000, year 2020+.
car = client.car_listing_summaries.search(
    from_year="2020", high_price="40000", limit=1
).first()

# Drill into the first result for full detail (mileage, transmission, photos).
if car:
    detail = car.details()
    print(detail.full_title, detail.price, detail.mileage, detail.transmission)

# Fetch a car listing by ID directly.
try:
    full = client.car_listings.get(id="13014409")
    print(full.make, full.model, full.year, full.location)
except ListingNotFound as exc:
    print(f"Listing gone: {exc}")

# Search rental properties in San Juan.
for rental in client.rental_listing_summaries.search(pueblo="San Juan", limit=3):
    print(rental.title, rental.price, rental.bedrooms)

# Search jobs by keyword.
for job in client.job_listings.search(keyword="engineer", limit=3):
    print(job.title, job.company, job.location)

print("exercised: car_makes.list / car_listing_summaries.search / car.details / car_listings.get / rental_listing_summaries.search / job_listings.search")
All endpoints · 6 totalmissing one? ·

Search for car listings on ClasificadosOnline.com with various filters including make, model, year range, price range, and location. Returns paginated results in batches of 30. Use get_car_makes_and_models to find valid make IDs.

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": "13014409",
          "price": "$25,995",
          "title": "Kia Carnival LX 2023, hasta 8 pasajerosKiaCarnival2023AutomaticaMillas 68000Aguadilla",
          "image_url": "https://imgcache.clasificadosonline.com/PP/T/2026/5/12/512202621641PMo1hicgli.jpg",
          "detail_url": "https://www.clasificadosonline.com/UDTransDetail.asp?AutoNumAnuncio=13014409"
        }
      ]
    },
    "status": "success"
  }
}

About the ClasificadosOnline API

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.

Reliability & maintenanceVerified

The ClasificadosOnline API is a managed, monitored endpoint for clasificadosonline.com — not a raw scraper you maintain. Every endpoint is automatically health-checked on a schedule, and when clasificadosonline.com changes and a check fails, the API is automatically queued for repair and re-verified. It is built to keep working as the site underneath it changes.

This isn't an official clasificadosonline.com API — it's an independent, maintained REST wrapper over public data. Where the source has no official API (or only a limited one), Parse gives you a stable contract over a source that never promised one, and keeps it current. Need a new endpoint or field? You can revise it yourself in plain English and the agent rebuilds it against the live site in minutes — contributing the change back to the shared API is free.

Last verified
3d ago
Latest check
6/6 endpoints passing
Maintenance
Monitored & self-healing
Will this API break when the source site changes?+
It's built not to. Every endpoint is health-checked on a schedule with automated test probes. When the source site changes and a check fails, the API is automatically queued for repair and re-verified — that's the self-healing layer. Each API page shows when its endpoints were last verified. And because marketplace APIs are shared, any fix reaches everyone using it.
Is this an official API from the source site?+
No — Parse APIs are independent, managed REST wrappers over publicly available data. That is the point: where a site has no official API (or only a limited one), Parse gives you a maintained, monitored endpoint for that data and keeps it working as the site changes — so you get a stable contract over a source that never promised one.
Can I fix or extend this API myself if I need a new endpoint or field?+
Yes — and you don't have to wait on us. This API was generated by the Parse agent, which stays attached. Describe the change in plain English ("add an endpoint that returns reviews", "fix the price field") in the revise box on the API page or via the revise_api MCP tool, and the agent rebuilds it against the live site in minutes. Contributing the change back to the public API is free.
What happens if I call an endpoint that has an issue?+
Errors are machine-readable: a bad call returns a clean status with the list of available endpoints and a repair hint, so an agent (or you) can recover or trigger a fix instead of failing silently. Confirmed failures feed the automatic repair queue.
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,000100 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.
coches.net API
coches.net API