hyperpure.com APIhyperpure.com ↗
Access Hyperpure's wholesale catalog via API: city availability, product categories, paginated listings, search, and full product details across Indian cities.
No input parameters required.
curl -X GET 'https://api.parse.bot/scraper/6cb71472-df6a-47e1-b8b8-d8fb83ba6aa7/get_cities' \ -H 'X-API-Key: $PARSE_API_KEY'
Returns list of all cities where Hyperpure delivery is available. Each city includes id, name, displayName, and warehouseCode.
No input parameters required.
{
"type": "object",
"fields": {
"cities": "array of city objects with id, name, displayName, warehouseCode"
},
"sample": {
"data": {
"cities": [
{
"id": 1,
"name": "bengaluru",
"displayName": "Bengaluru",
"warehouseCode": "WH-BLR7"
},
{
"id": 2,
"name": "delhi",
"displayName": "Delhi",
"warehouseCode": "WH-DEL3"
}
]
},
"status": "success"
}
}About the hyperpure.com API
The Hyperpure API exposes 7 endpoints covering Hyperpure by Zomato's B2B grocery catalog, including city availability, category trees, paginated product listings, and individual product details. Use get_product_details to retrieve fields like UnitPrice, Rating, Brand, Description, and Offer for any product by slug, or use search_products to find matching items by keyword across any supported city.
City and Category Coverage
Start with get_cities to retrieve all cities where Hyperpure operates. Each city object includes an id, name, displayName, and warehouseCode. Pass the name field (e.g. bengaluru, delhi, mumbai) as the city parameter in all subsequent calls. get_categories then returns the full top-level category tree for that city, with each category exposing name, slug, id, description, children (subcategories), iconPath, and image.
Product Listings and Search
get_products_by_category accepts a city and a category_slug (from get_categories) and returns a paginated list of products. Each product in the response includes Name, Slug, ImagePath, UnitPrice, Rating, Brand, and CategoryName. The page parameter controls pagination. Two convenience endpoints shortcut common use cases: get_products_vegetables targets the fruits-vegetables category, and get_products_ration aggregates first-page results across pulses, rice-rice-products, flours, edible-oils, and masala-salt-sugar into a single response with a top-level count.
search_products accepts a city and a query string and returns matching products from the first page of results, echoing the query back in the response alongside the products array.
Full Product Details
get_product_details takes a city and a product_slug and returns a complete product object that adds Description and Offer to the fields available in listing endpoints. Slugs follow a descriptive format such as tomato-hybrid-premium-big-10-kg or coriander-leaves-kothmir-1-kg and can be obtained from any listing or search response.
- Build a price-tracking tool for restaurant operators by polling
get_product_detailsacross cities to monitor UnitPrice changes. - Populate a B2B grocery catalog UI using
get_categoriesfor navigation andget_products_by_categoryfor paginated product grids. - Compare wholesale produce availability across cities using
get_products_vegetableswith differentcityvalues. - Build a ration-sourcing dashboard by pulling aggregated staples data from
get_products_rationfor multiple cities. - Enable keyword-based product discovery in a procurement app using
search_productswith terms like 'paneer' or 'rice'. - Audit category and subcategory structure across cities by diffing
get_categoriesresponses to detect catalog changes. - Enrich order management systems with product metadata (Brand, Rating, Description, Offer) fetched via
get_product_details.
| 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 Hyperpure have an official public developer API?+
What does `get_products_ration` return, and which categories does it cover?+
get_products_ration aggregates first-page products from five categories: pulses, rice-rice-products, flours, edible-oils, and masala-salt-sugar. The response includes a count field (total products returned) and a flat products array. Only first-page results per category are included; deeper pagination within those categories is not aggregated automatically.Does `search_products` support filtering by category, price range, or brand?+
search_products accepts only a city and a free-text query, and returns the first page of matching results. It does not support filtering by category slug, price bounds, or brand. You can fork this API on Parse and revise it to add filter parameters to the search endpoint.Is product stock or inventory availability exposed in the API?+
UnitPrice, Rating, Brand, Description, and Offer, but no explicit stock level or availability flag. You can fork this API on Parse and revise it to surface any inventory-related fields if they become available in the product data.How do I identify a valid product_slug to use with `get_product_details`?+
get_products_by_category, get_products_vegetables, get_products_ration, and search_products includes a Slug field. Pass that value directly to get_product_details along with the same city used in the listing call. Slugs are descriptive strings like tomato-hybrid-premium-big-10-kg.