Discover/Uniqlo API
live

Uniqlo APIuniqlo.com

Search Uniqlo US products, fetch full product details, and browse categories. Get pricing, colors, sizes, ratings, and images via 3 structured endpoints.

Endpoint health
verified 6d ago
get_categories
search_products
get_product_details
3/3 passing latest checkself-healing
Endpoints
3
Updated
21d ago

What is the Uniqlo API?

This API provides structured access to the Uniqlo US online store catalog across 3 endpoints, covering product search, product details, and category navigation. The search_products endpoint returns paginated results with pricing, available colors, sizes, and average ratings. The get_product_details endpoint exposes per-product data including composition, breadcrumbs, fit ratings, and multiple image URLs.

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 — search products, get details, browse categories."""
from parse_apis.uniqlo_us_store_api import Uniqlo, Section, ProductNotFound

client = Uniqlo()

# Search for women's t-shirts, capped at 3 results
for product in client.products.search(query="t-shirt", section=Section.WOMEN, limit=3):
    print(product.name, product.base_price, product.currency)

# Drill into the first result's full details
product = client.products.search(query="jacket", limit=1).first()
if product:
    detail = client.products.get(product_id=product.product_id)
    print(detail.name, detail.composition, detail.rating_average)
    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 store 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)
        for sub in cat.subcategories[:2]:
            print(f"  {sub.name} -> {sub.url}")

print("exercised: products.search / products.get / catalogs.get / product.refresh")
All endpoints · 3 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

Endpoints and Data Coverage

The API covers three areas of the Uniqlo US catalog. search_products accepts a required query string and optional section filter (women, men, kids, or baby), returning paginated results with total count, offset, and an array of product objects. Each product includes product_id, name, base_price, promo_price, currency, colors, sizes, gender, price_group, and rating_aver. Pagination is controlled via limit (up to 100) and offset.

Product Details

get_product_details accepts either a bare numeric ID like 465193 or a full-format ID like E479208-000 — the endpoint normalizes both forms to the canonical E{id}-000 format internally. The response adds fields not available in search results: sub_images (array of additional image URLs), breadcrumbs (gender, class, category, subcategory strings), fit_rating, and composition. The optional price_group parameter defaults to 00, which is the only reliably supported value; passing other values may result in a not-found error.

Category Navigation

get_categories takes no inputs and returns a sections object keyed by Women, Men, and Kids & Baby. Each section contains an array of category objects with name, url, and a subcategories array — useful for building navigation trees or seeding product searches with canonical category names. This endpoint reflects the top-level taxonomy of the Uniqlo US site as currently structured.

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
3/3 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
  • Build a cross-brand price comparison tool using base_price and promo_price fields from search_products
  • Populate a product catalog page with images, colors, and sizes pulled from get_product_details
  • Implement a Uniqlo-specific search interface filtered by section (men, women, kids, baby)
  • Track promotional pricing changes over time by polling promo_price for specific product IDs
  • Generate a structured category sitemap using the sections and subcategories data from get_categories
  • Filter apparel by size availability using the sizes array returned in search and detail endpoints
  • Display fit and satisfaction signals in a product UI using fit_rating and rating_aver fields
Pricing & limitsSee full pricing →
TierPriceCredits/monthRate limit
Free$0/mo1005 req/min
Hobby$30/mo1,00020 req/min
Developer$100/mo5,000100 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 Uniqlo offer an official public developer API?+
Uniqlo does not publish a public developer API or API documentation for third-party access to its product catalog. This Parse API provides structured access to the Uniqlo US store data.
What does `get_product_details` return beyond what `search_products` provides?+
get_product_details adds several fields not present in search results: sub_images (additional product image URLs), breadcrumbs (structured category path with gender, class, category, and subcategory), fit_rating, and material composition. Search results include rating_aver but not the full image gallery or breadcrumb hierarchy.
Does the API cover Uniqlo stores outside the US, such as the UK, Japan, or EU regions?+
Not currently. The API covers only the Uniqlo US store at uniqlo.com/us/en, so prices are in USD and product availability reflects the US catalog. You can fork this API on Parse and revise it to target other regional Uniqlo storefronts.
Is stock availability or inventory level exposed for each product?+
Not currently. The API returns size and color options but does not expose per-SKU stock levels or an in-stock/out-of-stock flag. You can fork this API on Parse and revise it to add an inventory availability endpoint.
How does pagination work in `search_products`?+
Use the offset parameter to page through results, starting at 0. The limit parameter controls how many results are returned per page, up to a maximum of 100. The response includes total (the full matching product count) and count (items returned in the current page), so you can calculate how many additional pages exist.
Page content last updated . Spec covers 3 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.
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.
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.
loft.co.jp API
Browse and search Loft's product catalog, view detailed product information, explore categories and rankings, and discover store locations. Find exactly what you're looking for with powerful search and filtering across their entire online inventory.
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.