Have an AI agent generate your trip plan, paste the JSON below, and get a shareable Waypad trip URL. No account required.
If a user said "put my trip into Waypad", your job is to:
https://waypad.ing/newOr, 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.
{
"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" }
]
}
trip.title is required. startDate/endDate are YYYY-MM-DD; timezone is an IANA tz name. Default UTC.days[].date attaches items by date; alternatively items can use 0-based dayIndex.itemType: activity, lodging, transport, meal, or logistics. Default activity.HH:MM local to trip.timezone. latitude/longitude optional numbers if known.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.