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

> Morty provides 1 callable API endpoint through the Parse marketplace.

**Category:** Entertainment | **Website:** [morty.app/location/the-great-escape-room/the-great-escape-room-providence-awga](https://morty.app/location/the-great-escape-room/the-great-escape-room-providence-awga) | **Docs:** [parse.bot/marketplace/77957cc0-7677-44ac-bda8-81397270afc9/morty-app-api](https://parse.bot/marketplace/77957cc0-7677-44ac-bda8-81397270afc9/morty-app-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-morty-app-api-77957cc0/`
**Auth:** `Authorization: Bearer <LOCUS_API_KEY>`

## Endpoints

### get_experiences

Returns all active escape room experiences at a given location with their details (name, difficulty, group size range, price range, tags) and available time slots for today and tomorrow. Each experience includes full availability data showing which time slots are open or taken. Makes one request to resolve the location, one to fetch all games, and one per game for availability (typically 2-5 games per location).

**Estimated cost:** Metered

| Field | Type | Required | Description |
|-------|------|----------|-------------|
| `company_slug` | string | No | Company slug from the morty.app URL path (e.g. 'the-great-escape-room' from /location/the-great-escape-room/...). |
| `location_slug` | string | No | Location slug from the morty.app URL path (e.g. 'the-great-escape-room-providence-awga'). |

```bash
curl -X POST https://api.paywithlocus.com/api/wrapped/parse-morty-app-api-77957cc0/get_experiences \
  -H "Authorization: Bearer YOUR_LOCUS_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{"company_slug":"<string>","location_slug":"<string>"}'
```
