> ## Documentation Index
> Fetch the complete documentation index at: https://docs.voicelab360.com/llms.txt
> Use this file to discover all available pages before exploring further.

# Studios

> Discover, check availability, and book professional recording studios.

# Studios

The VoiceLab360 Studios API provides programmatic access to professional recording facilities for discovery, availability checking, and booking.

## Endpoints

| Endpoint                                | Description                              |
| --------------------------------------- | ---------------------------------------- |
| `GET /api/v1/studios/discover`          | Search and filter available studios      |
| `GET /api/v1/studios/{id}/availability` | Check availability for a specific studio |
| `POST /api/v1/studios/{id}/book`        | Create a booking                         |

## Discovery

```bash theme={null}
curl "https://www.voicelab360.com/api/v1/studios/discover?city=Los+Angeles&type=recording" \
  -H "Authorization: Bearer vl360_live_YOUR_KEY"
```

### Query parameters

| Parameter  | Type    | Description                                            |
| ---------- | ------- | ------------------------------------------------------ |
| `city`     | string  | Filter by city                                         |
| `state`    | string  | Filter by state or province                            |
| `type`     | string  | `recording`, `mixing`, `mastering`, `podcast`, `foley` |
| `capacity` | integer | Minimum booth capacity                                 |

## Availability

```bash theme={null}
curl "https://www.voicelab360.com/api/v1/studios/studio_abc123/availability?date=2026-08-01" \
  -H "Authorization: Bearer vl360_live_YOUR_KEY"
```

## Booking

```bash theme={null}
curl -X POST https://www.voicelab360.com/api/v1/studios/studio_abc123/book \
  -H "Authorization: Bearer vl360_live_YOUR_KEY" \
  -H "Content-Type: application/json" \
  -d '{
    "date": "2026-08-01",
    "start_time": "10:00",
    "end_time": "14:00",
    "room_id": "room_001",
    "notes": "ADR session, 3 talent"
  }'
```

A 2.5% platform fee is applied to all studio bookings at checkout.
