# Sweetwater — 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 Sweetwater's catalog of musical instruments, audio equipment, and accessories to find products with detailed pricing, availability, ratings, and images. Get autocomplete suggestions as you type to quickly discover exactly what you're looking for.

**Category:** E-commerce | **Website:** [www.sweetwater.com/](https://www.sweetwater.com/) | **Docs:** [parse.bot/marketplace/18cb78ac-f61e-471c-98c6-9045c08b422c/sweetwater-com-api](https://parse.bot/marketplace/18cb78ac-f61e-471c-98c6-9045c08b422c/sweetwater-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-sweetwater-com-api-18cb78ac/`
**Auth:** `Authorization: Bearer <LOCUS_API_KEY>`

## Endpoints

### get_autocomplete

Get search autocomplete suggestions for a partial query. Returns suggested search terms ranked by relevance. Useful for building search-as-you-type functionality or discovering popular queries for a given prefix. The suggestion list length is bounded by max_results.

**Estimated cost:** Metered

| Field | Type | Required | Description |
|-------|------|----------|-------------|
| `max_results` | integer | No | Maximum number of suggestions to return (1-20) |
| `query` | string | Yes | Partial search term to get suggestions for |

```bash
curl -X POST https://api.paywithlocus.com/api/wrapped/parse-sweetwater-com-api-18cb78ac/get_autocomplete \
  -H "Authorization: Bearer YOUR_LOCUS_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{"max_results":"<integer>","query":"<string>"}'
```

### search_products

Full-text search over Sweetwater's product catalog. Supports filtering by brand, category, and stock availability, plus sorting by price or rating. Paginates via a zero-based page index. Each product carries final/retail/catalog pricing, stock and shipping status, average rating, and category membership. The response also surfaces available brands and categories for the current query, enabling progressive filter refinement.

**Estimated cost:** Metered

| Field | Type | Required | Description |
|-------|------|----------|-------------|
| `brand` | string | No | Filter by brand name (e.g., 'Fender', 'Shure', 'Yamaha') |
| `category` | string | No | Filter by top-level category (e.g., 'Guitars', 'Studio & Recording', 'Keyboards & Synthesizers') |
| `hits_per_page` | integer | No | Number of results per page (1-100) |
| `in_stock_only` | boolean | No | Only return in-stock products |
| `page` | integer | No | Page number (0-indexed) |
| `query` | string | Yes | Search query (e.g., 'fender stratocaster', 'shure sm7b', 'keyboard') |
| `sort_by` | string | No | Sort order for results |

```bash
curl -X POST https://api.paywithlocus.com/api/wrapped/parse-sweetwater-com-api-18cb78ac/search_products \
  -H "Authorization: Bearer YOUR_LOCUS_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{"brand":"<string>","category":"<string>","hits_per_page":"<integer>","in_stock_only":"<boolean>","page":"<integer>","query":"<string>","sort_by":"<string>"}'
```
