# Vitabella — 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 Vita Bella Health's complete telehealth product catalog to compare treatments, view pricing, and explore available health categories. Find the right telehealth solutions for your needs with instant access to their full product lineup.

**Category:** Healthcare | **Website:** [vitabella.com/](https://vitabella.com/) | **Docs:** [parse.bot/marketplace/d120721e-57ac-46da-b278-b9f967024e83/vitabella-com-api](https://parse.bot/marketplace/d120721e-57ac-46da-b278-b9f967024e83/vitabella-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-vitabella-com-api-d120721e/`
**Auth:** `Authorization: Bearer <LOCUS_API_KEY>`

## Endpoints

### list_products

List all active telehealth products from Vita Bella Health. Returns product name, starting monthly price, product image URL, and treatment type (category). Optionally filter by treatment type. Products may belong to multiple treatment categories (pipe-separated). Results are sorted alphabetically by title.

**Estimated cost:** Metered

| Field | Type | Required | Description |
|-------|------|----------|-------------|
| `treatment_type` | string | No | Filter products by treatment category. Matches products whose categories contain the given value (case-insensitive partial match). When omitted, all active products are returned. |

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