Discover/wellcome.com.hk API
live

wellcome.com.hk APIwellcome.com.hk

Access Wellcome Hong Kong grocery data: search products, browse categories, get SKU details, and retrieve trending searches via a structured REST API.

Endpoints
5
Updated
14d ago
Try it
Page number (1-based)
Search keyword (English or Chinese)
Sort field: 0=default, 1=price, 2=new arrivals
Results per page
Sort direction: 0=ascending, 1=descending
api.parse.bot/scraper/8e12dbe9-89fe-49fb-ad81-bee481931230/<endpoint>
Ready to send
Fill in the parameters and hit sign in to send to see live response data here.
Use it in your codegrab a free API key at signup
curl -X GET 'https://api.parse.bot/scraper/8e12dbe9-89fe-49fb-ad81-bee481931230/search_products?keyword=milk' \
  -H 'X-API-Key: $PARSE_API_KEY'
All endpoints · 5 totalclick to expand

Search for grocery products by keyword with pagination and sorting. Supports both English and Chinese keywords. Returns matching products, total counts, and available filter facets.

Input
ParamTypeDescription
pageintegerPage number (1-based)
keywordrequiredstringSearch keyword (English or Chinese)
sort_keyintegerSort field: 0=default, 1=price, 2=new arrivals
page_sizeintegerResults per page
sort_ruleintegerSort direction: 0=ascending, 1=descending
Response
{
  "type": "object",
  "fields": {
    "page": "integer, current page number",
    "filters": "array of filter groups with property_id, property_name, and options array",
    "keyword": "string, echoed search keyword",
    "products": "array of product objects with sku_id, name, price, promotion_price, image_url, etc.",
    "page_size": "integer, results per page",
    "total_count": "integer, total matching products",
    "total_pages": "integer, total pages available"
  },
  "sample": {
    "data": {
      "page": 1,
      "filters": [
        {
          "options": [
            {
              "name": "保鮮牛奶及奶粉",
              "count": 85,
              "property_id": "105681"
            }
          ],
          "property_id": "2",
          "property_name": "分類"
        }
      ],
      "keyword": "milk",
      "products": [
        {
          "name": "Meadows 常溫全脂奶 1LT",
          "price": 25.5,
          "rf_id": "763573",
          "stock": 10916,
          "sku_id": 101366351,
          "status": "1",
          "ware_id": "11335600",
          "allow_cc": 1,
          "brand_id": 28570,
          "currency": "HKD",
          "image_url": "https://img.rtacdn-os.com/20240924/823a00b4-5662-3a38-b4be-ed954a477a15_480x480H",
          "category_id": 22136,
          "merchant_id": 2,
          "promotion_tag": "3件$45",
          "allow_delivery": 1,
          "original_price": 25.5,
          "promotion_price": 25.5
        }
      ],
      "page_size": 20,
      "total_count": 764,
      "total_pages": 39
    },
    "status": "success"
  }
}

About the wellcome.com.hk API

The Wellcome Hong Kong API provides structured access to grocery product data across 5 endpoints, covering product search, category browsing, SKU-level detail, autocomplete suggestions, and trending searches. The search_products endpoint accepts both English and Chinese keywords and returns price, promotion price, image URLs, and filter facets per query. Prices are returned in HKD.

Product Search and Discovery

The search_products endpoint accepts a keyword string in English or Traditional Chinese, with optional sort_key (0=default, 1=price, 2=new arrivals) and sort_rule (0=ascending, 1=descending) parameters. Responses include a products array with fields like sku_id, name, price, promotion_price, and image_url, alongside total_count, total_pages, and a filters array of grouped facets keyed by property_id and property_name. This makes it straightforward to replicate the core search experience or build price-comparison tooling.

Category Browsing

The browse_category endpoint takes a category_id (e.g., '100002' for Beverages) and returns paginated products with the same product shape as search results. The response also includes a subcategories array of nested objects containing category_id, category_name, image, and further recursive subcategories — allowing full traversal of the category tree without a separate catalog endpoint.

Product Detail and Identifiers

get_product_detail requires a sku_id obtained from either search_products or browse_category. The detail response includes brand_id, ware_id, item_num (barcode), an images array, sell status, and currency (always HKD). Prices in the detail endpoint are expressed in HKD as a float divided by 100 from cents, consistent with the value seen in listing results.

