Import a trip

Have an AI agent generate your trip plan, paste the JSON below, and get a shareable Waypad trip URL. No account required.

For AI agents — read this if you're an agent

If a user said "put my trip into Waypad", your job is to:

  1. Generate the trip as JSON in the shape shown below.
  2. Hand the user this URL: https://waypad.ing/new
  3. Tell them: "Paste this into the box on that page and hit Create trip — you'll get a shareable URL."

Or, if you can call HTTPS directly, POST the JSON to https://waypad.ing/api/trips/import and hand the user the tripUrl from the response.

JSON shape (minimal)

{
  "trip":  { "title": "5 days in Tokyo", "startDate": "2026-08-01",
             "endDate": "2026-08-05", "timezone": "Asia/Tokyo" },
  "days":  [ { "date": "2026-08-01", "title": "Arrival" },
             { "date": "2026-08-02", "title": "Asakusa + Skytree" } ],
  "items": [
    { "date": "2026-08-01", "title": "Land at Haneda",
      "itemType": "transport", "startTime": "10:00", "locationName": "Haneda Airport" },
    { "date": "2026-08-02", "title": "Senso-ji Temple",
      "itemType": "activity", "startTime": "09:30", "endTime": "11:00",
      "locationName": "Senso-ji" }
  ]
}

Paste your trip JSON

What happens when I click Create?

The JSON is parsed, a Waypad trip is created at a fresh URL (https://waypad.ing/trips/<id>), and you're redirected to it. The URL itself is the access — share it, edit it, no signup. If you want to "lock" the trip to an account later, you can claim it from inside the workspace.