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

> Search and compare Marriott hotel properties worldwide, access detailed information about amenities and locations, read guest reviews, and check real-time room availability and pricing across all Marriott brands. Make informed booking decisions by viewing comprehensive hotel details and honest guest feedback all in one place.

**Category:** Travel | **Website:** [marriott.com/](https://marriott.com/) | **Docs:** [parse.bot/marketplace/6f0edf79-d85a-4755-9b5b-7cdbd6f2470a/marriott-com-api](https://parse.bot/marketplace/6f0edf79-d85a-4755-9b5b-7cdbd6f2470a/marriott-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-marriott-com-api-6f0edf79/`
**Auth:** `Authorization: Bearer <LOCUS_API_KEY>`

## Endpoints

### get_hotel_details

Get detailed information for a specific hotel by its MARSHA code. Returns comprehensive metadata including descriptions, amenities flags, contact details, and geographic coordinates. The property must belong to the specified brand.

**Estimated cost:** Metered

| Field | Type | Required | Description |
|-------|------|----------|-------------|
| `brand` | string | No | Brand code of the hotel |
| `property_id` | string | Yes | Hotel MARSHA code (e.g., NYCMQ, ALGMC). Obtain from list_hotels results. |

```bash
curl -X POST https://api.paywithlocus.com/api/wrapped/parse-marriott-com-api-6f0edf79/get_hotel_details \
  -H "Authorization: Bearer YOUR_LOCUS_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{"brand":"<string>","property_id":"<string>"}'
```

### get_reviews

Retrieve guest reviews for a specific hotel. Returns paginated review data sorted by most recent submission. Uses offset-based pagination.

**Estimated cost:** Metered

| Field | Type | Required | Description |
|-------|------|----------|-------------|
| `limit` | integer | No | Maximum number of reviews to return. |
| `offset` | integer | No | Pagination offset for retrieving subsequent pages of reviews. |
| `property_id` | string | Yes | Hotel MARSHA code (e.g., NYCMQ). Obtain from list_hotels results. |

```bash
curl -X POST https://api.paywithlocus.com/api/wrapped/parse-marriott-com-api-6f0edf79/get_reviews \
  -H "Authorization: Bearer YOUR_LOCUS_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{"limit":"<integer>","offset":"<integer>","property_id":"<string>"}'
```

### get_rooms_and_pricing

Get the availability page URL for a specific hotel and date range. Returns the constructed availability URL and HTTP status indicating whether the page is accessible. Dates default to 30/31 days from today when omitted.

**Estimated cost:** Metered

| Field | Type | Required | Description |
|-------|------|----------|-------------|
| `check_in` | string | No | Check-in date in ISO format YYYY-MM-DD. When omitted, defaults to 30 days from today. |
| `check_out` | string | No | Check-out date in ISO format YYYY-MM-DD. When omitted, defaults to 31 days from today. |
| `property_id` | string | Yes | Hotel MARSHA code (e.g., NYCMQ). Obtain from list_hotels results. |

```bash
curl -X POST https://api.paywithlocus.com/api/wrapped/parse-marriott-com-api-6f0edf79/get_rooms_and_pricing \
  -H "Authorization: Bearer YOUR_LOCUS_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{"check_in":"<string>","check_out":"<string>","property_id":"<string>"}'
```

### list_hotels

List all hotels for a specific Marriott brand. Returns an array of hotel objects with name, location, and contact information. Each brand has hundreds of properties worldwide; no server-side filtering beyond brand selection.

**Estimated cost:** Metered

| Field | Type | Required | Description |
|-------|------|----------|-------------|
| `brand` | string | No | Marriott brand code |
| `locale` | string | No | Locale for property names and descriptions (e.g., en-US, de-DE) |

```bash
curl -X POST https://api.paywithlocus.com/api/wrapped/parse-marriott-com-api-6f0edf79/list_hotels \
  -H "Authorization: Bearer YOUR_LOCUS_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{"brand":"<string>","locale":"<string>"}'
```
