mobile.yangkeduo.com APImobile.yangkeduo.com ↗
Access Pinduoduo homepage product feeds, category lists, trending searches, and search suggestions via the mobile.yangkeduo.com API.
No input parameters required.
curl -X GET 'https://api.parse.bot/scraper/78a17ce7-83e8-4e6b-9aa3-f1d605cdc433/get_homepage_feed' \ -H 'X-API-Key: $PARSE_API_KEY'
Retrieves the initial product feed from the Pinduoduo mobile homepage. Returns a list of featured products with pricing, sales data, and thumbnail images.
No input parameters required.
{
"type": "object",
"fields": {
"products": "array of product objects, each containing goods_id, goods_name, price (in cents), market_price, sales_tip, thumb_url, and link_url"
},
"sample": {
"data": {
"products": [
{
"price": 100,
"goods_id": 741150023497,
"link_url": "goods.html?goods_id=741150023497&_oak_rcto=...",
"sales_tip": "本店已拼106万+件",
"thumb_url": "https://img.pddpic.com/mms-material-img/2025-04-30/faef7ee1-63dc-43ca-9ad1-b463b4d2ad67.jpeg",
"goods_name": "新款加厚加粗发饰加宽扎头发橡皮筋发圈头绳高马尾高弹力耐用发绳",
"market_price": 999
}
]
},
"status": "success"
}
}About the mobile.yangkeduo.com API
This API covers 4 endpoints against Pinduoduo's mobile platform (mobile.yangkeduo.com), returning product feeds, category trees, trending search terms, and autocomplete suggestions. The get_homepage_feed endpoint alone surfaces 7 fields per product — including goods_id, price in cents, market_price, and sales_tip — giving you a live snapshot of what Pinduoduo is currently featuring to shoppers.
Product Feed and Pricing Data
The get_homepage_feed endpoint returns an array of featured products from Pinduoduo's mobile homepage. Each product object includes goods_id, goods_name, price (denominated in cents), market_price, sales_tip (a human-readable sales volume hint), thumb_url, and link_url. This makes it straightforward to track promotional pricing deltas — compare price against market_price to compute discount depth on featured items.
Categories and Discovery
get_category_list returns the full set of top-level product categories. Each entry carries an opt_id integer, an opt_name string, and an image_url (which may be null for some categories). This is useful for mapping Pinduoduo's category taxonomy to your own classification system or for scoping downstream queries.
Trending Terms and Search Suggestions
get_trending_search_terms returns a flat array of strings representing what users are actively searching on Pinduoduo at the time of the request — no input parameters required. For query-level autocomplete, search_suggest accepts a required query string (e.g., 手机 for mobile phones) and returns an array of suggestion strings. Together, these two endpoints let you monitor shifting consumer demand or power a keyword research workflow without needing to interact with the search results themselves.
Coverage Notes
All four endpoints operate without authentication parameters. Price values from get_homepage_feed are integers in Chinese fen (1/100 of a RMB yuan), so divide by 100 for display. The homepage feed reflects the unauthenticated default view — personalized or user-specific feeds are not exposed.
- Track discount depth on Pinduoduo homepage products by comparing
priceandmarket_pricefields over time. - Build a Pinduoduo category browser by mapping
opt_idandopt_namevalues fromget_category_listto your own taxonomy. - Monitor Chinese consumer trends by polling
get_trending_search_termsdaily and charting term frequency shifts. - Power an autocomplete widget for a Pinduoduo-integrated tool using
search_suggestwith a livequeryparameter. - Seed a competitive pricing dataset by ingesting homepage
goods_id,goods_name, andsales_tipfields on a schedule. - Identify high-velocity product categories by cross-referencing trending terms against the category list.
| 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 Pinduoduo have an official public developer API?+
What does `get_homepage_feed` return, and how are prices represented?+
goods_id, goods_name, price, market_price, sales_tip, thumb_url, and link_url. Both price and market_price are integers denominated in Chinese fen — divide by 100 to convert to RMB yuan.Does the API support paginated or filtered product search results?+
Does `get_category_list` return subcategories or only top-level categories?+
opt_id, opt_name, and image_url, but nested subcategory trees are not included. You can fork the API on Parse and revise it to add an endpoint that fetches subcategories for a given opt_id.