Discover/Com API
live

Com APIcarousell.com.my

Search used car listings on Carousell Malaysia and fetch detailed specs, pricing, mileage, and seller info via two structured endpoints.

Endpoint health
verified 7d ago
get_listing_details
search_cars
2/2 passing latest checkself-healing
Endpoints
2
Updated
26d ago

What is the Com API?

The Carousell Malaysia API gives developers access to used vehicle listings across the platform through 2 endpoints. Use search_cars to query inventory by keyword or category and receive paginated results with pricing, seller details, and thumbnails, then call get_listing_details with a listing ID to retrieve full vehicle specifications including transmission type, body type, condition, mileage, and photo arrays.

Try it
Number of results to return per request (tested up to 48).
Search keyword (e.g. 'Honda', 'Toyota Vios'). Empty string returns all listings in the category.
Collection/category filter ID. Use '32' for Cars for Sale.
api.parse.bot/scraper/9c353147-b7cb-4f76-b19c-d373236a0a2c/<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 POST 'https://api.parse.bot/scraper/9c353147-b7cb-4f76-b19c-d373236a0a2c/search_cars' \
  -H 'X-API-Key: $PARSE_API_KEY' \
  -H 'Content-Type: application/json' \
  -d '{
  "limit": "5",
  "query": "Honda",
  "category_id": "32"
}'
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 carousell-com-my-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.

"""Walkthrough: Carousell Malaysia Cars SDK — search listings and drill into details."""
from parse_apis.carousell_malaysia_cars_api import Carousell, ListingNotFound

client = Carousell()

# Search for Honda cars — limit caps total items fetched.
for car in client.listingsummaries.search(query="Honda", limit=3):
    print(car.title, car.price, car.location)

# Drill into the first result's full details via .details()
car = client.listingsummaries.search(query="Toyota Vios", limit=1).first()
if car:
    listing = car.details()
    print(listing.title, listing.price, listing.currency)
    print(listing.transmission_enum, listing.body_type_enum, listing.manufactured_year)
    print(listing.seller.username, listing.seller.feedback_score)

# Typed error handling for a missing listing
try:
    bad = client.listingsummaries.search(query="nonexistent_xyz_999", limit=1).first()
    if bad:
        bad.details()
except ListingNotFound as exc:
    print(f"Listing gone: {exc.listing_id}")

print("exercised: listingsummaries.search / ListingSummary.details / ListingNotFound")
All endpoints · 2 totalmissing one? ·

Full-text search over used car listings on Carousell Malaysia. query matches title and description; results are sorted by recency/relevance. Each result includes seller info, pricing, thumbnail, and location. Paginates via count parameter; use limit to control batch size.

Input
ParamTypeDescription
limitintegerNumber of results to return per request (tested up to 48).
querystringSearch keyword (e.g. 'Honda', 'Toyota Vios'). Empty string returns all listings in the category.
category_idstringCollection/category filter ID. Use '32' for Cars for Sale.
Response
{
  "type": "object",
  "fields": {
    "total": "string with formatted total count (e.g. '1,000+')",
    "results": "array of listing summary objects with id, title, price, description, seller, photo_url, location, likes_count",
    "has_more": "boolean indicating if more results are available"
  },
  "sample": {
    "data": {
      "total": "1,000+",
      "results": [
        {
          "id": "1247731810",
          "price": "RM32,800",
          "title": "Honda City 1.5 auto E Spec GM2 2014",
          "seller": {
            "id": "26350114",
            "name": "KSS ZCR",
            "username": "keretasewaselangorzcr"
          },
          "location": "Klang",
          "photo_url": "https://media.karousell.com/media/photos/products/2023/8/8/honda_city_15_auto_gm2_2014_1691464739_9ef26003_thumbnail.jpg",
          "description": "Honda City GM2 1.5 Auto Last Production 2014.",
          "likes_count": 20
        }
      ],
      "has_more": true
    },
    "status": "success"
  }
}

About the Com API

Search Used Car Listings

