# Uniqlo — Wrapped API

> **You are on:** `https://api.paywithlocus.com/api` | [llms.txt](https://paywithlocus.com/llms.txt) | [docs](https://docs.paywithlocus.com)
>
> Locus runs on multiple environments -- make sure every URL you call matches your expected environment.
> | Environment | Landing | API | Docs |
> |---|---|---|---|
> | Production | paywithlocus.com | api.paywithlocus.com | docs.paywithlocus.com |
> | Beta | beta.paywithlocus.com | api.beta.paywithlocus.com | docs.paywithlocus.com |
> | Stage | stage.paywithlocus.com | api.stage.paywithlocus.com | docs.paywithlocus.com |
>
> If the API URL above doesn't match your expected environment, re-fetch this file from the correct domain.

> Search Uniqlo's US store catalog for clothing and accessories, view detailed product information, and explore available categories to find exactly what you're looking for. Browse the full range of Uniqlo's offerings right from your app or service without visiting the website.

**Category:** E-commerce | **Website:** [www.uniqlo.com/us/en/](https://www.uniqlo.com/us/en/) | **Docs:** [parse.bot/marketplace/f25a21f8-6bb8-49f0-9496-95095a071c57/uniqlo-com-api](https://parse.bot/marketplace/f25a21f8-6bb8-49f0-9496-95095a071c57/uniqlo-com-api)

Pay-per-use API proxy. Each call is automatically billed to your wallet in USDC.

## Access

**Base URL:** `https://api.paywithlocus.com/api/wrapped/parse-uniqlo-com-api-f25a21f8/`
**Auth:** `Authorization: Bearer <LOCUS_API_KEY>`

## Endpoints

### get_categories

Retrieve the full category tree for the Uniqlo US store, organized by section (Women, Men, Kids & Baby). Each top-level category includes its subcategories with navigation URL paths. No input parameters required — returns the complete current navigation hierarchy.

**Estimated cost:** Metered

_No parameters required._

```bash
curl -X POST https://api.paywithlocus.com/api/wrapped/parse-uniqlo-com-api-f25a21f8/get_categories \
  -H "Authorization: Bearer YOUR_LOCUS_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{}'
```

### get_product_details

Fetch full details for a single product by its ID. Returns name, pricing, all available colors and sizes, image URLs per color, material composition, care instructions, design details, breadcrumb navigation, and customer ratings. Accepts numeric IDs (e.g. '465193') or the canonical format (e.g. 'E465193-000'); normalization is automatic.

**Estimated cost:** Metered

| Field | Type | Required | Description |
|-------|------|----------|-------------|
| `price_group` | string | No | Price group code. Only '00' is reliably supported; other values may return a not-found error if that price group does not exist for the product. |
| `product_id` | string | Yes | Numeric product ID (e.g. '465193') or full format ID (e.g. 'E479208-000'). The E prefix and -000 suffix are normalized automatically. |

```bash
curl -X POST https://api.paywithlocus.com/api/wrapped/parse-uniqlo-com-api-f25a21f8/get_product_details \
  -H "Authorization: Bearer YOUR_LOCUS_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{"price_group":"<string>","product_id":"<string>"}'
```

### list_products

List all products in the Uniqlo US catalog with pagination. Returns a lightweight summary per product: title, pricing (base and sale), currency, availability status, product page URL, and main image URL. An optional section filter narrows results to a gender department. Results are paginated via offset; use offset + count to advance.

**Estimated cost:** Metered

| Field | Type | Required | Description |
|-------|------|----------|-------------|
| `limit` | integer | No | Number of products per page (max 100) |
| `offset` | integer | No | Offset for pagination (starts at 0) |
| `section` | string | No | Filter by section: 'women', 'men', 'kids', or 'baby'. Empty string returns all sections. |

```bash
curl -X POST https://api.paywithlocus.com/api/wrapped/parse-uniqlo-com-api-f25a21f8/list_products \
  -H "Authorization: Bearer YOUR_LOCUS_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{"limit":"<integer>","offset":"<integer>","section":"<string>"}'
```

### search_products

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.

**Estimated cost:** Metered

| Field | Type | Required | Description |
|-------|------|----------|-------------|
| `limit` | integer | No | Number of results per page (max 100) |
| `offset` | integer | No | Offset for pagination (starts at 0) |
| `query` | string | Yes | Search keyword (e.g., 't-shirt', 'jacket', 'jeans') |
| `section` | string | No | Filter by section: 'women', 'men', 'kids', or 'baby'. Empty string returns all sections. |

```bash
curl -X POST https://api.paywithlocus.com/api/wrapped/parse-uniqlo-com-api-f25a21f8/search_products \
  -H "Authorization: Bearer YOUR_LOCUS_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{"limit":"<integer>","offset":"<integer>","query":"<string>","section":"<string>"}'
```
