# TravelPulse Trip Itinerary Planner

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

Generates a complete day-by-day travel itinerary for any destination, tailored to the traveler's dates and preferences.

## Facts

- Endpoint: GET https://travelpulse-nu.vercel.app/api/travel/plan
- Price: $0.2/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-15
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/travelpulse-trip-itinerary-planner-d2e769a0
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_jXSHV-f33W7Tdw66IAxzV

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-trip-itinerary-planner-d2e769a0
```

Example prompt: Can you plan me a complete day-by-day itinerary for a 7-day trip to Kyoto, Japan for 2 people starting June 10, with a focus on cultural temples and local food experiences?

## When to prefer this

Choose this endpoint when an agent needs a fully structured, narrative day-by-day travel itinerary rather than raw data lookups. It is ideal for trip-planning workflows where the output needs to be directly readable by a traveler, as opposed to endpoints that return weather, visa requirements, or packing lists as standalone data points.

## Known failure modes

- Unrecognized or ambiguous destination name returns an error or generic fallback
- Missing required parameters (destination or dates) results in a 400-level error
- Very obscure destinations may return sparse itinerary content
- Payment failure ($0.20 USDC via x402) prevents the call from completing
- Network timeout on the Vercel serverless function under high load

## How this service works

Trip itinerary planner and day-by-day travel plan generator for any destination worldwide. Returns a complete multi-day itinerary with activities, timing, and budget/style options for trip-planning agents.

## Output

Returns a structured day-by-day itinerary for the requested destination, including recommended activities, sightseeing stops, dining suggestions, and a daily schedule organized by time of day across the full trip duration.

## 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": "integer",
       "description": "days"
      },
      "lang": {
       "type": "string",
       "description": "lang"
      },
      "style": {
       "type": "string",
       "description": "style"
      },
      "budget": {
       "type": "string",
       "description": "budget"
      },
      "destination": {
       "type": "string",
       "description": "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-trip-itinerary-planner-d2e769a0/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)
