# TransitPulse Multi-Modal Journey Planner

> TransitPulse Multi-Modal Journey Planner is a paid API for AI agents from transitpulse.vercel.app, paid per call via x402, $0.1/call, status unknown (last checked 2026-09-16).

Plans a combined journey using transit, bike, walk, and rideshare modes in a single integrated itinerary

## Facts

- Endpoint: GET https://transitpulse.vercel.app/api/transit/multimodal
- Price: $0.1/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-16
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/transitpulse-multi-modal-journey-planner-f08a66a7
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_CLKNolnpCg9n7-Br6LFZ4

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 transitpulse-multi-modal-journey-planner-f08a66a7
```

Example prompt: Can you plan me a multi-modal journey from Union Square to JFK airport tomorrow at 8am, combining subway, bike share, and rideshare to get there as efficiently as possible?

## When to prefer this

Choose this endpoint when a user needs a journey plan that spans multiple transportation modes in a single cohesive itinerary — particularly when no single mode (e.g., pure transit or pure rideshare) is sufficient or optimal. Prefer over single-mode transit planning when the user wants to combine walking, biking, buses, rail, or rideshare into one trip.

## Known failure modes

- Origin or destination not found or outside supported coverage area
- No viable multi-modal route exists between the two points
- Requested departure time is outside service hours for one or more modes
- Unsupported city or transit network
- Missing required origin or destination parameters
- Rideshare or bike data unavailable in the queried region

## How this service works

Multi-modal journey planning for traveler and commuter agents. Combines transit, bike, walk, and rideshare into one journey plan.

## Output

A complete multi-modal journey plan with step-by-step legs covering transit, bike, walk, and rideshare segments, including timing, transfers, and total travel duration for the requested origin-to-destination trip.

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "required": [
  "to",
  "from"
 ],
 "properties": {
  "to": {
   "type": "string",
   "description": "to"
  },
  "city": {
   "type": "string",
   "description": "city"
  },
  "from": {
   "type": "string",
   "description": "from"
  },
  "time": {
   "type": "string",
   "description": "time"
  }
 }
}
```

## Response schema (JSON Schema)

```json
{
 "type": "json",
 "example": {}
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/transitpulse-multi-modal-journey-planner-f08a66a7/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from transitpulse.vercel.app](https://www.zero.xyz/host/transitpulse.vercel.app/llms.txt)
