# Daraz — 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 on Daraz Pakistan and discover current flash sale deals and pricing information in real-time. Get detailed product information including prices, availability, and offers from Pakistan's largest e-commerce platform all in one place.

**Category:** E-commerce | **Website:** [daraz.com/](https://daraz.com/) | **Docs:** [parse.bot/marketplace/13f6bcf0-c3ac-4a29-b257-4586101150e5/daraz-com-api](https://parse.bot/marketplace/13f6bcf0-c3ac-4a29-b257-4586101150e5/daraz-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-daraz-com-api-13f6bcf0/`
**Auth:** `Authorization: Bearer <LOCUS_API_KEY>`

## Endpoints

### get_flash_sale

Get the current flash sale items displayed on the Daraz Pakistan homepage. Returns products currently on flash sale with their discounted prices, original prices, discount percentage, and units sold. Flash sale items rotate frequently; the response reflects whatever is currently live.

**Estimated cost:** Metered

_No parameters required._

```bash
curl -X POST https://api.paywithlocus.com/api/wrapped/parse-daraz-com-api-13f6bcf0/get_flash_sale \
  -H "Authorization: Bearer YOUR_LOCUS_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{}'
```

### get_product_details

Get detailed product information for a specific Daraz item by its numeric item_id. Returns title, brand, description, highlights, SKU details with quantities, and product variants (e.g. color, size). The item_id can be obtained from search_products or get_flash_sale results.

**Estimated cost:** Metered

| Field | Type | Required | Description |
|-------|------|----------|-------------|
| `item_id` | string | Yes | Numeric Daraz product item ID (e.g. '933370258'). Obtained from search_products results or get_flash_sale results. |

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

### search_products

Search for products on Daraz Pakistan by keyword. Returns paginated results with pricing, discount, rating, seller, and stock information. Supports sorting by popularity, price ascending, or price descending. Each page returns up to 40 items.

**Estimated cost:** Metered

| Field | Type | Required | Description |
|-------|------|----------|-------------|
| `page` | integer | No | Page number for pagination. Each page returns up to 40 results. |
| `query` | string | Yes | Search keyword or phrase (e.g. 'laptop', 'samsung phone', 'shoes'). |
| `sort` | string | No | Sort order for results. Omitting defaults to popularity (best match). |

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