# Pconline — 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 and browse products from PConline with access to detailed specifications, pricing, and category information to compare items and find exactly what you're looking for. Get comprehensive product data including specs and current prices across multiple categories all in one place.

**Category:** E-commerce | **Website:** [pconline.com.cn/](https://pconline.com.cn/) | **Docs:** [parse.bot/marketplace/16fa32e4-e2ad-40b7-8e79-b0d30489c5d1/pconline-com-cn-api](https://parse.bot/marketplace/16fa32e4-e2ad-40b7-8e79-b0d30489c5d1/pconline-com-cn-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-pconline-com-cn-api-16fa32e4/`
**Auth:** `Authorization: Bearer <LOCUS_API_KEY>`

## Endpoints

### get_product_categories

Fetch all product categories from the PConline product homepage. Returns category names and their canonical URLs covering mobile phones, notebooks, tablets, cameras, TVs, home appliances, smart wearables, and more.

**Estimated cost:** Metered

_No parameters required._

```bash
curl -X POST https://api.paywithlocus.com/api/wrapped/parse-pconline-com-cn-api-16fa32e4/get_product_categories \
  -H "Authorization: Bearer YOUR_LOCUS_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{}'
```

### get_product_detail

Get detailed information for a specific product page including name, price, available versions, key specifications, mall prices, and related articles.

**Estimated cost:** Metered

| Field | Type | Required | Description |
|-------|------|----------|-------------|
| `url` | string | Yes | Full canonical product URL (e.g. https://product.pconline.com.cn/mobile/huawei/2904191.html). |

```bash
curl -X POST https://api.paywithlocus.com/api/wrapped/parse-pconline-com-cn-api-16fa32e4/get_product_detail \
  -H "Authorization: Bearer YOUR_LOCUS_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{"url":"<string>"}'
```

### get_product_price

Get current pricing information and retailer prices for a product. The provided URL is automatically converted to the price page URL (_price.html suffix). Mall prices may be empty for products not yet commercially available.

**Estimated cost:** Metered

| Field | Type | Required | Description |
|-------|------|----------|-------------|
| `url` | string | Yes | Product URL (auto-converted to price page URL by replacing .html with _price.html). |

```bash
curl -X POST https://api.paywithlocus.com/api/wrapped/parse-pconline-com-cn-api-16fa32e4/get_product_price \
  -H "Authorization: Bearer YOUR_LOCUS_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{"url":"<string>"}'
```

### get_product_specs

Get full technical specifications for a specific product. The provided URL is automatically converted to the specs page URL (_detail.html suffix). Returns a dictionary of all specification key-value pairs.

**Estimated cost:** Metered

| Field | Type | Required | Description |
|-------|------|----------|-------------|
| `url` | string | Yes | Product URL (auto-converted to specs URL by replacing .html with _detail.html). |

```bash
curl -X POST https://api.paywithlocus.com/api/wrapped/parse-pconline-com-cn-api-16fa32e4/get_product_specs \
  -H "Authorization: Bearer YOUR_LOCUS_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{"url":"<string>"}'
```

### list_products_by_category

List products in a specific category with pagination support. Returns product names, URLs, prices, descriptions, and scores from the category listing page. Each page returns up to ~48 products.

**Estimated cost:** Metered

| Field | Type | Required | Description |
|-------|------|----------|-------------|
| `category` | string | No | Category slug from category URL path. |
| `page` | integer | No | Page number for pagination. |

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

### search_products

Search for products by keyword. Note: may be blocked by slider captcha on some IPs.

**Estimated cost:** Metered

| Field | Type | Required | Description |
|-------|------|----------|-------------|
| `page` | string | No | Page number |
| `query` | string | Yes | Search keyword |

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