# transit.agentic-jp.com Route Planner

> transit.agentic-jp.com Route Planner is a paid API for AI agents from transit.agentic-jp.com, paid per call via x402, $0.01/call, status unknown (last checked 2026-09-13).

Generates transit route plans for a requested journey in Japan, returning step-by-step directions using the Japanese rail/transit network.

## Facts

- Endpoint: POST https://transit.agentic-jp.com/route-plan
- Price: $0.01/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-13
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/transit-agentic-jp-com-route-planner-91fe2f1c
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_1uwzHIN24RtXMfO5zlJX7

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 transit-agentic-jp-com-route-planner-91fe2f1c -d '<json body>'
```

Example prompt: Can you plan a transit route for me from Shinjuku Station to Kyoto Station this Saturday at 9am, preferably using the Shinkansen?

## When to prefer this

Use this endpoint when you need to generate a complete, step-by-step transit route plan for travel within Japan, especially involving the rail network. Prefer this over a station search endpoint (which only looks up station names) or a transit alerts feed (which only provides disruption updates). Best suited for itinerary planning, travel assistance agents, or any workflow where a user needs to know exactly which trains to take from A to B.

## Known failure modes

- Origin or destination station not recognized — returns error or empty result
- No viable route found between the two points at the requested time
- Invalid or past departure/arrival time provided
- Station name ambiguity when multiple stations share a similar name
- Service temporarily unavailable or payment not processed

## How this service works

Plan a route between two Japanese (JP) train stations — timetable-based, with transfers, duration, and fare. Standard planning without delay adjustment (cheaper). Use for ordinary trip planning.

## Output

A structured transit route plan including the sequence of train lines to take, transfer points, platform details, estimated travel duration, and fare — covering the full journey from origin to destination within the Japanese transit network.

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "properties": {
  "to": {
   "type": "string",
   "description": "Destination station (Japanese)"
  },
  "from": {
   "type": "string",
   "description": "Origin station (Japanese)"
  },
  "departure_time": {
   "type": "string",
   "description": "ISO 8601 departure time"
  }
 }
}
```

## Response schema (JSON Schema)

```json
{
 "type": "json",
 "example": {
  "fare_jpy": 200,
  "transfers": 0,
  "duration_minutes": 14
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/transit-agentic-jp-com-route-planner-91fe2f1c/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from transit.agentic-jp.com](https://www.zero.xyz/host/transit.agentic-jp.com/llms.txt)
