# Tryshed — 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.

> Access data from tryshed.com.

**Category:** Healthcare | **Website:** [www.tryshed.com/](https://www.tryshed.com/) | **Docs:** [parse.bot/marketplace/32597272-7cbc-4f04-8be8-da3b46a53e8b/tryshed-com-api](https://parse.bot/marketplace/32597272-7cbc-4f04-8be8-da3b46a53e8b/tryshed-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-tryshed-com-api-32597272/`
**Auth:** `Authorization: Bearer <LOCUS_API_KEY>`

## Endpoints

### get_product

Get detailed product information including pricing plans, description, category, availability, and whether a prescription is required. The slug can be obtained from the list_products endpoint. Both /products/<slug> and /products/product/<slug> URL patterns are tried automatically.

**Estimated cost:** Metered

| Field | Type | Required | Description |
|-------|------|----------|-------------|
| `slug` | string | Yes | Product slug from the list_products endpoint (e.g. 'compounded-tirzepatide-injections', 'glp-1-liquid-drops'). |

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

### list_products

List all available products from Shed. When category is omitted, returns all products from the homepage (all categories). Each product includes its slug (usable with get_product), name, medication form, and URL. Returns products from all categories: weight loss, sexual health, longevity, and hair.

**Estimated cost:** Metered

| Field | Type | Required | Description |
|-------|------|----------|-------------|
| `category` | string | No | Filter products by category slug. Known values: 'weight-loss', 'longevity'. When omitted, returns all products across all categories from the homepage. |

```bash
curl -X POST https://api.paywithlocus.com/api/wrapped/parse-tryshed-com-api-32597272/list_products \
  -H "Authorization: Bearer YOUR_LOCUS_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{"category":"<string>"}'
```
