# TransitPulse Multimodal Journey Planner

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

Plans multi-modal journeys combining transit, bike, walk, and rideshare into a single optimized trip itinerary.

## Facts

- Endpoint: GET https://transitpulse.theaslangroupllc.com/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-multimodal-journey-planner-1bb56cff
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_wp1cuYEmAV4iixmzsAgHZ

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-multimodal-journey-planner-1bb56cff
```

Example prompt: Plan me a multimodal trip from Union Square in Manhattan to LaGuardia Airport tomorrow morning at 8am — I'm fine using subway, walking, and rideshare, just get me there efficiently.

## When to prefer this

Use this endpoint when a user needs a complete door-to-door journey plan that blends multiple transport modes (transit, bike, walk, rideshare) rather than a single-mode route. Prefer this over a pure transit planner when the origin or destination is not near a transit stop, or when the user explicitly wants to combine modes for efficiency or preference.

## Known failure modes

- Origin or destination not found or too vague — returns location error
- No feasible multimodal route exists for the requested combination — returns no-route error
- Requested departure time too far in the future or in the past — returns time validation error
- Transit data unavailable for the requested region — returns coverage error
- Invalid or unsupported transport mode combination — returns mode error

## 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 multimodal journey plan including sequential legs (e.g. walk to subway stop, take transit to transfer point, bike or rideshare to destination), estimated durations for each segment, total travel time, and recommended departure times for each leg.

## 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-multimodal-journey-planner-1bb56cff/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from transitpulse.theaslangroupllc.com](https://www.zero.xyz/host/transitpulse.theaslangroupllc.com/llms.txt)
