# Stranded Records — 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.

> Browse and search the vinyl record catalog at Stranded Records to discover albums available for purchase, organized by collection or keyword. Find your next favorite record by exploring their inventory of physical vinyl stock.

**Category:** E-commerce | **Website:** [www.strandedrecords.com/](https://www.strandedrecords.com/) | **Docs:** [parse.bot/marketplace/753e35a7-3e0e-41ea-90be-e4e3fc168ee5/strandedrecords-com-api](https://parse.bot/marketplace/753e35a7-3e0e-41ea-90be-e4e3fc168ee5/strandedrecords-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-strandedrecords-com-api-753e35a7/`
**Auth:** `Authorization: Bearer <LOCUS_API_KEY>`

## Endpoints

### list_products

Browse vinyl records for sale. Returns paginated product listings from the full catalog or a specific collection. Each page returns up to 250 items; an empty page signals the end of results.

**Estimated cost:** Metered

| Field | Type | Required | Description |
|-------|------|----------|-------------|
| `collection` | string | No | Collection handle to filter by (e.g. 'new-arrivals', 'top-selling', 'catalogue'). Omit to browse the full catalog. |
| `page` | integer | No | Page number for pagination. |

```bash
curl -X POST https://api.paywithlocus.com/api/wrapped/parse-strandedrecords-com-api-753e35a7/list_products \
  -H "Authorization: Bearer YOUR_LOCUS_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{"collection":"<string>","page":"<integer>"}'
```

### search_products

Search products by keyword. Returns up to 10 matching results from the store's search index.

**Estimated cost:** Metered

| Field | Type | Required | Description |
|-------|------|----------|-------------|
| `query` | string | Yes | Search term to find products (e.g. 'jazz', 'pink floyd'). |

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