# TravelPulse Theme Park Hours API

> TravelPulse Theme Park Hours API 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-13).

Returns operating schedules, show times, and special events for any theme park globally, supporting travel and trip-planning agents.

## Facts

- Endpoint: GET https://travelpulse-nu.vercel.app/api/parks/hours
- Price: $0.05/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-13
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/travelpulse-theme-park-hours-api-a3531e94
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_OPKshG0jZTnYmuRM0iEI1

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-theme-park-hours-api-a3531e94
```

Example prompt: What are the opening hours, show schedule, and any special events at Magic Kingdom in Orlando for this coming Saturday, July 19?

## When to prefer this

Use this endpoint when a user needs to know when a specific theme park opens or closes, what shows are scheduled, or whether special events are occurring on a given date — ideal for trip planning, itinerary building, or real-time travel assistance.

## Known failure modes

- Unknown or unsupported park name returns an error or empty result
- Invalid date format causes a 400 bad request
- Park not found in database returns null schedule
- Payment not processed results in 402 response blocking data access
- Future dates beyond available schedule window return no data

## How this service works

Theme park hours and operating schedule for any theme park worldwide. Returns daily park hours, show times, and special events for travel and trip-planning agents.

## Output

Returns the theme park's daily operating hours (open/close times), show schedules, and any special events happening on the requested date, covering parks globally.

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "$schema": "https://json-schema.org/draft/2020-12/schema",
 "required": [
  "input"
 ],
 "properties": {
  "input": {
   "type": "object",
   "required": [
    "type",
    "method"
   ],
   "properties": {
    "type": {
     "type": "string",
     "const": "http"
    },
    "method": {
     "enum": [
      "GET",
      "HEAD",
      "DELETE"
     ],
     "type": "string"
    },
    "queryParams": {
     "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)"
      }
     }
    }
   },
   "additionalProperties": false
  },
  "output": {
   "type": "object",
   "required": [
    "type"
   ],
   "properties": {
    "type": {
     "type": "string"
    },
    "errors": {
     "type": "object",
     "description": "Documented error responses, keyed by HTTP status code",
     "additionalProperties": {
      "type": "object",
      "required": [
       "description"
      ],
      "properties": {
       "example": {
        "type": "object"
       },
       "description": {
        "type": "string"
       }
      }
     }
    },
    "example": {
     "type": "object"
    }
   }
  }
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/travelpulse-theme-park-hours-api-a3531e94/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)
