# Orbitz — 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 for hotels and destinations on Orbitz, then view detailed property information including pricing and amenities. Get typeahead location suggestions as you type to quickly find your travel destination.

**Category:** Travel | **Website:** [orbitz.com/](https://orbitz.com/) | **Docs:** [parse.bot/marketplace/a28d99af-5037-4053-9e2e-d8747cf20ba2/orbitz-com-api](https://parse.bot/marketplace/a28d99af-5037-4053-9e2e-d8747cf20ba2/orbitz-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-orbitz-com-api-a28d99af/`
**Auth:** `Authorization: Bearer <LOCUS_API_KEY>`

## Endpoints

### get_hotel_details

Get detailed information about a specific hotel including address, amenities, star rating, review score, coordinates, and gallery images (up to 10). The property_id comes from search_hotels results.

**Estimated cost:** Metered

| Field | Type | Required | Description |
|-------|------|----------|-------------|
| `property_id` | string | Yes | Hotel property ID from search_hotels results (e.g., '30039177') |

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

### location_typeahead

Search for travel destinations by name. Returns up to 10 matching locations including cities, airports, neighborhoods, and points of interest with their region IDs, coordinates, and country information. Use the returned regionId to search for hotels via search_hotels.

**Estimated cost:** Metered

| Field | Type | Required | Description |
|-------|------|----------|-------------|
| `query` | string | Yes | Search query for location (e.g., 'New York', 'Paris', 'London') |

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

### search_hotels

Search for hotels by region ID and travel dates. Returns hotel listings with pricing including total stay cost, strike-out pricing where applicable, and neighborhood information. Region ID comes from location_typeahead results. Dates must be in the future.

**Estimated cost:** Metered

| Field | Type | Required | Description |
|-------|------|----------|-------------|
| `adults` | integer | No | Number of adults per room (1-8) |
| `check_in` | string | Yes | Check-in date in YYYY-MM-DD format, must be a future date |
| `check_out` | string | Yes | Check-out date in YYYY-MM-DD format, must be after check_in |
| `region_id` | string | Yes | Region ID from location_typeahead results (e.g., '2621' for New York, '2734' for Paris) |

```bash
curl -X POST https://api.paywithlocus.com/api/wrapped/parse-orbitz-com-api-a28d99af/search_hotels \
  -H "Authorization: Bearer YOUR_LOCUS_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{"adults":"<integer>","check_in":"<string>","check_out":"<string>","region_id":"<string>"}'
```
