# Riyasewana — 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.

> Browse vehicle listings from Sri Lanka's largest marketplace, search by category and filters, and access detailed information about specific cars, bikes, and other vehicles. Get comprehensive vehicle data including listings organized by category to find exactly what you're looking for.

**Category:** Automotive | **Website:** [riyasewana.com/](https://riyasewana.com/) | **Docs:** [parse.bot/marketplace/65feaead-5e7f-4165-9a20-f5b9001c39b6/riyasewana-com-api](https://parse.bot/marketplace/65feaead-5e7f-4165-9a20-f5b9001c39b6/riyasewana-com-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-riyasewana-com-api-65feaead/`
**Auth:** `Authorization: Bearer <LOCUS_API_KEY>`

## Endpoints

### get_listing_detail

Fetch full details for a specific vehicle listing including specifications, options, seller info, and images. The listing URL is obtained from get_listings or search_vehicles results. Contact phone number may not always be available as it requires JavaScript interaction on the site.

**Estimated cost:** Metered

| Field | Type | Required | Description |
|-------|------|----------|-------------|
| `url` | string | Yes | Full URL of the vehicle listing (e.g., https://riyasewana.com/buy/toyota-prius-sale-colombo-12345678). |

```bash
curl -X POST https://api.paywithlocus.com/api/wrapped/parse-riyasewana-com-api-65feaead/get_listing_detail \
  -H "Authorization: Bearer YOUR_LOCUS_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{"url":"<string>"}'
```

### get_listings

Fetch paginated vehicle listings for a given category. Returns up to 40 listings per page. Categories map to the site's main navigation sections. Pagination is page-number based; total_results reflects the category's full inventory size.

**Estimated cost:** Metered

| Field | Type | Required | Description |
|-------|------|----------|-------------|
| `category` | string | No | Vehicle category slug. |
| `page` | integer | No | Page number for pagination. |

```bash
curl -X POST https://api.paywithlocus.com/api/wrapped/parse-riyasewana-com-api-65feaead/get_listings \
  -H "Authorization: Bearer YOUR_LOCUS_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{"category":"<string>","page":"<integer>"}'
```

### search_vehicles

Search for vehicles with specific filters including make, model, city, year range, price range, transmission, and fuel type. Returns up to 40 listings per page. The search_url in the response is the resolved URL used for pagination. All filter params are optional; omitting all returns the full inventory.

**Estimated cost:** Metered

| Field | Type | Required | Description |
|-------|------|----------|-------------|
| `city` | string | No | City name (e.g., Colombo, Kandy). |
| `fuel` | string | No | Fuel type filter. |
| `make` | string | No | Vehicle make (e.g., Toyota, Honda, Suzuki). |
| `model` | string | No | Vehicle model (e.g., Prius, Civic, Alto). |
| `page` | integer | No | Page number for pagination. |
| `price_max` | string | No | Maximum price in LKR. |
| `price_min` | string | No | Minimum price in LKR. |
| `transmission` | string | No | Transmission type filter. |
| `year_max` | string | No | Maximum year of manufacture. |
| `year_min` | string | No | Minimum year of manufacture. |

```bash
curl -X POST https://api.paywithlocus.com/api/wrapped/parse-riyasewana-com-api-65feaead/search_vehicles \
  -H "Authorization: Bearer YOUR_LOCUS_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{"city":"<string>","fuel":"<string>","make":"<string>","model":"<string>","page":"<integer>","price_max":"<string>","price_min":"<string>","transmission":"<string>","year_max":"<string>","year_min":"<string>"}'
```
