# COS — 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 COS fashion products by name or category to instantly access pricing, product images, and direct links to items. Retrieve detailed information about specific products including descriptions, availability, and pricing to compare styles and make informed shopping decisions.

**Category:** E-commerce | **Website:** [www.cos.com/](https://www.cos.com/) | **Docs:** [parse.bot/marketplace/9fa1f82a-c548-43f6-bb59-9d1c4e04ee8a/cos-com-api](https://parse.bot/marketplace/9fa1f82a-c548-43f6-bb59-9d1c4e04ee8a/cos-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-cos-com-api-9fa1f82a/`
**Auth:** `Authorization: Bearer <LOCUS_API_KEY>`

## Endpoints

### get_product_details

Retrieve full product details by COS product ID. Returns extended information including sustainability composition (materials and percentages), category memberships, launch date, and description not available in search results. The product ID is the 10-digit code from search_products results.

**Estimated cost:** Metered

| Field | Type | Required | Description |
|-------|------|----------|-------------|
| `product_id` | string | Yes | COS product ID (e.g., '1327473001'). Obtainable from search_products results[*].id |

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

### search_products

Full-text search over COS product catalog by keyword. Returns paginated product listings including name, price, images, stock info, and product URL. Pagination is page-based (1-indexed). Each product carries enough metadata to filter client-side by gender, sale status, or newness.

**Estimated cost:** Metered

| Field | Type | Required | Description |
|-------|------|----------|-------------|
| `page` | integer | No | Page number (1-based) |
| `page_size` | integer | No | Number of results per page (max 40) |
| `query` | string | Yes | Search keyword (e.g., 'jacket', 'dress', 'wool sweater') |

```bash
curl -X POST https://api.paywithlocus.com/api/wrapped/parse-cos-com-api-9fa1f82a/search_products \
  -H "Authorization: Bearer YOUR_LOCUS_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{"page":"<integer>","page_size":"<integer>","query":"<string>"}'
```
