# Dhgate — 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 DHgate's vast marketplace to find products across all categories, view detailed information including pricing tiers, shipping options, and seller ratings, and discover flash deals. Retrieve full product details and customer reviews in one place.

**Category:** Marketplaces | **Website:** [dhgate.com/](https://dhgate.com/) | **Docs:** [parse.bot/marketplace/9fc71727-b712-4799-ad20-75f7c2d51adb/dhgate-com-api](https://parse.bot/marketplace/9fc71727-b712-4799-ad20-75f7c2d51adb/dhgate-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-dhgate-com-api-9fc71727/`
**Auth:** `Authorization: Bearer <LOCUS_API_KEY>`

## Endpoints

### get_category_products

Browse products by DHgate category ID. Returns paginated product listings for the specified category. Category IDs are numeric strings (e.g. '110' for Shoes & Accessories). Paginates via integer page number.

**Estimated cost:** Metered

| Field | Type | Required | Description |
|-------|------|----------|-------------|
| `category_id` | string | Yes | DHgate category ID (e.g. '110' for Shoes & Accessories). |
| `page` | integer | No | Page number for pagination. |

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

### get_flash_deals

Get current flash deals and limited-time discount products from DHgate's new-user low-price zone. Returns all active deals in a single page with pricing, discount percentages, and savings.

**Estimated cost:** Metered

_No parameters required._

```bash
curl -X POST https://api.paywithlocus.com/api/wrapped/parse-dhgate-com-api-9fc71727/get_flash_deals \
  -H "Authorization: Bearer YOUR_LOCUS_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{}'
```

### get_product_details

Retrieve full product details for a given item code including pricing tiers, color/size attributes (from SKU API), shipping options, seller rating, images, and specifications. The item_code is obtainable from search_products or get_category_products results.

**Estimated cost:** Metered

| Field | Type | Required | Description |
|-------|------|----------|-------------|
| `item_code` | string | Yes | DHgate item code (product ID), obtainable from search_products or get_category_products results. |

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

### get_product_reviews

Retrieve paginated customer reviews for a specific product. Returns review content, scores, buyer info, and product attributes selected. Page size is 10 reviews per page.

**Estimated cost:** Metered

| Field | Type | Required | Description |
|-------|------|----------|-------------|
| `item_code` | string | Yes | DHgate item code, obtainable from search_products or get_category_products results. |
| `page` | integer | No | Page number for pagination. |

```bash
curl -X POST https://api.paywithlocus.com/api/wrapped/parse-dhgate-com-api-9fc71727/get_product_reviews \
  -H "Authorization: Bearer YOUR_LOCUS_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{"item_code":"<string>","page":"<integer>"}'
```

### search_products

Full-text search over DHgate product listings. Returns paginated results matching the query keyword, with optional price range filtering and sort control. Each result includes item code, name, price, URL, image, and seller info. Paginates via integer page number.

**Estimated cost:** Metered

| Field | Type | Required | Description |
|-------|------|----------|-------------|
| `max_price` | string | No | Maximum price filter in USD (numeric string, e.g. '100'). |
| `min_price` | string | No | Minimum price filter in USD (numeric string, e.g. '10'). |
| `page` | integer | No | Page number for pagination. |
| `query` | string | Yes | Search keyword. |
| `sort` | string | No | Sort order for results. |

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