# Travelocity — 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 travel destinations and browse hotel listings on Travelocity. Compare options by location, dates, and availability to find and book accommodation.

**Category:** Travel | **Website:** [travelocity.com/](https://travelocity.com/) | **Docs:** [parse.bot/marketplace/4b15c3f8-6e7a-4e75-bf78-787b0f6f651f/travelocity-com-api](https://parse.bot/marketplace/4b15c3f8-6e7a-4e75-bf78-787b0f6f651f/travelocity-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-travelocity-com-api-4b15c3f8/`
**Auth:** `Authorization: Bearer <LOCUS_API_KEY>`

## Endpoints

### search_destinations

Search for destinations by keyword to get region IDs (gaiaId) used for hotel searches. Returns matching cities, airports, neighborhoods, and metro areas. The region ID from results is required as input for search_hotels.

**Estimated cost:** Metered

| Field | Type | Required | Description |
|-------|------|----------|-------------|
| `query` | string | Yes | Search keyword for destination (e.g. 'New York', 'Las Vegas', 'Miami') |

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

### search_hotels

Search for hotels by region ID and dates. Returns up to 50 hotel listings sorted by recommended. Use region IDs obtained from search_destinations. Requires establishing an Akamai session first (handled automatically). Each hotel includes total price for the stay, nightly price, and a direct booking URL.

**Estimated cost:** Metered

| Field | Type | Required | Description |
|-------|------|----------|-------------|
| `adults` | integer | No | Number of adults per room |
| `check_in` | string | Yes | Check-in date in ISO format YYYY-MM-DD |
| `check_out` | string | Yes | Check-out date in ISO format YYYY-MM-DD |
| `region_id` | string | Yes | Region ID from search_destinations (e.g. '2621' for New York, '2008' for Las Vegas) |

```bash
curl -X POST https://api.paywithlocus.com/api/wrapped/parse-travelocity-com-api-4b15c3f8/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>"}'
```
