Discover/Uniqlo API
live

Uniqlo APIuniqlo.com

Access Uniqlo US product listings, search the catalog, and browse category trees via API. Returns pricing, colors, sizes, ratings, and images.

This API takes change requests — .
Endpoint health
verified 6d ago
search_products
get_product_details
get_categories
list_products
4/4 passing latest checkself-healing
Endpoints
4
Updated
20d ago

What is the Uniqlo API?

The Uniqlo US API covers 4 endpoints that expose product listings, full-text search, detailed product data, and the complete category tree from uniqlo.com/us/en. The get_product_details endpoint alone returns over 12 distinct fields per product, including material composition, care instructions, color-specific image URLs, breadcrumb navigation, and customer fit ratings. Use it to build catalog browsers, price trackers, or size-availability monitors without visiting the storefront.

This call costs1 credit / call— charged only on success
Try it
Number of results per page (max 100)
Search keyword (e.g., 't-shirt', 'jacket', 'jeans')
Offset for pagination (starts at 0)
Filter by section: 'women', 'men', 'kids', or 'baby'. Empty string returns all sections.
api.parse.bot/scraper/71e9d7ce-e5f0-47c7-94da-c7e2aa3ed1ad/<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/71e9d7ce-e5f0-47c7-94da-c7e2aa3ed1ad/search_products?limit=5&query=t-shirt&offset=0&section=women' \
  -H 'X-API-Key: $PARSE_API_KEY'
Python SDK · recommended

Typed, relational, agent-ready

A generated client with real types, enums, and the links between objects — the structure a flat JSON response can't carry. Autocompletes in your editor and reads cleanly to coding agents.

  • Fully typed · autocompletes
  • Objects link to objects
  • Typed errors & pagination

Typed Python client. Set up the SDK in your uv project, then pull this API’s typed client:

uv add parse-sdk
uv run parse init
uv run parse add --marketplace uniqlo-com-api

uv run parse add --marketplace pulls a pinned snapshot of this canonical API — it won’t change underneath you. To customize it, subscribe and swap to your own copy.

"""Walkthrough: Uniqlo US SDK — browse catalog, search, get details."""
from parse_apis.Uniqlo_US_Store_API import Uniqlo, Section, ProductNotFound

client = Uniqlo()

# Browse the full catalog, capped at 3 items
for listing in client.product_listings.list(section=Section.WOMEN, limit=3):
    print(listing.title, listing.price, listing.sale_price, listing.availability)

# Search for a specific product then refresh for full details
product = client.products.search(query="t-shirt", section=Section.MEN, limit=1).first()
if product:
    detail = product.refresh()
    print(detail.name, detail.base_price, detail.composition)
    for color in detail.colors[:3]:
        print(color.code, color.name)

# Handle a product that doesn't exist
try:
    client.products.get(product_id="9999999")
except ProductNotFound as exc:
    print(f"Product not found: {exc.product_id}")

# Browse the category tree
catalog = client.catalogs.get()
for section_name, categories in catalog.sections.items():
    for cat in categories[:2]:
        print(section_name, cat.name, cat.url)

print("exercised: product_listings.list / products.search / product.refresh / products.get / catalogs.get")
All endpoints · 4 totalmissing one? ·

Full-text search over the Uniqlo US product catalog. Matches product names and descriptions against the query keyword. Results are paginated via offset; each product includes pricing, available colors/sizes, and rating. An optional section filter narrows results to a single gender department.

Input
ParamTypeDescription
limitintegerNumber of results per page (max 100)
queryrequiredstringSearch keyword (e.g., 't-shirt', 'jacket', 'jeans')
offsetintegerOffset for pagination (starts at 0)
sectionstringFilter by section: 'women', 'men', 'kids', or 'baby'. Empty string returns all sections.
Response
{
  "type": "object",
  "fields": {
    "count": "integer - items returned in this page",
    "total": "integer - total matching products",
    "offset": "integer - current offset",
    "products": "array of ProductSummary objects"
  },
  "sample": {
    "data": {
      "count": 5,
      "total": 620,
      "offset": 0,
      "products": [
        {
          "name": "AIRism Cotton T-Shirt | Long Sleeve",
          "sizes": [
            {
              "code": "001",
              "name": "XXS"
            }
          ],
          "colors": [
            {
              "code": "68",
              "name": "BLUE"
            }
          ],
          "gender": "UNISEX",
          "currency": "USD",
          "base_price": 29.9,
          "main_image": "https://image.uniqlo.com/UQ/ST3/us/imagesgoods/465193/item/usgoods_68_465193_3x4.jpg",
          "product_id": "E465193-000",
          "price_group": "00",
          "product_url": "https://www.uniqlo.com/us/en/products/E465193-000/00",
          "promo_price": null,
          "rating_count": 621,
          "rating_average": 4.8
        }
      ]
    },
    "status": "success"
  }
}

About the Uniqlo API

Catalog Browsing and Search

The list_products endpoint pages through the entire Uniqlo US catalog, returning a lightweight summary per item: title, base price, sale price, currency, availability status, product page URL, and main image URL. Pagination is controlled via offset and limit (up to 100 per request), and an optional section parameter narrows results to women, men, kids, or baby. The search_products endpoint runs a full-text match against product names and descriptions given a query string, with the same pagination and section-filter options. Both endpoints return a total field so you can determine how many pages to walk.

