# Disneycruise Disney Go — 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.

> Browse and compare Disney Cruise Line shore excursions across all ports and destinations with detailed information on pricing, duration, age requirements, and activity descriptions. Search by location or keyword to find the perfect Port Adventure for your cruise vacation.

**Category:** Travel | **Website:** [disneycruise.disney.go.com/es-co/port-adventures/overview/](https://disneycruise.disney.go.com/es-co/port-adventures/overview/) | **Docs:** [parse.bot/marketplace/b3789582-146f-4701-9b0b-a50d54611a4b/disneycruise-disney-go-com-api](https://parse.bot/marketplace/b3789582-146f-4701-9b0b-a50d54611a4b/disneycruise-disney-go-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-disneycruise-disney-go-com-api-b3789582/`
**Auth:** `Authorization: Bearer <LOCUS_API_KEY>`

## Endpoints

### get_excursion_details

Get detailed information about a specific shore excursion by its numeric ID. Returns full description, duration, age restrictions, adult/child/infant prices, know-before-you-go preparation info, and faceted metadata. The ID is obtained from list_excursions results.

**Estimated cost:** Metered

| Field | Type | Required | Description |
|-------|------|----------|-------------|
| `excursion_id` | string | Yes | Numeric excursion ID from list_excursions results (e.g. '412396837'). |

```bash
curl -X POST https://api.paywithlocus.com/api/wrapped/parse-disneycruise-disney-go-com-api-b3789582/get_excursion_details \
  -H "Authorization: Bearer YOUR_LOCUS_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{"excursion_id":"<string>"}'
```

### list_excursions

List shore excursions (Port Adventures) with optional filtering by destination, port, or keyword. Returns all matching excursions in a single page. Each result includes name, code, port, prices, experience types, activity level, and audience suitability. Filtering is case-insensitive partial match on port and keyword.

**Estimated cost:** Metered

| Field | Type | Required | Description |
|-------|------|----------|-------------|
| `destination` | string | No | Destination slug to filter by. |
| `port` | string | No | Filter by port name (partial match, case-insensitive). |
| `query` | string | No | Search keyword to filter excursions by name, code, port, or experience type (case-insensitive). |

```bash
curl -X POST https://api.paywithlocus.com/api/wrapped/parse-disneycruise-disney-go-com-api-b3789582/list_excursions \
  -H "Authorization: Bearer YOUR_LOCUS_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{"destination":"<string>","port":"<string>","query":"<string>"}'
```

### list_ports

List all ports of call, optionally filtered by destination. Returns ports grouped by destination and a flat deduplicated list of all unique ports with their associated destinations.

**Estimated cost:** Metered

| Field | Type | Required | Description |
|-------|------|----------|-------------|
| `destination` | string | No | Destination slug to filter ports. |

```bash
curl -X POST https://api.paywithlocus.com/api/wrapped/parse-disneycruise-disney-go-com-api-b3789582/list_ports \
  -H "Authorization: Bearer YOUR_LOCUS_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{"destination":"<string>"}'
```
