# Tw Coupang — 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 Coupang Taiwan and browse by category, brand, or Rocket Delivery availability to find exactly what you're looking for. Get detailed product information, view homepage featured items, and discover deals across thousands of listings.

**Category:** E-commerce | **Website:** [tw.coupang.com/](https://tw.coupang.com/) | **Docs:** [parse.bot/marketplace/1d0c7630-0b00-4d78-abe3-97d09f035281/tw-coupang-com-api](https://parse.bot/marketplace/1d0c7630-0b00-4d78-abe3-97d09f035281/tw-coupang-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-tw-coupang-com-api-1d0c7630/`
**Auth:** `Authorization: Bearer <LOCUS_API_KEY>`

## Endpoints

### get_brand_products

Search for products from a specific brand by using the brand name as the search query. Returns paginated results in the same format as search_products.

**Estimated cost:** Metered

| Field | Type | Required | Description |
|-------|------|----------|-------------|
| `brand_name` | string | Yes | The name of the brand to search for (e.g. 'NONGSHIM', 'AGF MAXIM'). |
| `page` | integer | No | Page number for pagination. |
| `sorter` | string | No | Sorting option. |

```bash
curl -X POST https://api.paywithlocus.com/api/wrapped/parse-tw-coupang-com-api-1d0c7630/get_brand_products \
  -H "Authorization: Bearer YOUR_LOCUS_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{"brand_name":"<string>","page":"<integer>","sorter":"<string>"}'
```

### get_category_products

Browse products within a specific category.

**Estimated cost:** Metered

| Field | Type | Required | Description |
|-------|------|----------|-------------|
| `category_id` | string | Yes | The category identifier (e.g. 食品飲料-541149) |
| `page` | integer | No | Page number |
| `sorter` | string | No | Sorting option |

```bash
curl -X POST https://api.paywithlocus.com/api/wrapped/parse-tw-coupang-com-api-1d0c7630/get_category_products \
  -H "Authorization: Bearer YOUR_LOCUS_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{"category_id":"<string>","page":"<integer>","sorter":"<string>"}'
```

### get_homepage_featured

Fetch the homepage navigation categories and their links from Coupang Taiwan. Returns the main category navigation bar items with names and URLs.

**Estimated cost:** Metered

_No parameters required._

```bash
curl -X POST https://api.paywithlocus.com/api/wrapped/parse-tw-coupang-com-api-1d0c7630/get_homepage_featured \
  -H "Authorization: Bearer YOUR_LOCUS_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{}'
```

### get_product_detail

Retrieve full details of a specific product by its product ID, including name, brand, pricing, rating, images, and description. Uses JSON-LD structured data from the product page.

**Estimated cost:** Metered

| Field | Type | Required | Description |
|-------|------|----------|-------------|
| `product_id` | string | Yes | The unique product identifier (e.g. '265257129820171'). Obtainable from search_products results. |

```bash
curl -X POST https://api.paywithlocus.com/api/wrapped/parse-tw-coupang-com-api-1d0c7630/get_product_detail \
  -H "Authorization: Bearer YOUR_LOCUS_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{"product_id":"<string>"}'
```

### get_rocket_delivery_products

Search for products that offer Rocket Delivery. Filters results to only show items available for fast delivery via the availableDeliveryFilter parameter.

**Estimated cost:** Metered

| Field | Type | Required | Description |
|-------|------|----------|-------------|
| `page` | integer | No | Page number for pagination. |
| `query` | string | No | Search keyword to filter Rocket Delivery products. Omitting returns all Rocket Delivery products. |
| `sorter` | string | No | Sorting option. |

```bash
curl -X POST https://api.paywithlocus.com/api/wrapped/parse-tw-coupang-com-api-1d0c7630/get_rocket_delivery_products \
  -H "Authorization: Bearer YOUR_LOCUS_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{"page":"<integer>","query":"<string>","sorter":"<string>"}'
```

### search_products

Search for products by keyword on Coupang Taiwan. Returns up to 36 products per page with product names, prices, delivery badges, and unit pricing information. Paginates via integer page number.

**Estimated cost:** Metered

| Field | Type | Required | Description |
|-------|------|----------|-------------|
| `page` | integer | No | Page number for pagination. |
| `query` | string | Yes | Search keyword (e.g. 'ramen', 'laptop', 'coffee'). |
| `sorter` | string | No | Sorting option. |

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