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

> Discover travel inspiration and plan your next adventure by browsing curated travel articles, destination guides, and bookable trips organized by region and city. Search for specific destinations, compare trip dates and prices, and explore popular cities to find the perfect getaway.

**Category:** Travel | **Website:** [culturetrip.com/](https://culturetrip.com/) | **Docs:** [parse.bot/marketplace/3e73c038-93f0-495b-93a7-0eb621ec2643/culturetrip-com-api](https://parse.bot/marketplace/3e73c038-93f0-495b-93a7-0eb621ec2643/culturetrip-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-culturetrip-com-api-3e73c038/`
**Auth:** `Authorization: Bearer <LOCUS_API_KEY>`

## Endpoints

### get_article_detail

Retrieve full details of a specific article including its curated attractions, author, publish date, and content text.

**Estimated cost:** Metered

| Field | Type | Required | Description |
|-------|------|----------|-------------|
| `article_path` | string | Yes | The URL path of the article (e.g., /asia/japan/tokyo/articles/best-things-to-see-and-do-in-tokyo). |

```bash
curl -X POST https://api.paywithlocus.com/api/wrapped/parse-culturetrip-com-api-3e73c038/get_article_detail \
  -H "Authorization: Bearer YOUR_LOCUS_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{"article_path":"<string>"}'
```

### get_articles_by_destination

Retrieve a list of travel articles for a specific destination path. Returns articles with titles, URLs, thumbnails, and categories found on the destination page.

**Estimated cost:** Metered

| Field | Type | Required | Description |
|-------|------|----------|-------------|
| `destination_path` | string | Yes | The URL path of the destination on theculturetrip.com (e.g., /asia/japan/tokyo, /europe/united-kingdom/england/london, /asia/japan). |

```bash
curl -X POST https://api.paywithlocus.com/api/wrapped/parse-culturetrip-com-api-3e73c038/get_articles_by_destination \
  -H "Authorization: Bearer YOUR_LOCUS_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{"destination_path":"<string>"}'
```

### get_popular_cities

Get popular cities highlighted on the Culture Trip homepage. Returns city names and their paths.

**Estimated cost:** Metered

_No parameters required._

```bash
curl -X POST https://api.paywithlocus.com/api/wrapped/parse-culturetrip-com-api-3e73c038/get_popular_cities \
  -H "Authorization: Bearer YOUR_LOCUS_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{}'
```

### get_trip_dates_and_prices

Get pricing information for a specific trip by fetching its tour page. Works best with tourhub.co URLs obtained from list_trips results.

**Estimated cost:** Metered

| Field | Type | Required | Description |
|-------|------|----------|-------------|
| `trip_url` | string | Yes | Full URL of the trip page, preferably a tourhub.co URL from list_trips results (e.g., https://culturetrip.tourhub.co/tour/one-life-adventures/japan-classic-14-day-tour/14djpt?tt_affiliate=12T8). |

```bash
curl -X POST https://api.paywithlocus.com/api/wrapped/parse-culturetrip-com-api-3e73c038/get_trip_dates_and_prices \
  -H "Authorization: Bearer YOUR_LOCUS_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{"trip_url":"<string>"}'
```

### list_destinations_by_region

List countries and cities within a specific region. Returns destination names and their paths.

**Estimated cost:** Metered

| Field | Type | Required | Description |
|-------|------|----------|-------------|
| `region` | string | Yes | Region slug (e.g., asia, europe, south-america, africa, pacific, north-america, middle-east). |

```bash
curl -X POST https://api.paywithlocus.com/api/wrapped/parse-culturetrip-com-api-3e73c038/list_destinations_by_region \
  -H "Authorization: Bearer YOUR_LOCUS_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{"region":"<string>"}'
```

### list_trips

List bookable trips for a given destination. Returns trip cards with names, prices, durations, and links to the tour booking page on tourhub.

**Estimated cost:** Metered

| Field | Type | Required | Description |
|-------|------|----------|-------------|
| `destination` | string | No | Destination slug (e.g., japan, anywhere, asia/thailand). Omitting returns trips for all destinations. |

```bash
curl -X POST https://api.paywithlocus.com/api/wrapped/parse-culturetrip-com-api-3e73c038/list_trips \
  -H "Authorization: Bearer YOUR_LOCUS_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{"destination":"<string>"}'
```

### search_trips

Search for travel destinations and get location suggestions with links to their trips pages.

**Estimated cost:** Metered

| Field | Type | Required | Description |
|-------|------|----------|-------------|
| `query` | string | Yes | Search keyword (e.g., Tokyo, London, japan). |

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