# Sanmar — 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 SanMar's product catalog to browse t-shirts and other apparel by category, view detailed product information including sizes and MSRP pricing. Access wholesale pricing and real-time inventory data with a B2B account.

**Category:** E-commerce | **Website:** [sanmar.com/](https://sanmar.com/) | **Docs:** [parse.bot/marketplace/5b5a7f51-3f72-4669-a2b3-ada65e93c97a/sanmar-com-api](https://parse.bot/marketplace/5b5a7f51-3f72-4669-a2b3-ada65e93c97a/sanmar-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-sanmar-com-api-5b5a7f51/`
**Auth:** `Authorization: Bearer <LOCUS_API_KEY>`

## Endpoints

### get_category_listing

Fetch product listings for a specific SanMar catalog category with optional brand filtering. Returns paginated results. Categories are URL path segments from the site navigation (e.g. 'T-Shirts/c/tshirts', 'Polos-Knits/c/polosknits'). The brand filter selects a single brand within the category.

**Estimated cost:** Metered

| Field | Type | Required | Description |
|-------|------|----------|-------------|
| `brand` | string | No | Filter by brand name within the category. |
| `category_path` | string | No | Category URL path segment from the SanMar site navigation. |
| `limit` | integer | No | Number of results per page. |
| `page` | integer | No | Page number (0-based). |

```bash
curl -X POST https://api.paywithlocus.com/api/wrapped/parse-sanmar-com-api-5b5a7f51/get_category_listing \
  -H "Authorization: Bearer YOUR_LOCUS_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{"brand":"<string>","category_path":"<string>","limit":"<integer>","page":"<integer>"}'
```

### get_product_detail

Fetch detailed information for a specific product including name, brand, MSRP, available sizes, color variants with thumbnail URLs, gallery images, and companion product suggestions. The product_id is obtained from search_products or get_category_listing results.

**Estimated cost:** Metered

| Field | Type | Required | Description |
|-------|------|----------|-------------|
| `product_id` | string | Yes | Product ID from search or listing results (format: numeric_color, e.g. '9060_TrueNavy'). Obtained from search_products or get_category_listing results[*].product_id. |

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

### search_products

Full-text search over SanMar's wholesale apparel catalog by keyword, style number, or brand name. Returns paginated results with product summaries. Paginates via zero-based page counter; each page returns up to `limit` items. The total result count is available in the pagination object.

**Estimated cost:** Metered

| Field | Type | Required | Description |
|-------|------|----------|-------------|
| `limit` | integer | No | Number of results per page. |
| `page` | integer | No | Page number (0-based). |
| `query` | string | Yes | Search keyword, style number, or brand name. |

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