Trending and Autocomplete

popular_searches requires no inputs and returns a ranked list of currently trending keywords, each with a rank integer and a highlight flag. search_suggestions takes a keyword prefix and returns suggestions objects with keyword and score fields — useful for building typeahead interfaces or understanding how shoppers phrase queries on the platform.

Common use cases
  • Track price and promotion_price changes for specific SKUs over time to monitor Wellcome discount cycles.
  • Build a bilingual grocery search interface using the keyword parameter's support for both English and Chinese input.
  • Traverse the subcategories tree from browse_category to generate a full catalog map of Wellcome's product hierarchy.
  • Feed popular_searches ranked keywords into trend analysis dashboards to spot seasonal demand shifts.
  • Use search_suggestions scores to understand common shopper query patterns for SEO or UX research.
  • Extract item_num barcodes from get_product_detail to cross-reference Wellcome SKUs with other retailer databases.
  • Compare promotion_price versus price across categories to surface the deepest current discounts.
Pricing & limitsSee full pricing →
TierPriceCredits/monthRate limit
Free$0/mo1005 req/min
Hobby$30/mo1,00020 req/min
Developer$100/mo5,000250 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.

Frequently asked questions
Does Wellcome Hong Kong have an official public developer API?+
Wellcome (wellcome.com.hk) does not publish an official public developer API or documentation for third-party access to its product catalog.
What does browse_category return beyond a product list?+
Beyond the paginated products array and total_count, the response includes a subcategories field — a nested array of category objects each with category_id, category_name, and image. These subcategories are themselves nestable, so a single call to a top-level category returns the full branch of its hierarchy alongside the product results and filters facets.
Does the API expose stock availability or inventory levels?+
The API currently returns a boolean sell field on the product detail endpoint indicating whether an item is available for sale, but does not expose numeric stock quantities or warehouse-level inventory data. You can fork this API on Parse and revise it to add an endpoint targeting additional availability fields if they become accessible.
Are product reviews or ratings included in any endpoint response?+
No current endpoint returns customer reviews, star ratings, or review counts. The covered data is product identity, pricing, promotions, images, brand, and category structure. You can fork this API on Parse and revise it to add a review-focused endpoint should that data become available.
How are prices represented across the endpoints?+
Listing endpoints (search_products, browse_category) return price and promotion_price as floats in HKD. The get_product_detail endpoint also returns price as a float in HKD (internally derived from a cents value divided by 100) and always sets currency to 'HKD'. There is no multi-currency option.
Page content last updated . Spec covers 5 endpoints from wellcome.com.hk.
Related APIs in Food DiningSee all →
dia.es API
Browse and search products across Día supermarket's catalog, view product details, categories, and current offers available on dia.es. Find specific items, explore product categories and subcategories, and discover active promotions.
kroger.com API
Find Kroger grocery store locations across the US organized by state, city, and search parameters. Get detailed store information including directories and specifics for any Kroger location in your area.
coupons.com API
Search and discover coupons, printable offers, and store-specific deals from Coupons.com. Browse top featured offers, find deals across thousands of retailers, and access aggregated coupon data including discount amounts, usage conditions, and expiration details.
vivino.com API
Search and discover wines across thousands of options while accessing detailed information like user reviews, pricing, winery profiles, and food pairing recommendations. Explore grape varieties, compare wines side-by-side, and find the perfect bottle based on ratings and availability.
winecompanion.com.au API
Browse and explore Australian wineries from Wine Companion's comprehensive directory, including contact details, ratings, and regional locations. Search and filter by state, region, or facilities to find wineries across Australia.
liquor.com API
Find and browse thousands of cocktail recipes with ratings and user reviews, search drinks by ingredient or category, and read curated articles about spirits and mixology. Get detailed recipe instructions, comments from other users, and expert content all in one place.
bigbasket.com API
Browse and search BigBasket's online grocery catalog. Retrieve product details, pricing, stock availability, category trees, search suggestions, homepage promotions, and delivery coverage — all in one API.
opentable.com API
Search for restaurants across the US with ratings, reviews, photos, and pricing information, plus get real-time availability and autocomplete suggestions as you type. Check reservation openings and explore detailed restaurant features to find and book your perfect dining experience.