The search_cars endpoint accepts a query string (e.g. 'Honda Jazz', 'Toyota Vios'), an optional category_id (use '32' to scope results to Cars for Sale), and a limit parameter tested up to 48 results per call. Each result object in the results array includes id, title, price, description, seller, photo_url, location, and likes_count. The total field returns a formatted count string such as '1,000+', and has_more signals whether additional pages exist.

Retrieve Listing Details

Passing a listing_id (obtained from search_cars results) to get_listing_details returns a single data object with the full listing record. This includes price, currency, condition, description, time_created, likes_count, location_name, photos (an array of image URLs), and vehicle-specific attributes such as transmission and body_type. The seller profile is also embedded in this response.

Coverage and Pagination

Listings are sorted by recency in search_cars, making the endpoint suitable for monitoring newly posted inventory. Because the API returns a has_more boolean, callers can implement polling loops to page through large result sets. The listing_id field in search results maps directly to the listing_id input of get_listing_details, so enriching a result set with full specs requires one additional call per listing.

Reliability & maintenanceVerified

The Com API is a managed, monitored endpoint for carousell.com.my — not a raw scraper you maintain. Every endpoint is automatically health-checked on a schedule, and when carousell.com.my 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 carousell.com.my 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
7d ago
Latest check
2/2 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 price-tracking dashboard for specific makes and models using price fields from repeated search_cars calls
  • Aggregate market data on used car availability in Malaysia by querying different keywords and recording total counts over time
  • Display filtered used car listings in a consumer-facing app using photo_url, title, price, and location from search results
  • Compare mileage and condition across listings by batch-fetching get_listing_details for IDs returned from a model-specific search
  • Alert users to newly posted listings by polling search_cars with has_more and storing seen id values to detect new entries
  • Enrich a CRM or inventory tool with seller profile data and full vehicle specs pulled from get_listing_details
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 Carousell have an official developer API?+
Carousell does not publish a publicly documented developer API or offer API keys to third parties. There is no official endpoint reference or partner program listed on carousell.com.my as of mid-2025.
What vehicle attributes does `get_listing_details` return beyond price?+
get_listing_details returns transmission, body_type, condition, description, time_created, likes_count, location_name, and a photos array, in addition to price and currency. Seller profile information is also included in the same response object.
Does `search_cars` support filtering by price range or mileage?+
The current search_cars endpoint accepts query, category_id, and limit as inputs. Filtering by price range, mileage, year, or other attributes is not currently exposed. You can fork this API on Parse and revise it to add those filter parameters.
Are non-car categories on Carousell Malaysia accessible through this API?+
The API is scoped to vehicle listings. Other Carousell Malaysia categories such as electronics, fashion, or home goods are not currently covered. You can fork it on Parse and revise to add endpoints targeting different category IDs.
How should I paginate through a large result set from `search_cars`?+
Check the has_more boolean in each response. When it is true, additional listings beyond the current limit are available. Implement offset or cursor logic in your calling code to continue fetching until has_more returns false.
Page content last updated . Spec covers 2 endpoints from carousell.com.my.
Related APIs in AutomotiveSee all →
mudah.my API
Search and monitor used vehicle listings from Malaysia's largest marketplace, retrieving detailed information like make, model, year, mileage, and pricing for both cars and motorcycles. Get real-time access to specific listings and filter results by brand to find the perfect vehicle deal.
sgcarmart.com API
Search and compare used cars on Singapore's market with detailed pricing, specifications, and deregistration values. Get comprehensive information on vehicle models, features, and market statistics to make informed buying decisions.
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.
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.
cardekho.com API
Search and browse used and new car listings with detailed vehicle information, pricing, and specifications from CarDekho.com. View immersive 360-degree vehicle imagery to inspect cars from every angle before making a purchase decision.
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.
carsforsale.com API
Search vehicle listings and browse detailed car inventory by make, model, and trim to find the perfect vehicle on CarsForSale.com. Access comprehensive listing details including pricing, specifications, and availability all in one place.
carfax.com API
carfax.com API