pconline.com.cn APIpconline.com.cn ↗
Access PConline product data via API: search products, list categories, fetch full specs, and get retailer pricing for tech hardware listed on pconline.com.cn.
curl -X GET 'https://api.parse.bot/scraper/f7f45adc-1a2d-46a2-8ce2-d2bce794cae0/search_products?query=iPhone' \ -H 'X-API-Key: $PARSE_API_KEY'
Search for products by keyword. Note: may be blocked by slider captcha on some IPs.
| Param | Type | Description |
|---|---|---|
| page | string | Page number |
| queryrequired | string | Search keyword |
{
"type": "array",
"fields": {
"url": "string",
"name": "string",
"price": "string",
"score": "string",
"description": "string"
},
"sample": {
"status": "blocked",
"message": "Blocked by ip_ban",
"block_type": "ip_ban"
}
}About the pconline.com.cn API
The PConline API provides 6 endpoints covering China's major tech product comparison database, returning product names, prices, specifications, and retailer mall pricing. Starting with get_product_categories to discover available categories, you can drill down through list_products_by_category, retrieve granular specs via get_product_specs, and pull per-retailer pricing via get_product_price — all from a single structured source.
Category and Product Discovery
The get_product_categories endpoint returns all top-level categories from the PConline product homepage as an array of objects with name and url. Once you have a category, list_products_by_category accepts a category slug (verified values include mobile, notebook, tabletpc, dc, smartwatch, lcd_tv, and ele) and an optional page parameter for pagination. Each result object contains name, url, price, description, and score.
Product Detail and Specifications
get_product_detail takes a full canonical product URL and returns a structured object with name, full_name, price, available_versions, key_specs, mall_prices, and related_articles. For deeper technical data, get_product_specs accepts the same product URL — the endpoint automatically converts it to the specs page variant — and returns a flat object where each key is a spec name and each value is the corresponding spec string.
Pricing and Search
get_product_price converts a product URL to the price page and returns reference_price alongside a mall_prices array. Each entry in that array carries mall, product_name, price, and a direct url to the retailer listing. Note that mall_prices may be empty for products not yet commercially released. The search_products endpoint accepts a query string and optional page, returning name, url, price, score, and description for matched products; some IP ranges may encounter slider captcha challenges that affect this endpoint's reliability.
- Build a Chinese tech market price tracker by polling
get_product_priceacross a list of product URLs and loggingreference_priceandmall_pricesover time. - Aggregate full hardware specification sheets for laptops or smartphones using
get_product_specsto feed a product comparison tool. - Monitor new product launches in a category by periodically calling
list_products_by_categorywith themobileornotebookslug and detecting new entries. - Enrich an e-commerce catalog with PConline
scoreandkey_specsby matching product names fromsearch_productsresults. - Collect retailer diversity data by extracting the
mallfield fromget_product_priceresponses to see which Chinese retailers stock a given product. - Populate a product database with structured
available_versionsfromget_product_detailto surface configuration variants for a specific model. - Cross-reference
related_articlesreturned byget_product_detailto identify editorial coverage for specific hardware releases.
| Tier | Price | Credits/month | Rate limit |
|---|---|---|---|
| Free | $0/mo | 100 | 5 req/min |
| Hobby | $30/mo | 1,000 | 20 req/min |
| Developer | $100/mo | 5,000 | 250 req/min |
One credit = one API call regardless of which marketplace API you call. Exceeding the rate limit returns a 429 response. Authenticate with the X-API-Key header.
Does PConline have an official developer API?+
What does `get_product_specs` actually return, and how is it different from `get_product_detail`?+
get_product_specs returns a flat key-value object where every key is a technical specification name (e.g. screen size, battery capacity, processor model) and every value is the corresponding string. get_product_detail returns higher-level summary data including name, full_name, price, available_versions, and mall_prices — it includes key_specs but that is a shorter subset, not the full specification sheet.Are there any reliability quirks I should know about for the search endpoint?+
search_products may be blocked by a slider captcha depending on the originating IP address. If you need reliable product discovery, using list_products_by_category with a known category slug is the more stable path, as that endpoint does not carry the same captcha risk noted in the description.Does the API return user reviews or ratings beyond the product score?+
score field in listing and search results, but individual user reviews, review text, and review counts are not exposed across any of the 6 endpoints. You can fork this API on Parse and revise it to add an endpoint targeting the product review pages.Can I retrieve pricing history or price trends for a product?+
get_product_price returns the current reference_price and active mall_prices, with no historical pricing data in the response. You can fork this API on Parse and revise it to store and expose snapshots if you need trend data.