# TransitPulse Commute Quality Analysis

> TransitPulse Commute Quality Analysis is a paid API for AI agents from transitpulse.vercel.app, paid per call via x402, $0.1/call, status unknown (last checked 2026-09-15).

Analyzes commute quality and reliability for a specific city corridor, returning scores and insights for commuters and relocation decision-makers.

## Facts

- Endpoint: GET https://transitpulse.vercel.app/api/transit/commute
- Price: $0.1/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-15
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/transitpulse-commute-quality-analysis-7488af82
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_u19Eh64SQhyiPJroVsWGB

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-commute-quality-analysis-7488af82
```

Example prompt: Can you analyze the commute quality and reliability for the corridor between downtown Chicago and Evanston — I'm thinking of relocating there and want to know if the transit is dependable enough to go car-free?

## When to prefer this

Use this endpoint when an agent or user needs to evaluate the day-to-day commute quality on a specific transit corridor — especially for relocation decisions, car-free living assessments, or commuter planning. Prefer this over route-planning endpoints when the goal is quality/reliability scoring rather than step-by-step directions.

## Known failure modes

- Unknown or unsupported city corridor returns an error or empty result
- Ambiguous origin/destination may return a low-confidence result
- Service may lack data for smaller cities or less-covered transit systems
- Network timeout if the analysis takes longer than expected
- Invalid parameter format returns a 400-level error

## How this service works

Commute quality analysis for commuter and relocation agents. Returns reliability and quality for a city corridor.

## Output

Returns a commute quality and reliability assessment for the specified city corridor, including reliability scores and quality ratings that help commuters and relocation agents understand how dependable and comfortable the transit route is.

## 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"
     ],
     "properties": {
      "to": {
       "type": "string",
       "description": "Destination neighborhood or address"
      },
      "city": {
       "type": "string",
       "description": "city"
      },
      "from": {
       "type": "string",
       "description": "Origin neighborhood or address"
      },
      "time": {
       "type": "string",
       "description": "time"
      }
     }
    }
   },
   "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-commute-quality-analysis-7488af82/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)
