# TransitPulse Real-Time Transit Status

> TransitPulse Real-Time Transit Status 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 live service status, delays, and alerts for public transit in real time

## Facts

- Endpoint: GET https://transitpulse.theaslangroupllc.com/api/transit/status
- 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-real-time-transit-status-9eb14f3c
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_BIAzWNC8jrZU3y5F6hr64

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-real-time-transit-status-9eb14f3c
```

Example prompt: What's the current service status on the Green Line — are there any delays or alerts I should know about before I head out?

## When to prefer this

Choose this endpoint when you need live, real-time transit status and delay information for a commuter or traveler agent — particularly when the user is about to travel and needs current disruption or alert data. Prefer this over the route reliability or trip planning siblings when the question is 'is it running right now?' rather than historical reliability or step-by-step directions.

## Known failure modes

- Unknown route or line ID returns 404 with no status data
- Transit agency feed temporarily unavailable returns 503 or stale data warning
- Missing required route/agency parameter returns 400 bad request
- Network timeout if upstream transit data provider is slow
- No active alerts may return empty alerts array, not an error

## How this service works

Real-time transit status for commuter and traveler agents. Returns live service status, delays, and alerts.

## Output

Returns live service status for the queried transit line or agency, including current operational state (normal/delayed/disrupted), delay duration if applicable, and any active service alerts or advisories affecting riders.

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "properties": {
  "city": {
   "type": "string",
   "description": "City name (e.g. London, NYC, Tokyo; default: London)"
  },
  "line": {
   "type": "string",
   "description": "Specific line or route to focus on"
  }
 }
}
```

## Response schema (JSON Schema)

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

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/transitpulse-real-time-transit-status-9eb14f3c/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)
