# Stories — 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 & Other Stories' catalog to find products by name or category, and retrieve detailed information including pricing, images, available sizes, colors, and materials for each item. Get comprehensive product details to compare styles, check inventory across variations, and make informed shopping decisions.

**Category:** E-commerce | **Website:** [www.stories.com/](https://www.stories.com/) | **Docs:** [parse.bot/marketplace/dbd79c34-95b2-494e-918e-c436b581d2bc/stories-com-api](https://parse.bot/marketplace/dbd79c34-95b2-494e-918e-c436b581d2bc/stories-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-stories-com-api-dbd79c34/`
**Auth:** `Authorization: Bearer <LOCUS_API_KEY>`

## Endpoints

### get_product_details

Retrieve full product details for a single & Other Stories product. Accepts either a full product URL or a product slug (the path segment after /product/ in the URL). Returns comprehensive information including description, materials composition, size-level stock quantities, all product images, pricing with discount info, care instructions, fit details, and model sizing reference. The product slug is available from search_products results via the product_url field.

**Estimated cost:** Metered

| Field | Type | Required | Description |
|-------|------|----------|-------------|
| `product_slug` | string | No | Product slug from URL path, the segment after '/product/' (e.g., 'satin-slip-midi-dress-pink-floral-1289204001'). Provide either product_url or product_slug. |
| `product_url` | string | No | Full product URL (e.g., 'https://www.stories.com/en-us/product/satin-slip-midi-dress-pink-floral-1289204001/'). Provide either product_url or product_slug. |

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

### search_products

Full-text search over & Other Stories product catalog. Returns a paginated list of products matching the query keyword. Each page contains up to 10 products. Results include variant-level detail: name, SKU, price, color, available sizes, images, stock status, and color swatches. Pagination advances via page number.

**Estimated cost:** Metered

| Field | Type | Required | Description |
|-------|------|----------|-------------|
| `page` | integer | No | Page number for pagination, starting at 1. |
| `query` | string | Yes | Search keyword to match against product names and categories (e.g., 'dress', 'jacket', 'shoes'). |

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