# TravelPulse Park Wait Times

> TravelPulse Park Wait Times is a paid API for AI agents from travelpulse-nu.vercel.app, paid per call via x402, $0.05/call, status unknown (last checked 2026-09-15).

Returns live ride wait times for theme parks along with a visit optimization strategy to minimize waiting

## Facts

- Endpoint: GET https://travelpulse-nu.vercel.app/api/parks/waits
- Price: $0.05/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-15
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/travelpulse-park-wait-times-283f8a65
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_tWruUmE8L8AudElfciUS-

Status and success rate cover calls made through Zero and Zero's own probes. Third-party monitors may report differently.

## How to call it through Zero

Zero handles the 402 payment challenge and records the run. With the Zero CLI installed (`npm i -g @zeroxyz/cli`):

```sh
zero fetch --capability travelpulse-park-wait-times-283f8a65
```

Example prompt: What are the current ride wait times at Magic Kingdom today, and what's the best order to tackle the attractions to spend as little time in line as possible?

## When to prefer this

Use this endpoint when a user needs real-time, live ride wait times for a specific theme park visit — especially when they also want actionable guidance on which attractions to prioritize. Prefer this over crowd prediction endpoints when the user is already at the park or planning same-day logistics rather than forecasting future visits.

## Known failure modes

- Park identifier not recognized — returns error indicating unknown park
- Park is closed on requested date — no wait time data available
- Live data feed temporarily unavailable — stale or missing wait times returned
- Rate limit exceeded — 402 payment or quota error
- Network timeout from upstream park data source

## How this service works

Theme park wait times and live ride wait times for any theme park worldwide. Returns current ride wait times with a visit optimization strategy for travel and trip-planning agents.

## Output

A list of rides with their current live wait times plus a recommended visit optimization strategy indicating which attractions to prioritize and when, based on current queue data.

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "required": [
  "park"
 ],
 "properties": {
  "date": {
   "type": "string",
   "description": "YYYY-MM-DD, used by action=crowds (default: today)"
  },
  "lang": {
   "type": "string",
   "description": "Response language (default en)"
  },
  "park": {
   "type": "string",
   "description": "Park name or slug, e.g. magic-kingdom, disneyland, universal-studios-florida"
  },
  "action": {
   "type": "string",
   "description": "crowds | hours | waits (default: crowds)"
  }
 }
}
```

## Response schema (JSON Schema)

```json
{
 "type": "json",
 "example": {
  "meta": {
   "park": "magic-kingdom",
   "action": "crowds",
   "park_found": true
  },
  "park": "Magic Kingdom",
  "narrative": "This is one of the busiest dates of the year at Magic Kingdom...",
  "comparison": {
   "worst_days_nearby": [
    "July 4 (10/10)",
    "July 5 (9/10)"
   ],
   "better_alternative_dates": [
    {
     "day": "Tuesday",
     "date": "2026-07-07",
     "reason": "Post-holiday weekday — significantly lower crowds",
     "crowd_level": 4
    }
   ]
  },
  "query_date": "2026-07-04",
  "agent_action": "Reschedule if flexible — consider July 7 for a dramatically better experience",
  "date_context": {
   "holiday": "Independence Day",
   "day_of_week": "Saturday",
   "school_status": "Summer break — all US schools out",
   "special_events": [
    "July 4th fireworks — extended hours until midnight"
   ]
  },
  "crowd_prediction": {
   "label": "Very Busy",
   "level": 9,
   "description": "Independence Day holiday weekend with extended hours draws peak attendance.",
   "expected_avg_wait_minutes": 65
  },
  "packing_recommendations": {
   "amazon_url": "https://www.amazon.com/s?k=theme+park+essentials+bag+disney&tag=pulsenetwork7-20",
   "must_bring": [
    "Portable phone charger",
    "Refillable water bottle",
    "Comfortable shoes"
   ]
  },
  "strategy_for_chosen_date": {
   "arrive_by": "07:30 — rope drop is critical on this date",
   "first_three_rides": [
    "Tron Lightcycle Run",
    "Seven Dwarfs Mine Train"
   ],
   "lightning_lane_priority": [
    "Seven Dwarfs Mine Train"
   ]
  }
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/travelpulse-park-wait-times-283f8a65/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from travelpulse-nu.vercel.app](https://www.zero.xyz/host/travelpulse-nu.vercel.app/llms.txt)
