# Howard Miller — 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 Howard Miller's complete catalog of clocks and furniture to find product details, pricing, and availability from their official store. Quickly look up specific items or explore collections to compare features and make informed purchasing decisions.

**Category:** E-commerce | **Website:** [howardmiller.com/](https://howardmiller.com/) | **Docs:** [parse.bot/marketplace/58b87222-6c1a-4ed3-9e73-8d66fe22b384/howardmiller-com-api](https://parse.bot/marketplace/58b87222-6c1a-4ed3-9e73-8d66fe22b384/howardmiller-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-howardmiller-com-api-58b87222/`
**Auth:** `Authorization: Bearer <LOCUS_API_KEY>`

## Endpoints

### get_product

Retrieve full product details by handle (URL slug). Returns complete product information including description HTML, all variants with pricing and SKUs, images, options, and tags.

**Estimated cost:** Metered

| Field | Type | Required | Description |
|-------|------|----------|-------------|
| `handle` | string | Yes | Product URL slug (e.g. 'talus-floor-clock-615138'). Available from search_products results. |

```bash
curl -X POST https://api.paywithlocus.com/api/wrapped/parse-howardmiller-com-api-58b87222/get_product \
  -H "Authorization: Bearer YOUR_LOCUS_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{"handle":"<string>"}'
```

### search_products

Full-text search over Howard Miller products by keyword. Returns up to 10 matching products with pricing, availability, and image data. Results are ordered by relevance.

**Estimated cost:** Metered

| Field | Type | Required | Description |
|-------|------|----------|-------------|
| `limit` | integer | No | Maximum number of products to return. Accepted range: 1-10. |
| `query` | string | Yes | Search query text to match against product titles, types, variants, vendor, and SKUs. |

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