# TravelPulse Travel Disruption API

> TravelPulse Travel Disruption API is a paid API for AI agents from travelpulse-nu.vercel.app, paid per call via x402, $0.25/call, status unknown (last checked 2026-09-13).

Returns real-time and near-term travel disruption intelligence for a given airport, including delays, cancellations, and operational status

## Facts

- Endpoint: GET https://travelpulse-nu.vercel.app/api/travel/disruption
- Price: $0.25/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-13
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/travelpulse-travel-disruption-api-1c7fb680
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_MPeiahv7k8CUAD7UT1YQY

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 travelpulse-travel-disruption-api-1c7fb680
```

Example prompt: Are there any travel disruptions or delays expected at JFK airport tomorrow, November 15th? Show me the results in English.

## When to prefer this

Use this endpoint when you need a quick, per-call disruption status check for a specific airport without managing accounts or API keys. Ideal for AI travel agents that need real-time or near-term disruption intelligence on a pay-as-you-go USDC basis, especially when serving users who need disruption data in multiple languages.

## Known failure modes

- Invalid or unrecognized airport IATA code returns an error or empty result
- Date too far in the future may return no forecast data
- Payment failure (insufficient USDC) results in HTTP 402 and no data returned
- Network timeout if the underlying data source is unavailable
- Unsupported language code in ?lang= parameter may fall back to English or return an error

## How this service works

Flight disruption risk for an airport and date: 0-100 risk score from live weather forecast plus strikes, congestion, and seasonal delay patterns, with mitigation steps and applicable passenger-rights compensation regimes.

## Output

A JSON response containing disruption status, delay or cancellation alerts, and operational outlook for the specified airport and date, returned in the requested output language.

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "required": [
  "airport"
 ],
 "properties": {
  "date": {
   "type": "string",
   "description": "Travel date YYYY-MM-DD (defaults to near-term outlook)"
  },
  "lang": {
   "type": "string",
   "description": "Response language"
  },
  "airport": {
   "type": "string",
   "description": "Airport IATA code or city (e.g. JFK, Heathrow, Frankfurt)"
  }
 }
}
```

## Response schema (JSON Schema)

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

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/travelpulse-travel-disruption-api-1c7fb680/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from travelpulse-nu.vercel.app](https://www.zero.xyz/host/travelpulse-nu.vercel.app/llms.txt)
