uzum.uz APIuzum.uz ↗
Access Uzum Market product listings, category trees, seller profiles, and customer reviews via 7 structured endpoints. Real-time data from uzum.uz.
No input parameters required.
curl -X GET 'https://api.parse.bot/scraper/854c74bc-8ffb-43f1-9412-d5c355c8c866/get_categories' \ -H 'X-API-Key: $PARSE_API_KEY'
Retrieve the full category tree from the Uzum catalog. Returns all top-level categories with nested children including product counts.
No input parameters required.
{
"type": "object",
"fields": {
"payload": "array of category objects, each with id, title, iconLink, iconSvg, and nested children arrays"
},
"sample": {
"data": {
"payload": [
{
"id": 2894,
"icon": null,
"path": [
1,
2894
],
"title": "Mebel",
"iconSvg": "<svg...>",
"children": [
{
"id": 17616,
"eco": false,
"path": [
1,
2894,
17616
],
"adult": false,
"title": "Karavot va matraslar",
"children": [],
"iconLink": null,
"productAmount": 1
}
],
"iconLink": "https://static.uzum.uz/banners/mebel902.png"
}
]
},
"status": "success"
}
}About the uzum.uz API
The Uzum Market API exposes 7 endpoints covering product search, category navigation, seller profiles, and customer reviews from uzum.uz, Central Asia's major e-commerce marketplace. The get_product_details endpoint alone returns over a dozen fields including skuList, rating, description, seller, and photos. Paired with get_seller_info and get_product_reviews, you can build complete product and merchant intelligence pipelines without manually browsing the platform.
Category and Product Discovery
get_categories returns the full Uzum catalog tree as nested objects, each carrying id, title, iconLink, iconSvg, and children arrays with product counts. Pass any id from that tree directly to get_category_products using the category_id parameter to get paginated product cards with pricing and ratings. Both limit and offset are supported across all listing endpoints for consistent pagination.
Product and Review Data
get_product_details returns a payload.data object with the full product record: title, category, description, rating, photos, skuList (variants), and embedded seller info. For deeper feedback analysis, get_product_reviews fetches the sortedFeedbacks.feedbacks array for a given product_id, where each entry carries a rating, pros, cons, and review content. Pagination is controlled via limit and offset.
Seller Intelligence
get_seller_info accepts a seller URL slug (e.g. uzum-market or world) and returns a profile object with rating, reviews, orders, registrationDate, description, avatar, and banner. If the slug does not match a live seller, the endpoint returns input_not_found. Once you have the numeric seller id from that response, pass it to get_seller_products to page through their full catalog. search_products rounds out discovery — it accepts a free-text query and returns matching product cards from across the entire marketplace, with a total count for result-set sizing.
- Track price changes for specific product categories by polling
get_category_productswith a fixedcategory_id. - Build a seller comparison tool using
rating,orders, andregistrationDatefromget_seller_info. - Aggregate customer sentiment by collecting
pros,cons, and ratings fromget_product_reviewsacross competing SKUs. - Map the full Uzum catalog taxonomy by traversing the nested
childrenarrays fromget_categories. - Monitor a seller's active inventory size and pricing using
get_seller_productswith their numericid. - Power a product search feature with
search_productsreturning catalog cards filtered by keyword and paginated viaoffset. - Enrich product records with variant-level data from the
skuListfield returned byget_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 Uzum Market have an official public developer API?+
What does `get_seller_info` return, and what happens if a seller slug is wrong?+
get_seller_info returns a profile object containing id, title, link, banner, avatar, description, rating, reviews, orders, and registrationDate. If the slug you supply does not match any active seller, the endpoint returns input_not_found rather than throwing an error, so your code should check for that value explicitly.Can I retrieve seller-level analytics like monthly sales volume or revenue?+
rating, orders count, registrationDate) and their product listings, but does not expose revenue figures, monthly sales volume, or historical order trends. You can fork this API on Parse and revise it to add an endpoint targeting that data if it becomes available in the source.Is there a way to filter products by price range or specific attributes within a category?+
get_category_products and search_products accept query, limit, and offset but do not support price-range filters or attribute-based faceting as parameters. You can fork this API on Parse and revise it to add filter parameters if the underlying catalog supports them.How does pagination work across listing endpoints?+
search_products, get_category_products, and get_seller_products — use limit and offset integer parameters. The response includes a total integer inside the makeSearch object, which tells you the full result count so you can calculate how many pages remain.