Discover/Uzum API
live

Uzum APIuzum.uz

Access Uzum.uz product listings, category trees, pricing in UZS, seller profiles, and customer reviews via 8 structured REST endpoints.

This API takes change requests — .
Endpoint health
verified 7h ago
get_category_products
get_categories
get_sellers
search_products
get_product_details
8/8 passing latest checkself-healing
Endpoints
8
Updated
10h ago

What is the Uzum API?

The Uzum Market API exposes 8 endpoints covering the full catalog of Uzbekistan's largest online marketplace. You can retrieve the complete category tree, search products by keyword, pull SKU-level pricing in UZS tiyin, and fetch paginated customer reviews — all in structured JSON. The get_product_details endpoint alone returns over 10 fields including seller info, SKU availability, HTML description, and photo URLs.

This call costs3 credits / call— charged only on success
Try it

No input parameters required.

api.parse.bot/scraper/854c74bc-8ffb-43f1-9412-d5c355c8c866/<endpoint>
Ready to send
Fill in the parameters and hit sign in to send to see live response data here.
Call it over HTTPgrab a free API key at signup
curl -X GET 'https://api.parse.bot/scraper/854c74bc-8ffb-43f1-9412-d5c355c8c866/get_categories' \
  -H 'X-API-Key: $PARSE_API_KEY'
All endpoints · 8 totalmissing one? ·

Retrieve the full category tree from the Uzum catalog. Returns all top-level categories with nested children arrays containing subcategories and product counts. Categories are hierarchical - each top-level category has children which may have their own children.

Input

No input parameters required.

Response
{
  "type": "object",
  "fields": {
    "payload": "array of top-level category objects each containing id, title, iconLink, iconSvg, and nested children arrays with subcategories"
  },
  "sample": {
    "data": {
      "payload": [
        {
          "id": 2894,
          "title": "Mebel",
          "iconSvg": "<svg.../>",
          "children": [
            {
              "id": 17616,
              "eco": false,
              "adult": false,
              "title": "Karavot va matraslar",
              "children": [
                {
                  "id": 14557,
                  "title": "Matraslar",
                  "children": [],
                  "productAmount": 74
                }
              ],
              "productAmount": 1
            }
          ],
          "iconLink": "https://static.uzum.uz/banners/mebel902.png"
        }
      ],
      "timestamp": "2026-06-10T09:43:30.497593188"
    },
    "status": "success"
  }
}

About the Uzum API

Category and Product Discovery

get_categories returns the full hierarchical category tree with each node carrying an id, title, iconLink, iconSvg, and nested children arrays. Those category IDs feed directly into get_category_products, which accepts category_id, limit, and offset to paginate through product cards. Each card includes productId, title, minSellPrice, minFullPrice, rating, and feedbackQuantity. search_products works similarly but takes a query string instead of a category ID, returning a total count alongside the items array.

Product Detail and Reviews

get_product_details accepts a product_id and returns the richest response in the API: a shop object with seller id, title, and rating; a skuList array where each SKU carries availableAmount, fullPrice, and sellPrice; photos with high- and low-resolution links; a description field in HTML; and both minFullPrice and minSellPrice in UZS tiyin (divide by 100 to get som). get_product_reviews returns an array of feedbacks for a given product — each entry includes customerName, rating, content, pros, cons, dateCreated, and datePublished as Unix timestamps in milliseconds. Pagination uses offset divided by limit to derive the page number internally.

Seller Data

The seller workflow is two-step. get_sellers takes a query string and returns up to 20 matching shops with id, title, link (slug), avatar URLs, rating, reviewCount, orderCount, and an official boolean flag. Pass the returned slug to get_seller_info for the full profile: banner, avatar, description, registrationDate (Unix ms), and sellerAccountId. The numeric id from that response is what get_seller_products requires to paginate through a seller's listings.

Pricing and Currency Notes

All price fields (minSellPrice, minFullPrice, sellPrice, fullPrice) are expressed in UZS tiyin, the sub-unit of the Uzbek som where 1 som = 100 tiyin. Convert before display. There is no currency parameter — prices are always in UZS.

Reliability & maintenanceVerified

The Uzum API is a managed, monitored endpoint for uzum.uz — not a raw scraper you maintain. Every endpoint is automatically health-checked on a schedule, and when uzum.uz changes and a check fails, the API is automatically queued for repair and re-verified. It is built to keep working as the site underneath it changes.

This isn't an official uzum.uz API — it's an independent, maintained REST wrapper over public data. Where the source has no official API (or only a limited one), Parse gives you a stable contract over a source that never promised one, and keeps it current. Need a new endpoint or field? You can revise it yourself in plain English and the agent rebuilds it against the live site in minutes — contributing the change back to the shared API is free.

