# Yogastudiozuerich — 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 comprehensive information from Yoga Pilates Studio Zürich including class schedules, team profiles, pricing details, and studio rental options to integrate their offerings into your application or service. Build features that display current classes, instructor information, rates, and rental availability all from a single unified source.

**Category:** Other | **Website:** [www.yogastudiozuerich.ch/](https://www.yogastudiozuerich.ch/) | **Docs:** [parse.bot/marketplace/f84e80cf-9d74-4383-a996-6c7409654247/yogastudiozuerich-ch-api](https://parse.bot/marketplace/f84e80cf-9d74-4383-a996-6c7409654247/yogastudiozuerich-ch-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-yogastudiozuerich-ch-api-f84e80cf/`
**Auth:** `Authorization: Bearer <LOCUS_API_KEY>`

## Endpoints

### get_class_schedule

Retrieves the current week's class schedule from the Eversports booking system. Returns all yoga and pilates classes with teacher, time, spots availability, and cancellation status. The schedule refreshes weekly.

**Estimated cost:** Metered

_No parameters required._

```bash
curl -X POST https://api.paywithlocus.com/api/wrapped/parse-yogastudiozuerich-ch-api-f84e80cf/get_class_schedule \
  -H "Authorization: Bearer YOUR_LOCUS_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{}'
```

### get_page_content

Extracts structured content from a specific page of the website including headings, text, navigation links, images, and internal links. Returns all visible content organized by sections for site recreation.

**Estimated cost:** Metered

| Field | Type | Required | Description |
|-------|------|----------|-------------|
| `page` | string | No | Which page to extract content from. |

```bash
curl -X POST https://api.paywithlocus.com/api/wrapped/parse-yogastudiozuerich-ch-api-f84e80cf/get_page_content \
  -H "Authorization: Bearer YOUR_LOCUS_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{"page":"<string>"}'
```

### get_pricing

Retrieves complete pricing information for yoga and pilates classes including subscription packages (Abos), single entries, and trial offers with all associated terms and conditions.

**Estimated cost:** Metered

_No parameters required._

```bash
curl -X POST https://api.paywithlocus.com/api/wrapped/parse-yogastudiozuerich-ch-api-f84e80cf/get_pricing \
  -H "Authorization: Bearer YOUR_LOCUS_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{}'
```

### get_studio_rental

Retrieves complete studio rental information including room descriptions, all rental pricing tiers (one-time and monthly for yoga room, pilates room, therapy room, and full house), cancellation policy, and location details.

**Estimated cost:** Metered

_No parameters required._

```bash
curl -X POST https://api.paywithlocus.com/api/wrapped/parse-yogastudiozuerich-ch-api-f84e80cf/get_studio_rental \
  -H "Authorization: Bearer YOUR_LOCUS_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{}'
```

### get_team

Retrieves the full team page content including all instructors and therapists with their names, roles, and specialties.

**Estimated cost:** Metered

_No parameters required._

```bash
curl -X POST https://api.paywithlocus.com/api/wrapped/parse-yogastudiozuerich-ch-api-f84e80cf/get_team \
  -H "Authorization: Bearer YOUR_LOCUS_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{}'
```
