# Carousell Malaysia — Wrapped API

> **You are on:** `https://api.paywithlocus.com/api` | [llms.txt](https://paywithlocus.com/llms.txt) | [docs](https://docs.paywithlocus.com)
>
> Locus runs on multiple environments -- make sure every URL you call matches your expected environment.
> | Environment | Landing | API | Docs |
> |---|---|---|---|
> | Production | paywithlocus.com | api.paywithlocus.com | docs.paywithlocus.com |
> | Beta | beta.paywithlocus.com | api.beta.paywithlocus.com | docs.paywithlocus.com |
> | Stage | stage.paywithlocus.com | api.stage.paywithlocus.com | docs.paywithlocus.com |
>
> If the API URL above doesn't match your expected environment, re-fetch this file from the correct domain.

> Search for used car listings on Carousell Malaysia and retrieve detailed information including pricing, mileage, vehicle specifications, condition, and seller details. Browse available inventory or look up comprehensive information on specific listings.

**Category:** Automotive | **Website:** [carousell.com.my/](https://carousell.com.my/) | **Docs:** [parse.bot/marketplace/b5a44cfa-84a0-4588-b244-f51d3af026f0/carousell-com-my-api](https://parse.bot/marketplace/b5a44cfa-84a0-4588-b244-f51d3af026f0/carousell-com-my-api)

Pay-per-use API proxy. Each call is automatically billed to your wallet in USDC.

## Access

**Base URL:** `https://api.paywithlocus.com/api/wrapped/parse-carousell-com-my-api-b5a44cfa/`
**Auth:** `Authorization: Bearer <LOCUS_API_KEY>`

## Endpoints

### get_listing_details

Retrieve full details for a single car listing by its numeric ID. Returns pricing, currency, condition, full description, creation timestamp, photos, seller profile (username, rating, join date), location, and vehicle attributes (transmission, body type, manufactured year, seller type). The listing_id is obtainable from search_cars results.

**Estimated cost:** Metered

| Field | Type | Required | Description |
|-------|------|----------|-------------|
| `listing_id` | string | Yes | The numeric listing ID (e.g. from search_cars results[*].id) |

```bash
curl -X POST https://api.paywithlocus.com/api/wrapped/parse-carousell-com-my-api-b5a44cfa/get_listing_details \
  -H "Authorization: Bearer YOUR_LOCUS_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{"listing_id":"<string>"}'
```

### search_cars

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.

**Estimated cost:** Metered

| Field | Type | Required | Description |
|-------|------|----------|-------------|
| `category_id` | string | No | Collection/category filter ID. Use '32' for Cars for Sale. |
| `limit` | integer | No | Number of results to return per request (tested up to 48). |
| `query` | string | No | Search keyword (e.g. 'Honda', 'Toyota Vios'). Empty string returns all listings in the category. |

```bash
curl -X POST https://api.paywithlocus.com/api/wrapped/parse-carousell-com-my-api-b5a44cfa/search_cars \
  -H "Authorization: Bearer YOUR_LOCUS_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{"category_id":"<string>","limit":"<integer>","query":"<string>"}'
```