Last verified
7h ago
Latest check
8/8 endpoints passing
Maintenance
Monitored & self-healing
Will this API break when the source site changes?+
It's built not to. Every endpoint is health-checked on a schedule with automated test probes. When the source site changes and a check fails, the API is automatically queued for repair and re-verified — that's the self-healing layer. Each API page shows when its endpoints were last verified. And because marketplace APIs are shared, any fix reaches everyone using it.
Is this an official API from the source site?+
No — Parse APIs are independent, managed REST wrappers over publicly available data. That is the point: where a site has no official API (or only a limited one), Parse gives you a maintained, monitored endpoint for that data and keeps it working as the site changes — so you get a stable contract over a source that never promised one.
Can I fix or extend this API myself if I need a new endpoint or field?+
Yes — and you don't have to wait on us. This API was generated by the Parse agent, which stays attached. Describe the change in plain English ("add an endpoint that returns reviews", "fix the price field") in the revise box on the API page or via the revise_api MCP tool, and the agent rebuilds it against the live site in minutes. Contributing the change back to the public API is free.
What happens if I call an endpoint that has an issue?+
Errors are machine-readable: a bad call returns a clean status with the list of available endpoints and a repair hint, so an agent (or you) can recover or trigger a fix instead of failing silently. Confirmed failures feed the automatic repair queue.
Common use cases
  • Track price changes on specific SKUs by polling get_product_details and comparing minSellPrice over time.
  • Build a category-level price index by combining get_categories IDs with paginated get_category_products calls.
  • Aggregate seller reputation data by pulling rating, reviewCount, and orderCount from get_seller_info.
  • Run sentiment analysis on product reviews using the pros, cons, and content fields from get_product_reviews.
  • Map the full Uzum catalog hierarchy for taxonomy research using the nested children arrays in get_categories.
  • Identify top-rated sellers in a product segment by combining get_sellers search with get_seller_products listing counts.
  • Monitor stock availability per variant by inspecting availableAmount in the skuList array from get_product_details.
Pricing & limitsSee full pricing →
TierPriceCredits/monthRate limit
Free$0/mo2005 req/min
Hobby$30/mo1,00020 req/min
Developer$100/mo5,000100 req/min
Team$300/mo20,000300 req/min
Company$1,000/mo100,000500 req/min

Each endpoint has a fixed posted price per successful call — most fall between 1 and 10 credits — shown on this API's page before you run it. Exceeding the rate limit returns a 429 response. Authenticate with the X-API-Key header.

Frequently asked questions
Does Uzum Market have an official developer API?+
Uzum does not publish a public developer API or official API documentation. There is no registered developer program or public API portal listed on uzum.uz at the time of writing.
What does `get_product_details` return that the listing endpoints don't?+
get_product_details returns the full SKU list with per-variant availableAmount, fullPrice, and sellPrice; an HTML description; a shop object with the seller's id, title, and rating; and multiple photos with both high- and low-resolution URLs. Product listing endpoints like search_products and get_category_products return only summary card data: productId, title, aggregate pricing, rating, and feedbackQuantity.
How does pagination work across the different endpoints?+
search_products, get_category_products, and get_seller_products all use offset-based pagination via offset and limit parameters, and each returns a total field so you can compute total pages. get_product_reviews also accepts offset and limit, but the offset is divided by limit internally to derive a page number, so setting offset to values that are not multiples of limit may return unexpected page boundaries.
Does the API return promotional or campaign data such as flash sales or discount banners?+
Not currently. The API covers standard product pricing (minSellPrice vs minFullPrice), category structure, seller profiles, and reviews. Campaign metadata, flash-sale countdowns, or banner content are not included in any current endpoint. You can fork this API on Parse and revise it to add an endpoint targeting promotional data.
Can I get order history or buyer transaction data through the API?+
Not currently. The API exposes order counts as an aggregate field on seller profiles (orders in get_seller_info) but does not return individual order records, buyer identities, or transaction details. You can fork this API on Parse and revise it to surface additional seller analytics if the source exposes them publicly.
Page content last updated . Spec covers 8 endpoints from uzum.uz.
Related APIs in MarketplaceSee all →
ozon.kz API
Browse and search thousands of products on Ozon.kz, view detailed product information, reviews, and seller details across category listings. Get instant search suggestions and explore the complete category tree to discover items that match your needs.
zumiez.com API
Search Zumiez products by keyword, browse products by category path, and fetch detailed product information (pricing, images, stock status, and attributes) using a product group ID.
ozon.ru API
Access data from ozon.ru.
prom.ua API
Search and explore products from Prom.ua's Ukrainian marketplace, view detailed product information, browse category hierarchies, and retrieve seller profiles complete with reviews and contact details.
olx.uz API
Search and browse product listings on OLX.uz across all categories, with full details including specifications, location, and pricing. Compare prices and product information to identify the best available deals.
jumia.ug API
Search and browse products from Jumia Uganda, view detailed product information including reviews and stock availability, and discover current flash sales across different categories and sellers. Filter products by category or seller to find exactly what you're looking for on Uganda's largest online marketplace.
gumroad.com API
Browse and extract data from the Gumroad marketplace. Search products by keyword, category, price, and rating; retrieve full product details; and look up seller profiles and their listed products.
zazzle.com API
Browse and search Zazzle's marketplace to discover personalized and custom products, view detailed product information including pricing and specifications, and explore available product categories. Access product details to compare options and find exactly what you're looking for across Zazzle's wide selection of customizable items.