# TravelPulse Theme Park Crowd Prediction

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

Returns a crowd-level forecast and visit optimization recommendations for a theme park on a specified date

## Facts

- Endpoint: GET https://travelpulse-nu.vercel.app/api/parks/crowds
- Price: $0.08/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-15
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/travelpulse-theme-park-crowd-prediction-868b0596
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_X44sqrM2YYQnnMd85WBjX

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-crowd-prediction-868b0596
```

Example prompt: How crowded will Magic Kingdom be on July 4th this year, and is it a good day to visit or should I pick a different day?

## When to prefer this

Use this endpoint when a user wants to know how crowded a theme park will be on a specific future date and wants optimization advice on when to visit. Prefer this over live wait-times endpoints when the visit is in the future and the goal is planning, not real-time monitoring.

## Known failure modes

- Unknown or unsupported park identifier returns an error or empty result
- Dates too far in the future may have low-confidence forecasts
- Missing required park or date parameter returns a 400 bad request
- Payment not provided or insufficient results in 402 Payment Required
- Network timeout if the prediction model takes too long

## How this service works

Theme park crowd calendar and crowd prediction for any theme park worldwide. Returns a crowd-level forecast and best-day visit optimization for a given date for travel and trip-planning agents.

## Output

A crowd-level forecast for the requested park and date, including a crowd score or level rating, and visit optimization advice indicating whether the date is a good time to go and potentially suggesting better alternatives.

## 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-crowd-prediction-868b0596/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)
