# Lazada (Thailand) — 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 products and browse categories on Lazada Thailand to find detailed information like prices, descriptions, and availability. Discover items by keyword or category to compare specifications and make informed purchasing decisions.

**Category:** E-commerce | **Website:** [lazada.co.th/](https://lazada.co.th/) | **Docs:** [parse.bot/marketplace/5edf324c-e6fd-489f-82f2-e8f23f204ebb/lazada-co-th-api](https://parse.bot/marketplace/5edf324c-e6fd-489f-82f2-e8f23f204ebb/lazada-co-th-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-lazada-co-th-api-5edf324c/`
**Auth:** `Authorization: Bearer <LOCUS_API_KEY>`

## Endpoints

### get_category_listings

Browse products within a specific Lazada Thailand category using its URL slug. Returns up to 40 products per page. The slug corresponds to the path segment in lazada.co.th URLs (e.g. 'shop-tablet', 'shop-smartphones').

**Estimated cost:** Metered

| Field | Type | Required | Description |
|-------|------|----------|-------------|
| `category_slug` | string | Yes | Category URL slug as it appears in the lazada.co.th URL path (e.g. 'shop-tablet', 'shop-smartphones') |
| `page` | integer | No | Page number for pagination (1-based) |

```bash
curl -X POST https://api.paywithlocus.com/api/wrapped/parse-lazada-co-th-api-5edf324c/get_category_listings \
  -H "Authorization: Bearer YOUR_LOCUS_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{"category_slug":"<string>","page":"<integer>"}'
```

### get_product_details

Get comprehensive product details by parsing the product detail page. Returns title, brand, highlights (HTML specs), SKU variants, SKU pricing/quantity info, and image galleries. Uses the item ID from search_products or get_category_listings results. Makes additional requests to fetch per-SKU pricing (sale price from installments endpoint, original price from individual SKU pages).

**Estimated cost:** Metered

| Field | Type | Required | Description |
|-------|------|----------|-------------|
| `item_id` | string | Yes | The product item ID (itemId field from search_products or get_category_listings results) |

```bash
curl -X POST https://api.paywithlocus.com/api/wrapped/parse-lazada-co-th-api-5edf324c/get_product_details \
  -H "Authorization: Bearer YOUR_LOCUS_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{"item_id":"<string>"}'
```

### search_products

Full-text search over Lazada Thailand product listings. Returns up to 40 products per page with name, price, discount, rating, review count, seller info, images, and stock status. Paginated by page number. total_results reports the server-side count of matches for the query.

**Estimated cost:** Metered

| Field | Type | Required | Description |
|-------|------|----------|-------------|
| `page` | integer | No | Page number for pagination (1-based) |
| `query` | string | Yes | Search keyword (e.g. 'laptop', 'smartphone', 'shoes') |

```bash
curl -X POST https://api.paywithlocus.com/api/wrapped/parse-lazada-co-th-api-5edf324c/search_products \
  -H "Authorization: Bearer YOUR_LOCUS_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{"page":"<integer>","query":"<string>"}'
```
