# TransitPulse Airport Transit Guide

> TransitPulse Airport Transit Guide 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-15).

Returns timing, feasibility, and the best transit route from a location to any airport

## Facts

- Endpoint: GET https://transitpulse.vercel.app/api/transit/airport
- Price: $0.08/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-15
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/transitpulse-airport-transit-guide-3cd0c1f9
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_SATGrzw9gN7rblvNbuqE1

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-airport-transit-guide-3cd0c1f9
```

Example prompt: Can you check if it's feasible to take public transit from downtown Chicago to O'Hare Airport tomorrow morning, and give me the best route and how long it'll take?

## When to prefer this

Choose this endpoint when a user needs to reach an airport specifically by public transit and wants a feasibility check plus best-route recommendation. Prefer over general trip-planning endpoints when the destination is explicitly an airport and the user needs airport-specific timing guidance (e.g. accounting for check-in windows).

## Known failure modes

- Airport not found or not served by public transit — returns no route available
- Origin location unrecognized — returns location lookup failure
- No transit service available at the requested time — returns service unavailability
- Transit data unavailable for the region — returns coverage error
- Payment of $0.08 USDC not completed — returns 402 Payment Required

## How this service works

Transit-to-airport guide for traveler and commuter agents. Returns timing, feasibility, and the best transit route to any airport.

## Output

Returns the best transit route to the specified airport including step-by-step directions, total travel time, feasibility assessment, recommended departure time, and any relevant timing or service notes for the traveler.

## 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": {
      "city": {
       "type": "string",
       "description": "city"
      },
      "airport": {
       "type": "string",
       "description": "IATA code (JFK, LHR) or name"
      },
      "flight_time": {
       "type": "string",
       "description": "Flight departure time (e.g. 6am)"
      }
     }
    }
   },
   "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-airport-transit-guide-3cd0c1f9/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)
