# Quince — 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 and browse Quince's product catalog across women's clothing and all other categories, getting detailed information like prices, descriptions, and availability for each item. Explore product categories to discover collections and find exactly what you're looking for on Quince.

**Category:** E-commerce | **Website:** [www.quince.com/](https://www.quince.com/) | **Docs:** [parse.bot/marketplace/0d3dcbcf-00ae-4123-9181-7718cb46b18f/quince-com-api](https://parse.bot/marketplace/0d3dcbcf-00ae-4123-9181-7718cb46b18f/quince-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-quince-com-api-0d3dcbcf/`
**Auth:** `Authorization: Bearer <LOCUS_API_KEY>`

## Endpoints

### get_categories

Browse the product category hierarchy. Returns categories that are children of the specified group_id, each with a product count and nested children. Use 'all' to get top-level categories; use a specific group_id (e.g. 'women', 'men', 'home') to drill into subcategories. Category group_ids are the filter values accepted by search_products.

**Estimated cost:** Metered

| Field | Type | Required | Description |
|-------|------|----------|-------------|
| `group_id` | string | No | Parent group ID to get children for. Use 'all' for top-level categories, 'women' for women's subcategories, 'men' for men's, 'home' for home categories, etc. |

```bash
curl -X POST https://api.paywithlocus.com/api/wrapped/parse-quince-com-api-0d3dcbcf/get_categories \
  -H "Authorization: Bearer YOUR_LOCUS_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{"group_id":"<string>"}'
```

### get_product_details

Fetch full product information by slug, internal product ID, or full URL. Returns complete details including colors, sizes, images grouped by color, materials, care instructions, review summary, and transparent pricing breakdown. Exactly one identifier must be provided; slug is the canonical key (available from search results).

**Estimated cost:** Metered

| Field | Type | Required | Description |
|-------|------|----------|-------------|
| `product_id` | string | No | Internal numeric product ID (e.g., '76') |
| `slug` | string | No | Product URL slug (e.g., 'women/cashmere/cashmere-crewneck-sweater') |
| `url` | string | No | Full product URL (e.g., 'https://www.quince.com/women/cashmere/cashmere-crewneck-sweater') |

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

### search_products

Full-text search over Quince product catalog. query matches product titles and descriptions; results can be narrowed by category group_id and gender. Returns lightweight product summaries with pricing and available filter facets. Paginates via page number. Each ProductSummary exposes a .details() drill-down (a separate fetch).

**Estimated cost:** Metered

| Field | Type | Required | Description |
|-------|------|----------|-------------|
| `category` | string | No | Category group_id to filter by (e.g., 'women>dresses', 'women>cashmere'). Use get_categories to discover available group IDs. |
| `gender` | string | No | Gender filter: 'Female', 'Male', or 'Unisex' |
| `limit` | integer | No | Number of results per page (max 100) |
| `page` | integer | No | Page number for pagination |
| `query` | string | No | Search keyword |

```bash
curl -X POST https://api.paywithlocus.com/api/wrapped/parse-quince-com-api-0d3dcbcf/search_products \
  -H "Authorization: Bearer YOUR_LOCUS_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{"category":"<string>","gender":"<string>","limit":"<integer>","page":"<integer>","query":"<string>"}'
```
