# TransitPulse Live Delay Feed

> TransitPulse Live Delay Feed 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-15).

Returns live transit delays and disruptions across a city's public transit network for commuter and traveler agents

## Facts

- Endpoint: GET https://transitpulse.theaslangroupllc.com/api/transit/delays
- 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-live-delay-feed-2f892025
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_1e8nBuoVXHfr0gYYiNH82

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-live-delay-feed-2f892025
```

Example prompt: What are the current transit delays and disruptions across the Chicago public transit network right now — I'm about to head out for my morning commute and want to know if any lines are affected.

## When to prefer this

Use this endpoint when you need real-time, current transit delay and disruption data for immediate commuter or traveler decision-making. Prefer this over historical delay endpoints when the user needs to act now (e.g. deciding whether to leave, reroute, or take an alternative). Choose this over journey planning endpoints when the primary question is 'is there a problem right now?' rather than 'how do I get from A to B?'

## Known failure modes

- City or transit network not supported — returns 404 or empty result
- Upstream transit data feed unavailable — returns stale or error response
- No active delays — returns empty disruptions array
- Invalid city parameter — returns 400 bad request
- Rate limit exceeded — returns 429 too many requests

## How this service works

Current transit delays for commuter and traveler agents. Returns live delays and disruptions across a city network.

## Output

A structured response listing live delays and service disruptions across the city's transit network, including affected routes, delay durations, disruption types, and current service status for each impacted line or stop.

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "required": [
  "city"
 ],
 "properties": {
  "city": {
   "type": "string",
   "description": "city"
  },
  "line": {
   "type": "string",
   "description": "line"
  }
 }
}
```

## Response schema (JSON Schema)

```json
{
 "type": "json",
 "example": {}
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/transitpulse-live-delay-feed-2f892025/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)
