# TransitPulse Route Reliability Analysis

> TransitPulse Route Reliability Analysis is a paid API for AI agents from transitpulse.vercel.app, paid per call via x402, $0.08/call, status unknown (last checked 2026-09-14).

Analyzes transit route reliability and identifies optimal travel times for a given route

## Facts

- Endpoint: GET https://transitpulse.vercel.app/api/transit/route
- Price: $0.08/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-14
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/transitpulse-route-reliability-analysis-af5c1283
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_tLOsiPKZ6m5yIpJV0H7Q4

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-route-reliability-analysis-af5c1283
```

Example prompt: Can you check the reliability of bus route 42 and tell me the best times to travel on it to avoid delays — I usually commute on weekday mornings around 8am?

## When to prefer this

Use this endpoint when you need to evaluate how reliable a specific transit route is and identify optimal travel windows. Ideal for commute planning, travel optimization, and building transit-aware applications that go beyond simple schedules to provide actual performance intelligence.

## Known failure modes

- Route not found or unsupported — returns 404 or empty result
- Invalid route identifier format — returns 400 bad request
- Payment not provided or insufficient — returns 402 payment required
- Transit data temporarily unavailable for the requested route
- Service timeout if underlying transit data feed is slow

## How this service works

Route reliability analysis for commuter and transit agents. Returns reliability and best travel times for any transit route.

## Output

Returns route reliability metrics including on-time performance scores, best travel time windows, delay pattern analysis, and schedule adherence statistics for the specified transit route.

## Example request

```json
{
 "city": "New York",
 "time": "9am",
 "route": "L train"
}
```

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "$schema": "https://json-schema.org/draft/2020-12/schema",
 "required": [
  "input"
 ],
 "properties": {
  "input": {
   "type": "object",
   "required": [
    "type",
    "method"
   ],
   "properties": {
    "type": {
     "type": "string",
     "const": "http"
    },
    "method": {
     "enum": [
      "GET",
      "HEAD",
      "DELETE"
     ],
     "type": "string"
    },
    "queryParams": {
     "type": "object",
     "required": [
      "city",
      "route"
     ],
     "properties": {
      "city": {
       "type": "string",
       "description": "city"
      },
      "time": {
       "type": "string",
       "description": "Time of travel (e.g. 9am, rush hour)"
      },
      "route": {
       "type": "string",
       "description": "Line or route name (e.g. L train, Northern line)"
      }
     }
    }
   },
   "additionalProperties": false
  },
  "output": {
   "type": "object",
   "required": [
    "type"
   ],
   "properties": {
    "type": {
     "type": "string"
    },
    "errors": {
     "type": "object",
     "description": "Documented error responses, keyed by HTTP status code",
     "additionalProperties": {
      "type": "object",
      "required": [
       "description"
      ],
      "properties": {
       "example": {
        "type": "object"
       },
       "description": {
        "type": "string"
       }
      }
     }
    },
    "example": {
     "type": "object"
    }
   }
  }
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/transitpulse-route-reliability-analysis-af5c1283/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)
