# TransitPulse Trip Planner

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

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

## Facts

- Endpoint: GET https://transitpulse.theaslangroupllc.com/api/transit/trip
- Price: $0.05/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-13
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/transitpulse-trip-planner-8d432bb4
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_aBJ0RxKO7C9I79KkYHGtu

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-8d432bb4
```

Example prompt: Can you plan a transit route for me from Union Square in San Francisco to SFO airport, leaving tomorrow morning around 8am?

## When to prefer this

Use this endpoint when an agent needs detailed, step-by-step public transit directions for a specific journey between two points. Best for traveler and commuter agents that need actionable routing instructions, including transfer details and timing. Prefer this over a real-time status endpoint when the goal is trip planning rather than monitoring live delays.

## Known failure modes

- No transit service found between origin and destination — returns empty or error result
- Invalid or unrecognized location inputs — returns geocoding or location error
- No service available at requested departure/arrival time — returns no routes found
- API payment failure via x402 protocol — returns 402 Payment Required
- Upstream transit data unavailable for the requested region — returns service error

## How this service works

Transit trip planning for traveler and commuter agents. Returns step-by-step transit directions for any journey.

## Output

A structured set of step-by-step transit directions for the requested journey, including individual legs of the trip, transit lines or routes to board, transfer points, estimated departure and arrival times, and total travel 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-8d432bb4/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)
