# TravelPulse Packing List Builder

> TravelPulse Packing List Builder is a paid API for AI agents from travelpulse-nu.vercel.app, paid per call via x402, $0.1/call, status unknown (last checked 2026-09-13).

Generates a destination-specific packing list with carry-on optimization guidance for travelers

## Facts

- Endpoint: GET https://travelpulse-nu.vercel.app/api/travel/pack
- Price: $0.1/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-13
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/travelpulse-packing-list-builder-301742be
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_XhF0vLO6brW1wrGaqLI1n

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-packing-list-builder-301742be
```

Example prompt: Build me a destination-specific packing list for a 10-day trip to Japan in March, optimized for carry-on only — I'll be doing a mix of city exploration and hiking.

## When to prefer this

Choose this endpoint when a user needs a curated, destination-aware packing list rather than a generic checklist. Especially useful when carry-on optimization is a priority or when the destination has specific cultural, climate, or entry-related packing considerations. Prefer over generic list generators when travel context (destination, season, trip type) is available.

## Known failure modes

- Missing or unrecognized destination returns an error or generic list
- Overly broad destination inputs may yield non-specific recommendations
- Payment failure (402) if USDC payment header is not included or insufficient
- Rate limiting or timeout if service is under high load
- Edge-case destinations (remote islands, conflict zones) may have incomplete data

## How this service works

Packing list builder and what-to-pack guide for any destination worldwide. Returns a destination- and season-specific packing list with carry-on optimization for travel and traveler agents.

## Output

A structured, destination-specific packing guide that includes categorized item lists (clothing, toiletries, documents, gear, etc.) tailored to the destination's climate and culture, along with carry-on optimization tips to help travelers pack efficiently without checking luggage.

## 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": [
      "destination"
     ],
     "properties": {
      "days": {
       "type": "number",
       "description": "Trip duration in days (default: 10)"
      },
      "lang": {
       "type": "string",
       "description": "Response language"
      },
      "season": {
       "type": "string",
       "description": "Season or time of year (default: infer from current month)"
      },
      "activities": {
       "type": "string",
       "description": "Planned activities (e.g. hiking, beach, business, diving, winter sports)"
      },
      "destination": {
       "type": "string",
       "description": "Travel destination"
      }
     }
    }
   },
   "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-packing-list-builder-301742be/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)
