# TransitPulse Trip Planner

> TransitPulse Trip Planner is a paid API for AI agents from transitpulse.vercel.app, paid per call via x402, $0.05/call, status unknown (last checked 2026-09-15).

Returns step-by-step transit directions for a journey between two locations, including routes, transfers, and travel times.

## Facts

- Endpoint: GET https://transitpulse.vercel.app/api/transit/trip
- Price: $0.05/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-15
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/transitpulse-trip-planner-a558767c
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_FNXow73DWJigMtOijzKAW

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-trip-planner-a558767c
```

Example prompt: Can you give me step-by-step transit directions from Union Station in Chicago to O'Hare International Airport this Friday at 8:30am?

## When to prefer this

Use this endpoint when you need step-by-step, turn-by-turn transit directions for a specific journey between two points. Prefer this over multi-modal planning endpoints when the user specifically wants public transit only. Best suited for travelers and commuters who need actionable directions rather than general route analysis or reliability data.

## Known failure modes

- No transit route found between the given origin and destination
- Invalid or unrecognized location inputs
- Requested departure time is outside of service hours
- Service area not covered by the transit data provider
- Malformed request parameters return a 400 error
- Payment not accepted results in a 402 error

## How this service works

Transit intelligence for 25+ major world cities. Real-time status, route reliability, commute analysis, city comparisons, airport guides, and car-free livability scoring. Pay-per-query via x402 on Base.

## Output

A structured set of step-by-step transit directions including which lines to board, where to transfer, departure and arrival times for each leg, and total journey duration.

## 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-trip-planner-a558767c/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)