Product Details

get_product_details accepts either a bare numeric ID (e.g. 465193) or the canonical format (e.g. E465193-000) and returns the complete record for that product. Response fields include name, base_price, currency, gender, arrays of colors and sizes with code/name pairs, sub_images keyed per color, breadcrumbs (with gender, class, category, and subcategory strings), fit_rating, and material/care detail. The optional price_group parameter defaults to 00; other values may return a not-found error if the product isn't offered under that group.

Category Tree

get_categories requires no inputs and returns the full navigation hierarchy for the US store, organized under Women, Men, and Kids & Baby. Each top-level category includes its subcategories and navigation URL paths, making it straightforward to map the store structure or drive a category-filtered browsing experience against list_products.

Coverage Notes

All endpoints reflect the Uniqlo US storefront specifically (uniqlo.com/us/en). Pricing is returned in USD. Inventory status is available at the listing level via list_products, but per-size, per-color stock counts are not part of the current response schema.

Reliability & maintenanceVerified

The Uniqlo API is a managed, monitored endpoint for uniqlo.com — not a raw scraper you maintain. Every endpoint is automatically health-checked on a schedule, and when uniqlo.com 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 uniqlo.com 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
6d ago
Latest check
4/4 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 regular vs. sale price changes across the Uniqlo US catalog using base_price and sale price fields from list_products
  • Build a size-availability monitor that checks the sizes array from get_product_details for specific SKUs
  • Power a category-driven product browser by combining get_categories navigation paths with list_products section filters
  • Index Uniqlo product images and color variants from sub_images and colors arrays for a fashion lookbook app
  • Search the catalog by keyword using search_products and surface results with ratings and pricing in a comparison tool
  • Extract material composition and care instructions from get_product_details to populate a sustainable-fashion research dataset
  • Map the full store taxonomy with get_categories to analyze how Uniqlo structures its product hierarchy across departments
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 Uniqlo offer an official public developer API?+
Uniqlo does not publish an official public developer API or API documentation for third-party access to its product catalog.
What does `get_product_details` return that `list_products` does not?+
list_products returns a lightweight summary: title, base price, sale price, availability, image URL, and product page URL. get_product_details adds material composition, care instructions, color-specific sub-images, a full sizes array with codes and names, breadcrumb navigation (gender, class, category, subcategory), and a fit rating score.
Can I filter `search_products` or `list_products` by price range or specific size?+
Neither endpoint currently supports filtering by price range or size. Both support filtering by section (women, men, kids, baby) and pagination via offset and limit. You can fork this API on Parse and revise it to add a price-range or size filter endpoint.
Does this API cover Uniqlo stores outside the United States?+
The API covers only the US storefront at uniqlo.com/us/en, with prices returned in USD. Other regional storefronts (Japan, UK, EU, etc.) are not currently included. You can fork this API on Parse and revise it to target a different regional Uniqlo domain.
How does pagination work across endpoints, and is there a maximum page size?+
Pagination uses offset (starting at 0) and limit (max 100) parameters on search_products and list_products. Each response includes a total field with the full match count and an offset field confirming the current position, so you can calculate the number of remaining pages. get_categories and get_product_details are single-item/single-response calls with no pagination.
Page content last updated . Spec covers 4 endpoints from uniqlo.com.
Related APIs in EcommerceSee all →
urbanoutfitters.com API
Search Urban Outfitters' catalog to find products and browse categories, then view detailed information including prices, descriptions, color and size availability for each item. Check current sale counts and discover what's trending across the store's product lineup.
yoox.com API
Search and browse YOOX's fashion catalog to discover products by category, designer, new arrivals, and sale items. Get detailed product information to find exactly what you're looking for across the YOOX marketplace.
gap.com API
Search and browse Gap's product catalog by keyword or category, retrieve detailed product information including pricing, available sizes, colors, and customer reviews, get product recommendations, locate nearby Gap retail stores, and explore the full site navigation and category tree.
abercrombie.com API
Search and browse Abercrombie & Fitch products across categories, new arrivals, and clearance items while retrieving detailed product information like pricing and availability. Access curated collections and find exactly what you're looking for with powerful search capabilities.
thenorthface.com API
Search and browse The North Face's full product catalog by category, then access detailed information including specifications, pricing, and real-time inventory levels for any item. Find exactly what you're looking for with powerful product search and get complete product details in one place.
asos.com API
Search and browse ASOS's fashion catalog to discover products across women's and men's categories, view real-time pricing and stock information, and find trending or sale items. Get detailed product information, explore similar items, and discover new arrivals and brands all in one place.
hanes.com API
Search and browse Hanes clothing products across categories like men's, women's, and sale items, and retrieve detailed information including sizes, colors, and real-time availability. Find exactly what you're looking for with product variants and comprehensive details to compare options before purchase.
hm.com API
Search H&M's US product catalog by keyword and instantly retrieve detailed information like prices, product images, available sizes, and real-time stock availability. Perfect for comparing items, tracking product details, or building shopping applications powered by H&M's current inventory data.